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
2
votes
1 answer
wsHttpBinding workarounds in .NET Core
I am looking for a dotnet core WCF wsHttpBinding workaround.
I am aware that .net core WCF implementation currently does not support wsHttpBinding (see support matrix here…

vikp
- 151
- 1
- 9
2
votes
2 answers
Can I use WCF wsHttpContextBinding with WSIT (Metro) clients?
I am working on a WCF - WSIT (Metro) integration project and I would like to allow Java clients to connect to Durable Services.
Durable Services
http://msdn.microsoft.com/en-us/library/bb410767(v=vs.90).aspx
Durable services require…

Jeno Laszlo
- 2,023
- 18
- 36
2
votes
0 answers
WCF - HTTPS - Transport security works but message security throws exception on application startup
I have a WCF self hosted server (a console application which registers the wcf contract with castle ioc container AsWcfService). I need it to work securely over https.
When I configure the server to use wsHttpBinding with security mode=Transport and…

Oleg Shraibshtein
- 21
- 1
- 5
2
votes
0 answers
How To Generate wsHttpBinding Headers Dynamically In Postman
I've gone through Postman's documentation, the Support Center, other StackOverflow posts and Google and haven't had any luck with finding information on this. I am trying to use Postman to handle automated testing of a SOAP endpoint that I suspect…

Thomas Parikka
- 472
- 5
- 17
2
votes
1 answer
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);
}
Server:
[ServiceBehavior()]
public class Calculator : ICalculator
{
…

michael
- 14,844
- 28
- 89
- 177
2
votes
0 answers
IIS Hosted WCF Service won't accept https endpoint, receive 404 resource error
Despite all of my efforts, I have not been able to get my simple WCF service hosted on IIS with SSL.
We are using windows server 2k3 with IIS 6.0 and we have up to .NET 4.0 installed on the server (web site is configured for 4.0)
If i go to…

lrichardson
- 21
- 2
2
votes
1 answer
WCF service binding wsHttp vs. basic with no authentication
I am attempting to create a WCF service with anonymous authentication. When I deploy the service to the destination server that is not on my current domain I receive the following error when attempting to call it:
Content Type…
user26901
2
votes
1 answer
Accessing wcf web service with powershell2
I'm trying to write a cmdlet that accesses one of my wcf webservices.
I've been looking at the new cmdlet : New-WebServiceProxy, but it only really seems capable of consuming ASMX webservices.
I've seen this article; which is focussed around…

GordonBy
- 3,099
- 6
- 31
- 53
2
votes
1 answer
Why WsHttpbindings giving error as "soap header action was not understood" but not the basichttpbinding?
I have developed a WCF service which is in wsHttpBinding. When I try to consume it, I am getting error as "soap header action was not understood". But when I use the same service in BasicHttpBinding, I am able to consume the service. Can anyone…

sivaganeshan B
- 41
- 1
- 7
2
votes
1 answer
Handle Wcf wsHttpBinding on Linux
I'm involved in a project with many others companies. We started to develop our systems at the same time but only at the end the communication problem was taken into account.
I've developed my system on Linux with Mono (Linux is mandatory for me). I…

napcoder
- 465
- 1
- 4
- 14
2
votes
1 answer
Could not find a base address that matches scheme http for the endpoint with binding WSHttpBinding with NO SOLUTION YET
I have a WCF Service (with authentication and authorization) hosting in IIS 7.5 using SSL certification in Windows Server 2008 R2. I got error while running the WCF application with Visual Studio in this server. WCF Test Client gave me this error:…

ozibella
- 21
- 4
2
votes
2 answers
WCF wsHttpBinding "There was no channel that could accept the message with action"
[Update] Solved the Problem by generating a new web.config. Possible error was the second endpoint ("mex"). [Update/]
I have a webservice in IIS.
I'm trying to call a function but i get an errormessage like:
There was no channel that could accept…

Steffen Schindler
- 785
- 7
- 20
2
votes
0 answers
Android ksoap2 WCF wsHttpBinding
I am trying to connect my android application to WCF web service (IIS 6),with
basicHttpBinding everything works OK, but i want it to be more secure so i set the
WCF binding to wsHttpBinding, i understed this is a littele bit tricky on ksoap2,
i am…

Dude
- 887
- 6
- 15
2
votes
2 answers
Is disabling WS-addressing for wshttpbinding without custom binding possible?
I have wcf service supporting basichttpbinding and wshttpbinding. My client is running fine with basichttpbinding but when they try to post their requests using wshttpbinding, It doesn't work unless they include wsa tags in the header, but they…

Emil
- 6,411
- 7
- 62
- 112
2
votes
0 answers
MessageSecurityException - WCF ERROR - An unsecured or incorrectly secured fault was received from the other party
I am working on a WCF Service and Client, both work well if there are in the same machine, with the same Certificate (also if I have one for Client and one for server).
But if I deploy the Service to IIS (as part of a Website) I get a vague error…

user3019680
- 81
- 1
- 2
- 4