Re: About StrutsTypeConverter

2011-07-06 Thread Jeff Black
> Whereas I am confused why the signature is not public T >convertFromString(Map context, String[] values, Class toClass). Is this in >scope of the effort someone described recently to Java5-ify the code base? What is the best way to organize such an effort? jb / __

Re: struts 1.2 html:select and submit button

2011-07-06 Thread hijayanth
Hi, Can you please let how did you address your requirement of having multiple action classes? Thanks and regards, jayanth -- View this message in context: http://struts.1045723.n5.nabble.com/struts-1-2-html-select-and-submit-button-tp3477760p4558693.html Sent from the Struts - User mailing li

Re: About StrutsTypeConverter

2011-07-06 Thread Dale Newfield
On Jul 4, 2011, at 12:27 AM, Vincent Lin wrote: > I am confused that why the signature of convertFromString is public Object > convertFromString(Map context, String[] values, Class toClass) instead of > public Object convertFromString(Map context, String value, Class toClass). Whereas I am conf

Re: Scope Interceptor and Struts2 Validation query...

2011-07-06 Thread Dave Newton
The exception is being thrown from the JSP and has nothing to do with the Java code you've shown, as far as I can tell. The error message states the problem pretty clearly. Dave On Jul 6, 2011 9:44 AM, "log2akshat" wrote: > Thanks for your reply. > > Got no success with that link > > Act

Re: Scope Interceptor and Struts2 Validation query...

2011-07-06 Thread log2akshat
Thanks for your reply. Got no success with that link Actually the main problem is that I am using different themes as well as modified theme as the form is having more than 2 columns, so there is a rendering issue if I am using the Struts validation therefore I removed the Struts Validati

Re: On applying action-validation.xml action is not executing.

2011-07-06 Thread Jeff Black
I'm with Dave: I think you should try using the "defaultStack" or at a minimum the "validationWorkflowStack" of Interceptors to begin eliminating a possible misconfiguration. It's probably nothing, but I thought I would mention it -- Did you double-check your Tiles configuration? jb / _

Re: About StrutsTypeConverter

2011-07-06 Thread Jeff Black
> I am confused that why the signature of convertFromString is > public Object convertFromString(Map context, String[] values, Class toClass) > instead of public Object convertFromString(Map context, String value, > Class toClass). > > What's the point to pass a String array instead of a String ar