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
5
votes
1 answer
How to use wsHttpBinding with Message security through a load balancer
I have a load-balanced service that uses Message security:
All…

zimdanen
- 5,508
- 7
- 44
- 89
5
votes
1 answer
How to receive a response from server in WCF reliable messaging after connection cuts
So I created Client/Server WCF. What I want is when I send message to the server from this client and the connection cuts for any reason , client shuts down for example, how could this client get the response when it is availabe again ?
Is it…

Turgut Kanceltik
- 639
- 1
- 8
- 18
5
votes
3 answers
Interesting issue with WCF wsHttpBinding through a Firewall
I have a web application deployed in an internet hosting provider. This web application consumes a WCF Service deployed at an IIS server located at my company’s application server, in order to have data access to the company’s database, the network…

Marko
- 93
- 2
- 5
5
votes
1 answer
Add Header to WCF RequestSecurityToken Message
I'm attempting to set up a client (Web Application) and service (WCF Service) that will communicate using a WSHttpBinding. It appears that in order to use this binding the client sends preliminary messages to set up the channel.
Between the client…

hunda27
- 59
- 5
5
votes
1 answer
Roles.IsUserInRole() not working in WCF using wsHttpBinding and MVC 4
I have the following test setup, all working:
-WCF Application running a MathService.svc, setup to use SimpleMembershipProvider
-MVC 4 Internet App using the default SimpleMembershipProvider
-Membership is:
3 Roles: 'Debug', 'Administrator' and…

Andreas
- 681
- 1
- 8
- 16
4
votes
1 answer
How to restrict access to a WCF service to the local machine when using WSHttpBinding?
I'm using WCF to do inter-process communication on my machine, using WSHttpBinding, and I'd like to restrict the service so only processes on the current machine can call the service. How can I do this?
I would prefer to use NetNamedPipesBinding…

Rory
- 40,559
- 52
- 175
- 261
4
votes
2 answers
WCF - weird error
I have my dll hosted at IIS with wsHttpBinding. I have this weird error happened intermediate.
Well, everything will be restored back normal again when I reset the IIS (iisreset).
I also read this one…

lannyboy
- 467
- 2
- 8
- 20
4
votes
2 answers
WCF: Is using WsHttpBinding interoperable?
As the name states... right now I'm using BasicHttpBinding, but I'm wondering if I can switch to WSHttpBinding and still be interoperable with, for example, Java.

michael
- 14,844
- 28
- 89
- 177
4
votes
2 answers
Calling a WCF WebService in PHP via wsHttpBinding
I have a WCF webservice I can connect to it via basicHttp, but not wsHttp. I try to conenct to it via wshttp via the following:
$service = new SoapClient
("http://service.companyname.local:6666/Service/?wsdl",
array(
"location" =>…

Justin Dearing
- 14,270
- 22
- 88
- 161
4
votes
1 answer
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 project.
I am having wshttpbinding with the following configuration in web.config file.
…

Balaji
- 47
- 1
- 9
4
votes
2 answers
how can i use wsHttpBinding in wcf without using any certificate
I want to use wsHttpBinding in a wcf service, the wsHttpBinding is required to a certificate for security issues, but i want using wsHttpBinding without security, is this applicable?

ha.aj
- 41
- 1
- 2
4
votes
2 answers
Maximum request length exceeded in WCF
I am currently using Wcf application and getting above mentiooned error in Trace Log.
Below is the Web.Config for Wcf Service.

sachin kulkarni
- 2,618
- 7
- 28
- 33
3
votes
2 answers
How can I host a WCF REST service at the service root address (without trailing slash)?
I have a service hosted using wsHttpBinding on an address (the host base address is http://localhost/MyService).
In my contract (IMyService), I have:
[OperationContract]
[WebInvoke(
Method = "GET",
UriTemplate = "/")]
…

Travis
- 2,654
- 4
- 26
- 46
3
votes
1 answer
Secure WCF service in IIS using certificates
I want to secure a service application in WCF 4, using a selfsigned certificate (generated by inetmgr).
But, I can't. When I call a method of the service, I have a MessageSecurityException:
The HTTP request was forbidden with client authentication…

Gabriel
- 879
- 1
- 13
- 33
3
votes
3 answers
How can i import a https webservice (wcf) with Delphi 2010?
I have a problem so i wanna help from you.
There is a webservice and it's url : https://kps.saglik.gov.tr/Services/KPSTestServices.svc
We can import this url on visual studio c# easily, but we couldn't import it on delphi 2010.
Also we have a user…

Delphi2010
- 53
- 1
- 4