Hi everybody,
I have the following problem: I have a web application and it works fine.
The only problem is when I navigate through it - the link displayed in the
URL always show the previous visitated page not the current page. Does
anybody know what might cause this behavior? I have this problem only in an
application using Orchestra. Here are my settings:
web.xml :
<filter>
<filter-name>orchestraFilter</filter-name>
<filter-class>org.apache.myfaces.orchestra.conversation.jsf.filter.OrchestraServletFilter</filter-class>
<init-param>
<param-name>serializeRequests</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>orchestraFilter</filter-name>
<url-pattern>*.html</url-pattern>
<dispatcher>FORWARD</dispatcher>
<dispatcher>REQUEST</dispatcher>
</filter-mapping>
<listener>
<listener-class>org.apache.myfaces.orchestra.conversation.servlet.ConversationManagerSessionListener</listener-class>
</listener>
applicationContext.xml
<!--
1. initialization of all orchestra modules (required for core15
module)
-->
<import resource="classpath*:/META-INF/spring-orchestra-init.xml" />
<!-- 2. the conversation scopes -->
<bean
class="org.springframework.beans.factory.config.CustomScopeConfigurer">
<property name="scopes">
<map>
<entry key="conversation.manual">
<bean
class="org.apache.myfaces.orchestra.conversation.spring.SpringConversationScope">
<property name="timeout"
value="30" />
</bean>
</entry>
<entry key="conversation.access">
<bean
class="org.apache.myfaces.orchestra.conversation.spring.SpringConversationScope">
<!-- property name="timeout"
value="35" / -->
<property name="lifetime"
value="access" />
</bean>
</entry>
</map>
</property>
</bean>
thanks
--
View this message in context:
http://old.nabble.com/Displayed-URL-is-a-Link-behind-tp30298164p30298164.html
Sent from the My Faces - Dev mailing list archive at Nabble.com.