> -----Original Message-----
> From: Thomas Delnoij [mailto:[EMAIL PROTECTED]]
> Sent: Friday, September 27, 2002 5:43 AM
> To: [EMAIL PROTECTED]
> Subject: Struts ActionMapping / OC4J problem
> 
> 
> Dear colleagues,
> 
> I have a problem configuring Struts to run properly with the 
> embedded OC4J
> app server in Oracle 9i JDeveloper.
> 
> It can only find the first Action Object of these two ActionMappings I
> configured.
> 
> <action-mappings type="org.apache.struts.action.ActionServlet">
>     <action path="/ProcessForm" type="appaction.ProcessForm"
>             name="TrekkerFormBean" scope="request"
>             input="/trekker/keuringsformulier.jsp" validate="true">
>       <forward name="succes" path="/succes.jsp"/>
>       <forward name="failure" path="/failure.jsp"/>
>     </action>
>     <action path="/GetKeuringsForm" type="appaction.GetKeuringsForm">
>       <forward name="trekker" path="/trekker/keuringsformulier.jsp"/>
>       <forward name="veldspuit" 
> path="/veldspuit/keuringsformulier.jsp"/>
>       <forward name="boomgaardspuit"
> path="/boomgaardspuit/keuringsformulier.jsp"/>
>     </action>
>   </action-mappings>

So you request "http://localhost:<port>/<appname>/ProcessForm.do" and it
hits the breakpoint in your action.

Then, you request "http://localhost:<port>/<appname>/GetKeuringsForm.do" and
you just get a 404 error, without hitting the breakpoint in your action, and
no errors in your server logs?

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to