Re: Action tag is forced to use input result if outer action has action errors

2009-11-10 Thread Oscar Calderón
Hi Matt, You could add to your action declaration in the struts.xml a parameter called excluded methods, where you can add the name of the methods of your action that you don't want to be validated, for example: methodName1,methodName2 Even if your interceptor is a default interceptor like wo

Re: Question about OGNL in JSP

2009-11-09 Thread Oscar Calderón
page context, you need to actually add it to the context. > > musachy > > On Mon, Nov 9, 2009 at 1:47 PM, Oscar Calderón > wrote: > > Hi to all, this is my first question here. I have a doubt about the use > of > > OGNL expressions on JSP to access to an object that

Question about OGNL in JSP

2009-11-09 Thread Oscar Calderón
Hi to all, this is my first question here. I have a doubt about the use of OGNL expressions on JSP to access to an object that i declared in a scriptlet in the same JSP. I have the following code: <% AnObject obj = request.getSession().getAttribute(AnObject.OBJECT_NAME); %>