Hi,
I have a jsp page and one action class. in tha jsp page i have a link that is to call again the same action class again with .do extension.
like href="/reo/core/abcd.do"
but this time it is not invoking the action class.
Initially i am ablel to populate the values for the jsp page from the action class.
what is the problem.??
Regards,
MaRu.
-
unable to run action class again..?? (1 messages)
- Posted by: Maruthi Ram
- Posted on: May 04 2004 08:56 EDT
Threaded Messages (1)
- unable to run action class again..?? by Venkata Allamsetty on May 04 2004 10:15 EDT
-
unable to run action class again..??[ Go to top ]
- Posted by: Venkata Allamsetty
- Posted on: May 04 2004 10:15 EDT
- in response to Maruthi Ram
check your web.xml.
see if
<servlet-mapping>
<servlet-name>XYZ</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
is present.
If your URL pattern does not support *.do, removing .do in your link should work.