505 (HTTP version not supported) sent to client when ASP.NET application attempts to access WCF service

Posted by Aaron J Spetner on Stack Overflow See other posts from Stack Overflow or by Aaron J Spetner
Published on 2012-06-05T10:37:16Z Indexed on 2012/06/05 10:40 UTC
Read the original article Hit count: 186

Filed under:
|
|
|

We have created a DLL to facilitate access of a 3rd-party WCF Service. This DLL works fine in a Windows Application on our test machines, but when we try to use it in an ASP.NET application on our web server, our web server returns a 505 HTTP version not supported error to the client.

To clarify, the setup is Client->Server->WCF Service. Using Fiddler, I can tell that our server is not making requests to the WCF Service. The calls are wrapped in a try/catch block, but no Exception occurs. Instead, as soon as the call to the service is attempted, our server returns a 505 error to the client and terminates execution.

We are using clientCertificate authentication over HTTPS with serviceCertificate certificateValidationMode set to "None".

Thanks

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about wcf