Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP .Net Web Services > The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel.

Reply
Thread Tools

The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel.

 
 
Joel Barsotti
Guest
Posts: n/a
 
      04-19-2007
I'm working on shipping rate calculator going back and forth via XML. The
thing I'm confused about is that the code works, but after a few hours and I
don't know how many requests, I start getting the error "The underlying
connection was closed: Could not establish trust relationship for the
SSL/TLS secure channel." I can't imagine UPS's certificate is bad.

Here's my code, let me know if you see any glaring issues.

HttpWebRequest myReq = (HttpWebRequest)WebRequest.Create(upsRateUri);
myReq.Headers.Clear();
myReq.Method = "POST";
myReq.ContentType = "application/x-www-form-urlencoded";
myReq.ContentLength = xmlString.Length;
StreamWriter sendingData = new StreamWriter(myReq.GetRequestStream());
sendingData.Write(xmlString);
sendingData.Close();
WebResponse myResponse = myReq.GetResponse();

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel. Joel Barsotti ASP .Net 4 04-19-2007 11:12 PM
"Underlying connection was closed. Could not establish trust relationship" error Anna Troiken ASP .Net Web Services 2 03-17-2007 10:40 PM
The underlying connection was closed: Could not establish secure channel for SSL/TLS. Jim Butler ASP .Net 7 07-12-2006 01:37 AM
The underlying connection was closed: Could not establish secure channel for SSL/TLS C.W. ASP .Net 1 08-15-2005 04:23 AM
The underlying connection as closed: Could not establish secure channel for SSL/TLS Ghislain Tanguay ASP .Net Web Services 3 09-03-2004 07:49 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57