I would like to use different proxies instead of just one. Currently the ProxySelector sets a system wide proxy for all URLConnections. Does anyone know of a library that supports non system-wide proxies. Just something as simple as adding the appropriate proxy http headers/socks layers?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

You can specify a proxy when opening a URLConnection. Is that what you mean?

If you want something that works automatically, you could implement a ProxySelector that uses a ThreadLocal table internally to provide different selectors based on the calling thread.

link|improve this answer
Yes, thanks.... – Zombies Feb 8 '10 at 21:16
feedback

Your Answer

 
or
required, but never shown

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