• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

mounting sub contexts mod_jk

 
Ranch Hand
Posts: 280
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello all,
I am using mod_jk-2.0.43 on a Win2k server connecting Tomcat4.1.12 and Apache 2.0.43. I am trying to mount a subcontext in the httpd.conf like so.
JkMount /SuperDir/SubDir ajp13
JkMount /SuperDir/SubDir/* ajp13

I have set it up modeling after the examples mount. Which works correctly.
JkMount /examples ajp13
JkMount /examples/* ajp13
I have tried variations as well.
Using only the SuperDir
JkMount /SuperDir ajp13
JkMount /SuperDir/* ajp13
and also combining the mount statements above with the first set like so
JkMount /SuperDir ajp13
JkMount /SuperDir/* ajp13
JkMount /SuperDir/SubDir ajp13
JkMount /SuperDir/SubDir/* ajp13

I am getting the Tomcat screen saying that the servlet
http://ExampleServer.com/SuperDir/SubDir/ExampleServlet
can not be found.
Any suggestions OTHER THAN changing any components is welcome.
Thanks!
[ January 21, 2003: Message edited by: Jason Kretzer ]
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic