Hi Jeroen,
I think using Action class just to forward to
jsp is okay. At least you can hide the path of that jsp file.
But probably using
org.apache.struts.actions.ForwardAction would be a better solution. By using this, you don't have to create an Action class. You can specify that behavior in struts-config.xml alone.
<action path="/saveSubscription" type="org.apache.struts.actions.ForwardAction" name="subscriptionForm" scope="request" input="/subscription.jsp" parameter="/path/to/processing/servlet">
Just like this.
[ January 12, 2003: Message edited by: Shin Hashitani ]