Proxy issue

C

Craig Buchanan

I am able to connect Asp.Net v2 application to a remote .Net v2 webservice
by specifying the proxy settings in code:

Dim proxy As WebProxy = New WebProxy("proxy.company.com:80")
proxy.Credentials = CredentialCache.DefaultCredentials
dim service as New RemoteWebservice
service.Proxy = proxy

I thought it would make more sense to move this to the application's
web.config file. I created the following entry:

<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<system.net>
<defaultProxy>
<proxy
usesystemdefault = "false"
proxyaddress="http://proxy.company.com"
bypassonlocal="true"
/>
</defaultProxy>
</system.net>
...
</configuration>

Finally, I removed the proxy coding listed above.

When I run the application, i get an error that reads:

HTTP status 407: Proxy Authentication Required

Is there an issue w/ my web.config file, does there need to be additional
coding to get the proxy settings from the web.config file or it is something
else?

Thanks for the help.

Craig Buchanan
 
A

Anderw Miller

I am having the same problem. The log on my ISA proxy server shows the
initial incoming request as "anonymous" and then does not show any subsequent
requests from the client to send the NTLM credentials. I have also looked at
the HTTP traffic on the client (using Fiddler) and I see the same thing --the
proxy returns 407 and the client never resends the request.

Note that my client is using .NET 1.1 with that standard .NET generated
proxies that derive from SoapHttpClientProtocol.

Can anyone comment on whether or not this is a known issue?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,764
Messages
2,569,567
Members
45,041
Latest member
RomeoFarnh

Latest Threads

Top