Hi, Iam using a Tomcat server (only for development) on my local pc,
within a company network that is using a proxy server. Problem: My
application does http requests to a server were a proxy is required,
as well as requests to an
IP were no proxy is required / allowed. I added these 2 lines to my
catalina.properties file:
http.proxyPort=<MYPROXY_PORT>
http.proxyHost= <MYPROXY_URL>
If I add these lines, the service that requires the proxy works,
however the other service does not work -
and vice versa.
Is there a way to configure Tomcat so that I may use a proxy, but
exlude certain URLS, just like you can do in a browser?
Thanks in advance,
Christine
moonkev@gmail.com - 14 Aug 2007 17:17 GMT
> Hi, Iam using a Tomcat server (only for development) on my local pc,
> within a company network that is using a proxy server. Problem: My
[quoted text clipped - 16 lines]
>
> Christine
Hi christsine,
you need to use the nonProxyHosts system property. You can use a |
(pipe) to separate the hosts.
-Kevin
Christine Mayer - 14 Aug 2007 18:21 GMT
THANKS a lot!!!!
That did it!!! :-))))