Hi,
I have to port a
struts application from
tomcat to weblogic. The application works great on tomcat but in weblogic we have a big problem. slashes (/) after the contextPath are duplicated.
Example :
contextPath = cp
<forward path="/myAction.do" redirect="true"/>
The redirect to
http://server.com/cp/myAction.do in tomcat is transformed to
http://server.com/cp//myAction.do in weblogic. And it gives us a problem with a thirdparty caching tool.
Does anybody know how to fix this ?
thanks
[ August 09, 2005: Message edited by: pascal gehl ]