My server, server.example.com, isn't accessible from the Internet. However, there's an accessible HTTP proxy, proxy.example.com, that can talk to the server.

If users configure their browser to go through proxy.example.com for *.example.com, or use a proxy autoconfig file I supply, they can access the server (after authenticating with the proxy). I want to avoid making them go through this manual process.

Is it possible to do this programmatically? The JavaScript will be served from an Internet-accessible www.example.com site, so there doesn't seem to be a security issue which would make this impossible in principle.

My constraint is that proxy.example.com is an HTTP proxy and I cannot touch it. I only control server.example.com and www.example.com, and my web app can only be run on server.example.com.

link|improve this question
feedback

2 Answers

No, this is not possible. However, you can accomplish that by using an iframe that does URL chaining proxy. In ypur example, you have to call the following address (if your proxy allows URL chaining)

http://proxy.example.com/http://server.example.com

i hope that helps.

cheers, michael

link|improve this answer
feedback

No, you cannot set the proxy by Javascript.

there doesn't seem to be a security issue

Arbitrary Javascript altering browser settings IS a security issue.

link|improve this answer
The question was whether this could be accomplished for this specific site in some way, not necessarily by setting the global browser setting. – Adam Morrison Aug 9 '11 at 8:29
@Adam the http proxy is a global browser setting in all major browsers. willsteel gave you a workaround, but that's not standard proxy behaviour. – Vlad Aug 9 '11 at 8:35
feedback

Your Answer

 
or
required, but never shown

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