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

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: 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

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 akshat-...@iiitmk.ac.in wrote: Thanks for your reply. Got no success with

Re: About StrutsTypeConverter

2011-07-06 Thread Dale Newfield
On Jul 4, 2011, at 12:27 AM, Vincent Lin vincent.lin...@gmail.com 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

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

Re: About StrutsTypeConverter

2011-07-06 Thread Jeff Black
Whereas I am confused why the signature is not public T T convertFromString(Map context, String[] values, ClassT 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 /