Struts exception - pl. help

2003-11-13 Thread DurgaPrasad Guduguntla \(dgudugun\)
Hi, Our application is using Struts1.1 and running on Tomcat4.1. We got the following exception stack trace. Any clues will be appreciated to fix this problem. Thanks, Durgaprasad Exception Stack Trace: -- Nov 13, 2003 12:21:37 PM org.apache.struts.action.RequestProcesso

Appending params to the URL of ActionForward

2003-06-06 Thread DurgaPrasad Guduguntla
Hi, I am new to struts and would like to know the solution to the following: When the request is submitted to the action class, the action class will evaluate and constructs the request parameters which needs to be appended to URL of the View component mentioned in the forward target. Dep

RE: Appending params to the URL of ActionForward

2003-06-06 Thread DurgaPrasad Guduguntla
orward.getRedirect() ); return forward; where addParameterToUrl does something like: private String addParameterToURL(String url, String parameter, String value) { return url + ( (url.indexOf("?")==-1) ? "?" : "&" ) + parameter + "=" + value;