hello in the "web.xml",i config the "servlet-mapping" of the struts controler as "*.do",it works well in both tomcat4 and weblogic6.1,but if i modify it to "/*.do",the weblogic works,but the tomcat dons't work. otherwisw,if i setup the mapping as "/sub/*.do",and modify the hyperlink in the caller page accordingly(add the "sub" to the url),both the tomcat and weblogic don't work,why?
thank you very much!
chanoch wiggers
Author
Ranch Hand
Joined: May 24, 2001
Posts: 245
posted
0
having *.do should configure the thing to work for all subfolders of your application in addition to the root fodlder and is therefore equivalent to */*.do anyway, however, I am pretty certain that things like /sub/*.do causes confusion over whether you are configuring the sub/ web application or the sub/ subfolder of your root application. I suspect that is where the problem is. Why do you want the mapping to only work within a subfolder anyway?
chanoch<p><a href="http://www.amazon.com/exec/obidos/ASIN/1861007736/" target="_blank" rel="nofollow">Author of Professional Apache Tomcat</a></p>