The underlying connection was closed: Unable to connect to the rem

G

Guest

I have a VB.NET application running on Win2K in an AD Domain. My App runs
locally as a service, using a Domain Account, and runs a web page on the
internet. The request is initiated by
System.Net.HttpWebRequest.Create(CurrentURL) and the getResponse() on the
request. It uses SSL with a Proxy Server in play. Everything has been working
fine for a long time until recently when I consistently get the above error
message.

I have checked the "effective" local security policies and see nothing that
stands out. The account is an admin on the local box.

Any ideas would be appreciated...
 
S

shriop

Offhand, it sounds to me like you're scraping someone's site that
doesn't want you to, and they've picked something about your connection
to block based on, ip, user agent, etc. You'll have to provide more
details about what you're connecting to and it might even get down to
hardware load balancers and firewalls in between. This isn't something
that's easily going to be solved in code most likely.

Bruce Dunwiddie
http://www.csvreader.com
 
G

Guest

The web site is one of my own. The problem is proxy server or AD policy
related, I'm sure. The service is running on my machine on the internal
network and attempting to access the web site on the dotcom web.

I have had to authenticate with the proxy server to get access to the web.
However, this has been working fine for a year. Any ideas on IE or Win2K
patches that may modify local settings to make this happen would be
appreciated.

There are AD policies in play. However, I am not an admin and am not
notified when policy changes are applied. If the problem is a policy change
then I need to know which policy in question before I go to the "black hole
people" to attempt to get a fix. (The network folks do not think it is their
job to trouble-shoot other peoples's problems.)

Thanks for any suggestions....
 
G

Guest

Resolved. I saw another posting regarding this problem but the guy who posted
it found out his problem was related to something else. However, he posted
his code. In his code I saw he was setting the HTTP UserAgent property on the
HTTPRequest, something I wasn't doing. I set the property to the name of my
app and it worked! I didn't know the proxy server was now requiring it. It is
not something that would normally get desiminated by the "black hole".
 

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

Top