Hi,

I need to pass parameters depending on user action to my findForward.  

I have tried the following but does not seem to be working.

String urlQueryString = getURLParameters(nextURL);
if ( urlQueryString != null && urlQueryString.length() > 0 ) {
    ActionForward forward = aMapping.findForward(nextURL);
    StringBuffer path = new StringBuffer(forward.getPath());
    path.append("?" + urlQueryString);
    forward = new RedirectingActionForward(path.toString());                           
                 
    return forward;
} else {
    return aMapping.findForward(nextURL);
}

I have also tried setting my parameters on request using request.setAttribute

This also did not work.

I have also searched on net for 2 hours and no luck.  Please help!

TIA

Sriniavs


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to