Hi All
I am trying to integrate Apache web server with resin
servlet engine.
Everything works fine except
struts.
Somehow Apache/Resin doesnt recognise *.do url
pattern and when ever i try to acsess
http://localhost/test/login.do it throws me 404 File not found error..
If same application i run in standalone resin server then it works fine..
Though i have added webapplication id in resin.conf but still resin doesnt get this request..
In resin.conf i have added the following lines which tells apache to fwd *.do request to resin which is not happening
<web-app id='/test>
<servlet-mapping url-pattern='/*.do' servlet-name='plugin_match'/>
</web-app>
Does anybody has any idea or has someone got sucess in integration apache + resin + struts..