« Return to Thread: Merb app. deployed to Websphere 6.1 fails on both AIX and Windows

Re: Merb app. deployed to Websphere 6.1 fails on both AIX and Windows

by Wes Gamble :: Rate this Message:

Reply to Author | View in Thread

Nick,

Nick Sieger wrote:
> I have no websphere experience, but I can suggest a couple of things to try:
>
> - If you want to still use the filter, try playing around with the
> filter prefix in web.xml. (Maybe try '/' instead of '/*' and so on.)
>  
Already tried this with "/", "*" to no avail.  As far as I can tell "/*"
is the officially correct way to specify all requests per JEE documentation.

> - You can also try the servlet version, which would use config like
> this in web.xml. Comment out or remove the filter/filter-mapping bits
> and use this instead:
>   <servlet>
>     <servlet-name>RackServlet</servlet-name>
>     <servlet-class>org.jruby.rack.RackServlet</servlet-class>
>   </servlet>
>   <servlet-mapping>
>     <servlet-name>RackServlet</servlet-name>
>     <url-pattern>/*</url-pattern>
>   </servlet-mapping>
>  
I will give this a shot in the morning, and failing that, I'll try and
debug the source per my earlier post.

Many thanks for the help!

Wes

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


 « Return to Thread: Merb app. deployed to Websphere 6.1 fails on both AIX and Windows