.NET App cannot connect to Apache SSL server
From: Mike (Mike_at_discussions.microsoft.com)
Date: 07/27/04
- Next message: Carel Lotz: "Re: NUnit and StrongnameIdentityPermission"
- Previous message: ReneMo: "Re: ASP.NET (IIS6) Accessing files on another server"
- Next in thread: Joe Kaplan \(MVP - ADSI\): "Re: .NET App cannot connect to Apache SSL server"
- Reply: Joe Kaplan \(MVP - ADSI\): "Re: .NET App cannot connect to Apache SSL server"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Date: Tue, 27 Jul 2004 10:01:44 -0700
Hello All -
I have a small app that is trying to access an SSL/TLS server that's running Apache on Unix. I get "The underlying connection was closed: could not establish a secure connection for SSL/TLS." The code is:
.
.
.
string myURL = "https://some.apache.web.server/some.wsdl/";
WebRequest webreq;
WebResponse webres;
try
{
webreq = WebRequest.Create(myURL);
webres = webreq.GetResponse();
}
catch(Exception exc)
{
richTextBoxWSDL.Text += exc.Message;
return;
}
.
.
.
Any suggestions? I can get to the server and the WSDL from IE and FireFox.
Mike
-- Michael Marsh Consultant Pantano Software
- Next message: Carel Lotz: "Re: NUnit and StrongnameIdentityPermission"
- Previous message: ReneMo: "Re: ASP.NET (IIS6) Accessing files on another server"
- Next in thread: Joe Kaplan \(MVP - ADSI\): "Re: .NET App cannot connect to Apache SSL server"
- Reply: Joe Kaplan \(MVP - ADSI\): "Re: .NET App cannot connect to Apache SSL server"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Relevant Pages
|