Re: calling actionmapping from a URL

2001-07-25 Thread Oleg V Alexeev
Hello Jan, Thursday, July 26, 2001, 1:40:48 AM, you wrote: JFØ> Hi JFØ> I have a action class that is used in several actionmappings and in some JFØ> situations it is called directly JFØ> from a url, like "href=myaction.do", but in these cases the validation JFØ> implemented prevents me from con

Re: calling actionmapping from a URL

2001-07-25 Thread Ted Husted
The ActionMapping has a property for validation. To call the Action without validation, set validate=false in your ActionMapping. An Action is not a servlet, and you cannot call it directly from an URL. In every case, the request is passed to the ActionServlet by the container. The ActionServ

calling actionmapping from a URL

2001-07-25 Thread Jan Fredrik Øveraasen
Hi I have a action class that is used in several actionmappings and in some situations it is called directly from a url, like "href=myaction.do", but in these cases the validation implemented prevents me from continuing the process. My question is: how can i turn off validation when calling a acti