Hi,
I want to extend the Default Request Context and then want to use the new Request context in my Targeted components. I can create a new wrapper (com.interwoven.livesite.runtime.impl.MyRequestContextWrapper) which will be an implementation of com.interwoven.livesite.runtime.RequestContextWrapper Interface.
Now two question:
1. IN which config file I will have to define the bean for this wrapper class? Will it be in customer-resource-config.xml file?
<bean id="runtime.RequestContextWrapper" class="com.interwoven.livesite.runtime.impl.MyRequestContextWrap per" scope="prototype"/>
2. How do I call this new wrapper context (MyRequestContextWrap
) in my code. OOTB we get RequestContext object in any Livesite code, how do I replace that RequestContext with the MyRequestContextWrapper or will it be replaced automatically due to above bean definition.
TS/LS 7.3.2.
TIA