How do I access the internet through an ISA Server proxy?
June 19, 2008 11:15 AM
Subscribe
I have an application installed on my PC at work that needs to connect to the internet through our ISA Server. The problem it has is that it can't connect directly unless I put in proxy settings. The problem that I have is that the proxy setting is just one long URL with no username or password. How can I get this application to connect?
Whenever I connect to the internet with a browser (IE and Firefox) on the work computer (Windows XP) I need to use http://isa.uk.mycompany.com:8080/array.dll?Get.Routing.Script as the automatic proxy configuration URL in the preferences otherwise it refuses to connect.
The application I want to connect to the internet uses HTTP and gives me three options for the proxy: "use default", "direct" and "named proxy". "Use default" and "direct" don't work.
"Named proxy" requires me to enter a proxy server, username and password. I'm guessing that my windows username and password would be for the latter two, but I have no idea what to put for the proxy server.
I've tried putting the long URL in, but that doesn't work. The problem appears to be that it is expecting a server name, not a port number and certainly not a path to a script.
I tried pasting the URL into a browser and it downloaded what looked to be about 300 lines of VB Script. There was nothing in there that gave me much of a clue on what I should use. I also tried running the VB script from the command line but nothing was outputted.
Can anyone offer any insights into what I need to do to work out what the proxy server name would be? Failing that, what else can I do?
posted by mr_silver to computers & internet (2 comments total)
The operative phrases that you should look for are things like
"PROXY blahblah.example.com:8080"
Where blahblah.example.com is your proxy host name and 8080 is the port. There are a lot of other things in here but that is the simple, common case. However, since this is a real programming environment, some details can be obscured through variables, string concatenation, etc.
good luck.
posted by mmascolino at 11:33 AM on June 19, 2008