Re: Using Tomcat as a proxy?

2002-08-19 Thread ope
Why would you want to use a Java Servlet Container to do proxying? It's like using a Space Shuttle to do door-to-door delivery. If you need proxying, use Squid or Apache. The reason I have to do this is to make the best of a rather brain dead product deployment. This is not a long term

RE: Using Tomcat as a proxy?

2002-08-19 Thread Cox, Charlie
-Original Message- From: ope [mailto:[EMAIL PROTECTED]] Sent: Monday, August 19, 2002 12:38 PM To: Tomcat Users List Subject: Re: Using Tomcat as a proxy? Why would you want to use a Java Servlet Container to do proxying? It's like using a Space Shuttle to do door

RE: Using Tomcat as a proxy?

2002-08-19 Thread ope
think that writing a 'proxy' servlet will end up being the quickest way to an end in this case. --- Cox, Charlie [EMAIL PROTECTED] wrote: -Original Message- From: ope [mailto:[EMAIL PROTECTED]] Sent: Monday, August 19, 2002 12:38 PM To: Tomcat Users List Subject: Re: Using Tomcat

Re: Using Tomcat as a proxy?

2002-08-17 Thread Nikola Milutinovic
ope wrote: I am looking for a way to use Tomcat as a proxy similar to the way that Apache can be setup to proxy to Tomcat. What I want to do is have Tomcat setup so that any URLs that have the path http://myserver/someapp are forwarded to http://otherserver/someapp. Apache can do this

Using tomcat as a proxy

2001-09-25 Thread Donie Kelly
Hi We have a HTTP application written in C and we now need to add https support. I was thinking that we could use tomcat as a proxy to accept the request on one side and forward it over https... Any ideas on how we could do this? We could use apache using mod_proxy (I think) but tomcat is

Re: Using tomcat as a proxy

2001-09-25 Thread Graham Leggett
Donie Kelly wrote: We have a HTTP application written in C and we now need to add https support. I was thinking that we could use tomcat as a proxy to accept the request on one side and forward it over https... Any ideas on how we could do this? We could use apache using mod_proxy (I