Re: accessing properties/attributes (scope)

2012-08-20 Thread Christopher Johnson
Thank you, that makes sense. I've read that page a few dozen times and it did not click until you gave the example. Best, -Chris On Mon, Aug 20, 2012 at 3:26 PM, Lukasz Lenart wrote: > 2012/8/20 Christopher Johnson : > > From what I've read there are the following scopes in struts. > > > >-

Re: accessing properties/attributes (scope)

2012-08-20 Thread Lukasz Lenart
2012/8/20 Christopher Johnson : > From what I've read there are the following scopes in struts. > >- application >- session >- request >- page >- action > > I can see application, session, request in and see how to > access the different parts via #application, #session, #reque

Re: accessing properties/attributes (scope)

2012-08-20 Thread Christopher Johnson
Lukasz, I changed to include 'scope="request"' and I now see my variables in the request scope and can access them via #request.url. Thank you. --- >From what I've read there are the following scopes in struts. - application - session - request - page - action I can see applicat