posted 17 years ago
You can specify a servlet as action in a regular <form> tag, but you can't do so in an <html:form> tag. Struts will throw an exception. If you don't believe me, try it.
If you have a Servlet that you need to call in a Strut application, the solution that comes to my mind is to take the logic you need from the Servlet and put it into an Action class. An Action class can do anything a servlet can do.
[ March 12, 2007: Message edited by: Merrill Higginson ]