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). Services that use this binding are designed to inter-operate with WS* complaint clients.
Questions tagged [wshttpbinding]
263 questions
8
votes
1 answer
WSHttpBinding in .NetStandard or .NET core
I want to integrate NMVS protocol in my application which is providing wsdl files for testing which is written sample code in .net framework library.
I want to test it in .netstandard, .netcore or UWP app but wsdl files only support to…

Imrankhan
- 157
- 1
- 8
8
votes
2 answers
Why InstanceContextMode.PerSession behave like PerCall when using wsHttpBinding?
I have WCF service consumed by AJAX client using SOAP 1.2
Web.config:

Dor Cohen
- 16,769
- 23
- 93
- 161
8
votes
3 answers
Simple WCF calls take a lot of time
I am creating a WCF server-client application. However, in my first test, a simple call (the method basically just return true;) takes a lot of time (~5 seconds)
I tried to trace it, and here's a screenshot of the call trace
As you can see between…

Louis Rhys
- 34,517
- 56
- 153
- 221
7
votes
1 answer
WCF: myservice.svc?wsdl shows "You have created a service.", not WSDL?
I've created a WCF service with a wsHttpBinding and a mexHttpBinding. When running on http in IIS6, the myservice.svc shows the usual "You have created a service." page. myservice.svc?wsdl shows XML containing WSDL.
I changed from

Martin Ørding-Thomsen
- 7,207
- 3
- 21
- 22
7
votes
2 answers
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, looping through all the possible error messages.
The final objective here is to authenticate both parties with certificates.…

tggm
- 973
- 2
- 15
- 41
6
votes
2 answers
WCF Service with wsHttpBinding - Manipulating HTTP request headers
I have been following this tutorial in order to get username authentication with transport security working in my WCF service. The tutorial however refers to using basicHttpBinding which is unacceptable - I require wsHttpBinding.
The idea is to have…

Dejan Janjušević
- 3,181
- 4
- 41
- 67
6
votes
2 answers
WCF & Java Interop using WSHttpBinding,
I’m trying to get a simple WCF application work with Java Client. Service exposes few simple operations using WSHttpBinding, which it does perfectly.
Now, due to some reason (probably due to incomplete WS-* specifications at Java side) it seems…

Aakash
- 695
- 3
- 10
- 25
6
votes
1 answer
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 simple method
[OperationContract]
string SayHello();
public string SayHello()
{
return "HELLO";
}…

Gopal SA
- 949
- 2
- 17
- 36
6
votes
3 answers
How to read value of an attribute defined in app.config?
I have a app.config file that in the form of :

Nam G VU
- 33,193
- 69
- 233
- 372
6
votes
3 answers
how to enable WCF Session with wsHttpBidning with Transport only Security
I have a WCF Service currently deployed with basicHttpBindings and SSL enabled. But now i need to enable wcf sessions(not asp sessions) so i moved service to wsHttpBidnings but sessions are not enabled
I have…

Mubashar
- 12,300
- 11
- 66
- 95
6
votes
1 answer
wsHttpbinding with TransportWithMessageCredential and windows authentication
I have an IIS hosted WCF service with the following binding configuration (I removed all the attributes from the binding for space) for wsHttpBinding and TransportWithMessageCredential
…

Sjblack
- 695
- 4
- 14
6
votes
1 answer
The binding at system.serviceModel/bindings/wsHttpBinding does not have a configured binding
I'm trying to create a second endpoint in my WCF web service. I can bring up the new endpoint's "Happy Page" by putting the domain URL in my browser, so I know that IIS can find the service, using my user account, properly.
However, if I try to run…

NealR
- 10,189
- 61
- 159
- 299
6
votes
1 answer
wshttpbinding support in silverlight 4
Does silverlight 4 beta supports wshttpbinding (wcf)? If not, will it be supported in stable release?

rovsen
- 4,932
- 5
- 38
- 60
5
votes
4 answers
SOAP header Action was not understood
I am trying to consume a webservice in C#. Whenever i try to call the function from the web service class I am getting a "SOAP header Action was not understood".I've added web reference[not service reference] pointing the web service in my…

logeeks
- 4,849
- 15
- 62
- 93
5
votes
1 answer
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. They both implement exactly the same service contract.
What is the difference in what is sent on the wire?
Using netTcp is my message…

Remotec
- 10,304
- 25
- 105
- 147