Top "Wshttpbinding" questions

The WsHttpBinding is a WCF (Windows Communication Framework) binding class that uses HTTP or HTTPS as a transport protocol and is complaint with a variety of WS* standards (reliability,security,etc).

Contract requires Session, but Binding ‘WSHttpBinding’ doesn’t support it or isn’t configured properly to support it

I have specified the service contract to require the session. [ServiceContract(SessionMode = SessionMode.Required)] public interface ITicketSales { } The service decorated …

wcf binding ssl wshttpbinding
WCF: How to actually get to use WSHttpBinding? I get exceptions instead

I created a WCF Service: Shared.dll: [ServiceContract(ConfigurationName = "ICalculator")] public interface ICalculator { [OperationContract()] int Add(int a, int b); } …

wcf wcf-binding wshttpbinding wcf-wshttpbinding
Using Powershell to call a WCF service method

I have a WCF service that uses wsHttpBinding with message security and clientcredentialtype as windows, and the service has a …

c# wcf powershell wshttpbinding
Programmatic WCF Message Security with Certificates

I've written a self-hosted WCF service using WSHttpBindings and I'm trying to implement message-level security using certificates I've generated myself. …

wcf x509certificate wshttpbinding
WCF wshttpbinding (SOAP 1.2) not working with SoapUI tool

I have simple WCF (.NET 3.5) Service application which has the default code created by VS 2008 when i open a new …

soapui wshttpbinding
WCF NetTCPBinding vs HttpBinding difference in data sent on wire

Say I have a service exposing two end points, 1st is a NetTCPBinding the second is any flavour of HttpBinding. …

wcf wcf-binding nettcpbinding wshttpbinding basichttpbinding
WCF with certificates on both Client and Server (Message security and wsHttpBinding)

I'm trying to setup a WCF service with certificate authentication on both the client and server. I'm going through hell, …

wcf certificate wshttpbinding