Assuming you are using mod_jk.... JkMount /mycontext/*.jsp ajp13
When specifically doing this, you will have to make sure that you have a JkMount statement for all servlet mappings including default ones like *.jsp and all the ones specified in your own web.xml. At a minimum, you'd also want the following mappings: JkMount /admin/servlet ajp13 JkMount /admin/servlet/* ajp13 Then add more mappings based on any <servlet-mapping> entry in your web.xml Or, you can just do JkMount /mycontext ajp13 JkMount /mycontext/* ajp13 That forwards *all* requests to Tomcat If you use mod_webapp, the release versions don't differentiate between static and dynamic content. So, you would just do something like: WebAppConnection conn warp localhost:8008 WebAppDeploy mycontext conn /mycontext/ WebAppInfo /webapp-info/ however, if you are running under windows, I don't recommend using mod_webapp. It is pretty flaky so far. Jake At 11:09 AM 5/1/2002 +0300, you wrote: >Hi guys, >Just joined the community. >I have a small question i've downloaded Apache 2.0 & Tomcat 4.0.3 and i'm >using Java SDK 1.4. how do i setup Apache to forward jsp requests to Tomcat. > >Thanks, >Jamshed > > >-- >To unsubscribe: <mailto:[EMAIL PROTECTED]> >For additional commands: <mailto:[EMAIL PROTECTED]> >Troubles with the list: <mailto:[EMAIL PROTECTED]>
