Hello I'm trying to fetch data from a https web (i'm not behind firewall or proxy) however even accepting all certificates it keeps throwing System.Net.WebExceptionStatus.SecureChannelFailure with the message shown: Cancelled the request: Unable to create a secure SSL/TLS channel ... i've looked everywhere so you guys are my last chance.

   static void Main(string[] args)
            {
                RemoteCertificateValidationCallback ServerCertificateValidationCallback = delegate { return true; };
                HttpWebRequest request = (HttpWebRequest)WebRequest.Create("https://miyoigo.yoigo.com");
                HttpWebResponse response = (HttpWebResponse)request.GetResponse();
                using (StreamReader reader = new StreamReader(response.GetResponseStream()))
                {
                    Console.Write(reader.ReadToEnd());
                }
            }

Thanks in advance ;)

link|improve this question

can you hit the same url successfully with a browser? – Ray Jan 16 '10 at 19:53
yes i usually do by web browser but wanna do it programmatically – Luffy Jan 16 '10 at 20:02
feedback

4 Answers

try printing the InnerException property of the WebException, should provide a particular reason the negot failed

Console.WriteLine("Inner Exception");
Console.WriteLine(String.Concat(e.InnerException.StackTrace, e.InnerException.Message));
link|improve this answer
InnerException is null – Luffy Jan 16 '10 at 20:12
The Message tells me is something like (translated): Cancelled the request: Unable to create a secure SSL/TLS channel – Luffy Jan 16 '10 at 20:25
feedback

That code works fine for me exactly as you have it. My guess is that you've got something network related going on. Are you behind a proxy or firewall? Like Ray said in his comment, try hitting that URL from a browser.

link|improve this answer
i'm connected directly to the router – Luffy Jan 16 '10 at 20:03
feedback

Get a tracelog of the application (see System.Net tracing) and see why the SSL hanshake is failing.

link|improve this answer
thanks, it is failing due to AlgorithmMismatch, but i don't know how to fix it – Luffy Jan 18 '10 at 14:56
i've check with other https sites and they work well and their certificate is similar to this – Luffy Jan 18 '10 at 15:06
What is the algorithm mismatch? Can you show the exact message snippet from the log? – feroze Jan 18 '10 at 19:31
This are the last two System.Net Information: 0 : [2424] InitializeSecurityContext(credential = System.Net.SafeFreeCredential_SECURITY, context = 1bed9d10:1e8a380, targetName = miyoigo.yoigo.com, inFlags = ReplayDetect, SequenceDetect, Confidentiality, AllocateMemory, InitManualCredValidation) System.Net Information: 0 : [2424] InitializeSecurityContext(Number of In-Buffers=2, Length of Out-Buffer=0, return code=AlgorithmMismatch). – Luffy Jan 18 '10 at 19:49
Can you put the logfile on pastebin.com? I would like to see why you are getting this, and it involves looking at how the connection was established, etc. On searching, I found this article derkeiler.com/Newsgroups/microsoft.public.platformsdk.security/… which seems to imply that there is a disconnect in the algorithms supported between server and client. Exact details can only be found by looking at the log. – feroze Jan 20 '10 at 2:33
show 8 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.