Validate French Input Character using Struts Validator Framework

2005-03-15 Thread John Smith
I have one question regarding to struts validation for French input characters. I have some input fields in the form to accept the French character input, such as Street name, person's name, In struts's validation.xml file, I have defined the following rule: streetName |^\w+$ pers

Setting Dynamic Session Param in struts.xml

2008-06-23 Thread John Smith
Hello, Is it possible to do something like the below in struts.xml to access session object that have previously been set? true ${myId} output.jsp thanks, j - To unsubscribe

Newbie Q: How to set session object parameters in struts.xml

2008-06-24 Thread John Smith
Hello, Is it possible to set session objects inside and action and access the session object in another action without explicitly retrieving the session object? Thanks, J - To unsubscribe, e-mail: [EMAIL PROTECTED] For additiona

Re: Newbie Q: How to set session object parameters in struts.xml

2008-06-24 Thread John Smith
I have implemented sessionAware and the process works for a static string but it doesn't work for objects :( So I have the following in my struts.xml: true hello ${something} out.jsp the "test" param works fine which is a simple s

Interceptor to access session objects

2008-06-24 Thread John Smith
Hello, Which interceptor can I use to access session objects by putting them as paramteres in struts.xml? Many thanks, J - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Interceptor to access session objects

2008-06-24 Thread John Smith
On Tue, Jun 24, 2008 at 1:12 PM, Dave Newton <[EMAIL PROTECTED]> wrote: > --- On Tue, 6/24/08, John Smith <[EMAIL PROTECTED]> wrote: >> Which interceptor can I use to access session objects by >> putting them as parameters in struts.xml? > > What, specifica

Re: Interceptor to access session objects

2008-06-24 Thread John Smith
riven > Interceptor<http://struts.apache.org/2.x/docs/scoped-model-driven-interceptor.html> > > Scott > > On Tue, Jun 24, 2008 at 6:32 AM, John Smith <[EMAIL PROTECTED]> wrote: > >> On Tue, Jun 24, 2008 at 1:12 PM, Dave Newton <[EMAIL PROTECTED]> >> wr

Re: Interceptor to access session objects

2008-06-24 Thread John Smith
On Tue, Jun 24, 2008 at 2:18 PM, Dave Newton <[EMAIL PROTECTED]> wrote: > --- On Tue, 6/24/08, John Smith <[EMAIL PROTECTED]> wrote: >> Basically I add objectXYZ to the session in actionA then >> the user submits a query to ActionB. I want to retrieve >> objectXYZ