I have some code which talks to a web service. It's pretty simple stuff at the moment
string hardwareID = "####-####-####-####-####"; // In code is a ID identifying the hardware of machine
string applicationID = "{random-guid}"; // In code is an identifier guid
byte[] licenseFile = null;
com.example.activateSoftware activate = new com.example.activatesoftware // Error occurs here
if (activate.IsValidLicense("12345-12345-12345-12345-12345"))
licenseFile = activate.downloadLicenseFile(hardwareID, applicationID, "12345-12345-12345-12345-12345");
The full error was:
"The request failed with HTTP status 407: Proxy Authentication Required (The ISA server requires authorisation to fulfil the request. Access to the Web Proxy service is denied.)"
The proxy service is configured in IE as the user can access the internet through Internet Explorer. The software really needs to be compatible with proxy servers of all kinds. It seems as if ISA is set to use integrated AD authentication.
Please help, I'm tearing my hair out trying to figure this out. I know a way of making a http request with network credentials but how do I apply that to this?

New Topic/Question
Reply




MultiQuote




|