Re: ActionForm key in request/session

2005-05-02 Thread Dave Newton
Frank W. Zammetti wrote: Fair point, at least as far as params go :) I never noticed the getParameterMap() method to be honest. The wonders of an API larger than... well, something Really Big. I didn't know it was there either until today when I thought to myself "nobody's ever written that b

Re: ActionForm key in request/session

2005-05-02 Thread Frank W. Zammetti
Fair point, at least as far as params go :) I never noticed the getParameterMap() method to be honest. The methods in RequestUtils (and the one in SessionUtils) came from the fact that during debugging I (and I think most of us) have a need to easily see what's coming in with a request. So, I wi

Re: ActionForm key in request/session

2005-05-02 Thread Dave Newton
Frank W. Zammetti wrote: Alternatively, you could use the Commons Servlet packages' getRequestParameter(), getRequestHeaders() and getRequestAttributes() methods of the RequestUtils class, and if you need it there is also a getSessionAttributes() method in SessionUtils (I know because I added a

Re: ActionForm key in request/session

2005-04-29 Thread Frank W. Zammetti
Alternatively, you could use the Commons Servlet packages' getRequestParameter(), getRequestHeaders() and getRequestAttributes() methods of the RequestUtils class, and if you need it there is also a getSessionAttributes() method in SessionUtils (I know because I added all four!) http://svn.apa

Re: ActionForm key in request/session

2005-04-29 Thread Wendy Smoak
From: "rmanchu" <[EMAIL PROTECTED]> > > anyone know what is the key under which the actionform is stored within > a request? > It's under whatever name (as in ) you configured in struts-config.xml. Here's the "debug.jsp" that I include at the bottom of my main layout page during development. It