Interesting! Tell me if I am wrongly interpret your message. Do you mean I should deploy the precompiled jsp files to tomcat/work/standalone/localhost/myApp ? If not, how does the servlet container, tomcat, know I have already precompiled the jsp files when the forward tag points to the jsp files?
Billy Ng ----- Original Message ----- From: "Andrew Hill" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Sunday, December 15, 2002 11:05 PM Subject: RE: Forward to a servlet > I thought that even with precompiling you would just point the forward at > the .jsp file as normal? (Ie: shouldnt need to modify the action stuff in > struts-config.xml) > > -----Original Message----- > From: Billy Ng [mailto:[EMAIL PROTECTED]] > Sent: Monday, December 16, 2002 14:45 > To: Struts Users Mailing List > Subject: Forward to a servlet > > > Hi folks, > > In my Struts app, I am using the Action to call the jsp file. In the > struts-config.xml, the action tag looks like this, > > <action path="/accounts" > type="com.mydomain.AccountsAction" > name="accountsForm" > validate="false" > input="/WEB-INF/jsp/AccountsHTML.jsp"> > <forward name="accounts" path="/WEB-INF/jsp/AccountsHTML.jsp"/> > </action> > > Because of some deployment issue, I need to pre-compile the jsp files. I > successfully use the ANT's jspc tag to compile the all the jsp files to java > files, then compile them to java files. However, I cannot make it use the > servlet in the forward tag. I tried to do this (AccountsHTML_jsp is class > file of the compiled version of AccountsHTML.jsp), but I get 404 page. > > <action path="/accounts" > type="com.mydomain.AccountsAction" > name="accountsForm" > validate="false" > input="/WEB-INF/jsp/AccountsHTML.jsp"> > <forward name="accounts" path="/WEB-INF/ui/AccountsHTML_jsp"/> > </action> > > Would anybody knows how can I make this work? > > Thanks in advance! > > Billy Ng > > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

