Re: getRequestURI() returns query parameters for path="/submit.do?my=Update

2009-05-15 Thread mule_user
only when I use forward in Struts and append query string in the path of forward in struts-config.xml. As such, my question is; is this the expected behavior in Struts 1.1 to also append the query string; when getRequestURI is alled? mule_user wrote: > > In WebSphere 5.1 test server for Stru

getRequestURI() returns query parameters for path="/submit.do?my=Update

2009-05-14 Thread mule_user
In WebSphere 5.1 test server for Struts 1.1 application, I noticed that request.getRequestURI() also returns the query string, if the forward happens to have query parameters like below: request.getRequestURI() call inside an Action class returns /MyProjWeb/submit.do?my=Update Acco

getRequestURI() returns parameters - WAS 5.1 running Struts 1.0 application

2009-05-13 Thread mule_user
I am debugging an application written using Struts 1.0 and deployed in WAS 5.1. I am noticing that getRequestURI() from HttpServletRequest is also returning the request parameters; when a forward is made from Struts1.0. According to the spec, getRequestURI() should not return parameters. Is

Migrate Struts 1.0 app from WebSphere 5.1 to 6.1 - JSP container failed to load the TagExtraInfo

2009-05-12 Thread mule_user
The same code (EAR) did not throw the above exceptions in WebSphere 5.1 server. Migrating Struts 1.0 application from WebSphere 5.1 to WebSphere 6.1 in z/OS. After successfully deploying Struts 1.0 app in WebSphere 6.1 server, I start the application. As the application starts up, I get the foll

Struts1.1 - Value of ActionForm in second Action that is chained

2008-02-20 Thread mule_user
This is the scenario using Struts 1.1: User Interface -> MyAction1 (input is Form1)-> MyAction 2 (input is Form2) ->User Interface MyAction1 and MyAction2 are Action classes. MyAction1 and MyAction1 are configured in struts-config.xmxl. MyAction1 takes Form1 as input. MyAction2 takes Form2 as