OK we solved the problem. The following URL resolves to the display() method of the ActionBean in Tomcat, Jetty, and Jboss but NOT in Websphere.
http://localhost:9003/Login.action?display Websphere is stripping off the ?display because it must see it is not a named value pair and thus the DefaultHandler is executing in our ActionBean. to solve this we had to use http://localhost:9003/Login.action?_eventName=display And now it works in Websphere. ------------------------------------------------------------------------- Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://sourceforge.net/services/buy/index.php _______________________________________________ Stripes-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/stripes-users
