• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Apache + Resin + Struts

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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..
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic