Hello,
I am using Struts 1.1-b2 and Tomcat4.1.18.
My web app is deployed under a context named 'ppp'.
In web.xml, url-pattern for struts action servlet is set to '*.do':
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>

And in struts-config.xml, I have the following <action> element setup:
<action path="/test"
type="com.emirca.pp.controller.actionhandler.Welcomer"
unknown="true"
validate="false">
</action>

On my server, the following works:
http://localhost:8080/ppp/test.do

but the following doesn't:
http://localhost:8080/ppp/layout/test.do

Which means subdirectories within the context are not recognized by struts in this setup...
How can I fix this?
Thanks in advance.
Cagan


Cagan Senturk

Emirca Technologies, Inc.
75 Spring St. Floor #8
NYC, NY 10012

mailto:[EMAIL PROTECTED]
http://www.emirca.com


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

Reply via email to