function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
chrisCCASchrisCCAS 

Login Failure

Im just starting to use the developer tools to startup and I have the sample available for the .net application (writing in vb.net)  So, im attempting to login and it will not go through I get this error:

"The underlying connection was closed: Unable to connect to the remote server., p
lease try again."

Everytime I get that, and when i netstat in my command prompt It doesnt show any information going out. I just started this  project and so far lost on the login.(the building block on this whole project)

SuperfellSuperfell
This is likely a firewall and/or outgoing proxy issue on your local network.
chrisCCASchrisCCAS

I have been looking through previous posts and i triedthe suggestion :

 

binding.Proxy = New System.Net.WebProxy(PROXY, PORT)


I used that script and what happens is it must bounce a rejection right off the proxy server. While If I use an IP that is not a Proxy server it will sit there for th 60 seconds and time out. Any Suggestions?

Message Edited by chrisCCAS on 07-27-2005 01:31 PM

chrisCCASchrisCCAS

I finnally fixed it, Finals results are :

 

'//Bindings to the Proxy Server

binding.Proxy = New System.Net.WebProxy("PROXY", PORT)

'//Binding credentials, Use Company login and Pass!!!

binding.Proxy.Credentials = New System.Net.NetworkCredential("USER", "PASS")

loginRes = binding.login(USER, PASS)