Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can i use Apache Tomcat to behave like a proxy server? I know there are other methods also, to create a proxy server [ using HTTP/Socks-5 , using google app engine, blah blah ]

The answer can be simply, No . or if it is possible to create a proxy server using Tomcat then please let us know.

share|improve this question

3 Answers

No, as far as I know tomcat cannot be configured to act as a proxy server. With programming of course everything is possible.

On the other hand nothing prevents you from deploying on it e.g. Apache MINA library and a couple of classes to configure it as a proxy server. Then you have a proxy server which can be deployed as part of your tomcat solution. But this has nothing to do with tomcat, other than that it happens to start the thing.

share|improve this answer
With programming of course everything is possible ? – Rakesh Juyal May 28 '10 at 19:18
Well sometime a little programming is easier than configuring. But I was thinking about another use-case : delivering a single executable with all necessary functionality built in and preconfigured can make a lot of sense if it must be maintained by "external" sysadmins. We use this to deliver internal aaplications to the Ops team as this cuts down in the training, documentation, incidents, speed of deployment, unreliability, etc... – Peter Tillemans May 28 '10 at 20:52
Anyways, edwardstx.net/wiki/Wiki.jsp?page=HttpProxyServlet looks promising. – Peter Tillemans May 28 '10 at 21:26

tomcat can not accomplish proxy funciton standlone, combine with apache or nginx, they can accomplish.

about details, you can see: http://tomcat.apache.org/tomcat-6.0-doc/proxy-howto.html

share|improve this answer

tomcat can not accomplish proxy funciton standlone, combine with apache or nginx, they can accomplish.

about details, you can see: http://tomcat.apache.org/tomcat-6.0-doc/proxy-howto.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.