Date: 2004-10-11T03:32:55
Editor: MassimoMastrogiuseppe <[EMAIL PROTECTED]>
Wiki: Cocoon Wiki
Page: WebSphereV5.0Deployment
URL: http://wiki.apache.org/cocoon/WebSphereV5.0Deployment
no comment
Change Log:
------------------------------------------------------------------------------
@@ -38,3 +38,25 @@
Feel free to add your comments below. --GerhardFroehlich
These tips work also for Cocoon 2.1 . I had just a problem with the apache
axis stuffs, do not know why. I just removed axis from cocoon.xconf and
everything else seem to work fine. --AlexandreVictoor
+
+
+'''October 11th 2004''':[[BR]]
+
+
+Unfortunately there are some annoying problems with WAS 5.1 and Cocoon 2.1.5.1
as well.
+A solution should be like this:
+
+The attachment:WebsphereResponseFilter.java invokes the
attachment:WebsphereResponseProxy.java ({{{HttpServletResponse}}}
implementation) retrieving the correct servlet path, appends it in the redirect
uri
+
+There need to add into the web.xml file the following configuration:
+{{{<filter>
+ <filter-name>WebsphereResponseFilter</filter-name>
+ <filter-class>foo.bar.filter.WebsphereResponseFilter</filter-class>
+</filter>
+<filter-mapping>
+ <filter-name>WebsphereResponseFilter</filter-name>
+ <url-pattern>/*</url-pattern>
+</filter-mapping>
+}}}
+
+MassimoMastrogiuseppe