Re: mixed html and jsp site using ProxyPass

2008-12-05 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 David, David Goodenough wrote: ProxyPass ajp://127.0.0.1:8009/jsp Can't you do something like this: ProxyPass (/*.jsp) ajp://127.0.0.1:8009/jsp$1 ?? This is one of the reasons that I like using mod_jk: there's actual documentation for how to

RE: mixed html and jsp site using ProxyPass

2008-12-03 Thread Peter Crowther
From: David Goodenough [mailto:[EMAIL PROTECTED] I have a site which is a mixture of html (and a bunch of images and flash and other such stuff which came in from the web designer) and a couple of JSPs. I have implemented this with Apache 2.2 and Tomcat 5.5, using ProxyPass statements with

Re: mixed html and jsp site using ProxyPass

2008-12-03 Thread Chris Wareham
David Goodenough wrote: I have a site which is a mixture of html (and a bunch of images and flash and other such stuff which came in from the web designer) and a couple of JSPs. I have implemented this with Apache 2.2 and Tomcat 5.5, using ProxyPass statements with ajp in the Location tag. My

Re: mixed html and jsp site using ProxyPass

2008-12-03 Thread David Goodenough
The reason was that Tomcat did not serve the Flash correctly, never did manage to get to the bottom of why but the browser did not complain - it just left big blank spaces. With this setup at least that bit works. David On Wednesday 03 December 2008, Peter Crowther wrote: From: David

Re: mixed html and jsp site using ProxyPass

2008-12-03 Thread Chris Wareham
David Goodenough wrote: The reason was that Tomcat did not serve the Flash correctly, never did manage to get to the bottom of why but the browser did not complain - it just left big blank spaces. With this setup at least that bit works. David My gut response is that the MIME type is wrong,

Re: mixed html and jsp site using ProxyPass

2008-12-03 Thread André Warnier
David Goodenough wrote: [...] Is there a way to divert just the .jsp files? I tried Location /*.jsp but that did not seem to work - maybe I got something else wrong. You may have more luck on the Apache users list ([EMAIL PROTECTED]) for this. But, assuming all your other content is to be

Re: mixed html and jsp site using ProxyPass

2008-12-03 Thread André Warnier
Chris Wareham wrote: David Goodenough wrote: The reason was that Tomcat did not serve the Flash correctly, never did manage to get to the bottom of why but the browser did not complain - it just left big blank spaces. With this setup at least that bit works. David My gut response is that

Re: mixed html and jsp site using ProxyPass

2008-12-03 Thread Chris Wareham
André Warnier wrote: Chris Wareham wrote: David Goodenough wrote: The reason was that Tomcat did not serve the Flash correctly, never did manage to get to the bottom of why but the browser did not complain - it just left big blank spaces. With this setup at least that bit works. David My