Questions tagged [wcf-binding]

The configuration of encoding, protocol and transport detailing how WCF services and clients communicate with each other. This tag is for both the default system-provided bindings, and custom bindings.

A WCF binding is a combination of encoding, protocol, and transport details used by WCF web services and clients to communicate with eachother. It determines the wire representation of messages exchanged by services and clients.

WCF offers default system-provided bindings for typical combinations, e.g. for typical http or https connections. You can also create custom bindings for your application, detailing non-default options for encoding, transport, and protocol.

References

1642 questions
0
votes
2 answers

Does WCF Polling Duplex Binding exist for non Silverlight clients?

Does WCF Polling Duplex Binding exist for non Silverlight clients?
alex
  • 74,215
  • 9
  • 49
  • 57
0
votes
1 answer

Calling method implemented in WCF service from client with out configuration file

I have a WCF service hosted in dll, I have generated proxy code using SvcUtil.exe, below is my client code, BasicHttpBinding binding = new BasicHttpBinding(); binding.Security.Mode = BasicHttpSecurityMode.None; …
Dev
  • 960
  • 2
  • 15
  • 35
0
votes
1 answer

Is there a comprehensive Java Metro and WCF interoperability website, technique or resource?

I'm looking for a general purpose mapping of WCF configurations, and the appropriate Java Metro configuration. Is there any resource that will assist in correlating the bindings and security options of one to the other?
makerofthings7
  • 60,103
  • 53
  • 215
  • 448
0
votes
0 answers

How can I correct the WSDL when the policy expression's "normalized form was too large"

So - I've been tasked with creating a proxy client to the following service, but I'm having a heck of a time generating a client that's happy with the requirements. The WSDL is located here:…
djbyter
  • 763
  • 8
  • 28
0
votes
0 answers

WCF WebSite not returning JSON (Whereas WCF Service Application does)

I have used VS2012 to create a WCF WebSite (Add->New Web Site-> WCF Service). I want to get the web site to return JSON-formatted data. I edited the Service.cs and IService.cs classes, and edited the web.config to look as follows: using…
whatdoesitallmean
  • 1,586
  • 3
  • 18
  • 40
0
votes
1 answer

Using Session with WCF WS2007FederationHttpBinding (WSFederationHttpBinding)

I can't get my values stored in the WCF session when use WS2007FederationHttpBinding. I've seen this topic Session in WCF not consistent, but it didn't help. Moreover, I don't care about reliable session, I just want to store some info in the…
Lanayx
  • 2,731
  • 1
  • 23
  • 35
0
votes
1 answer

WCF Authentication Binding Errors

I have a WCF Service which also consumes a sharepoint userprofile service. I am getting this error when i try to run the service on IIS. The authentication schemes configured on the host ('IntegratedWindowsAuthentication') do not allow those…
Nanu
  • 3,010
  • 10
  • 38
  • 52
0
votes
1 answer

WCF message authentication with both username and certificate

Long story short: My WCF clients should be able to provide both username and certificate to a service hosted in IIS, where I should use that information to validate requests using a custom policies. Complete story: I have the need to authenticate…
fra
  • 3,488
  • 5
  • 38
  • 61
0
votes
2 answers

WCF Service is not getting the parameter supplied from java application while calling it

I have a WCF service deployed at a certain server. I need to call it through the JAVA application, when i am checking the parameter for this OperationContract is being passed correctly from java side but when i am logging the parameter value in WCF…
SmrutiRanjan
  • 65
  • 1
  • 8
0
votes
1 answer

Support multiple urls for same WCF service (as web url rewrite)

I have a WCF service hosted by IIS. It is documented to programmers as service end point; https://api.company.com/services/soap1 but client must define endpoint https://api.company.com/services/soap1/ Question; How can I support them also without…
Nuri YILMAZ
  • 4,291
  • 5
  • 37
  • 43
0
votes
1 answer

WCF Binding Timeouts for Send,Receive,Open,Close not being recognized

I am not quite sure if I am testing these correctly, but I am trying to determine the impact of one of the Timeouts for (Close,Receive,Send,Open) for the binding on the service. I am programatically setting the values because I prefer it over…
TheJediCowboy
  • 8,924
  • 28
  • 136
  • 208
0
votes
1 answer

WCF NetMessagingBinding and Outgoing Quotas

I'm trying to use WCF and NetMessagingBinding to publish messages into a Windows Service Service Bus Topic and for large messages - at least 603kb - the push operation is throwing the following error: System.ServiceModel.QuotaExceededException: The…
JCS
  • 1,071
  • 2
  • 9
  • 24
0
votes
2 answers

issue with C# wpf binding image

Good day all, I am trying to make a application so that I can do some basic edits on photos. I have binded a collection to a listbox and I can get all my text information to populate but I cant get my image to show. Every example that I see sets the…
chris
  • 78
  • 1
  • 15
0
votes
2 answers

How to set Visibility of Label which is bound to Textbox?

I have three TEXTBOX which are bound to LABEL. When I type something in TEXTBOX then TextBox text value is set to Label. Problem is i want to set Visiblity of LABEL to COLLAPSED when text box is blank and vice versa. how to do it using Visibility…
SHEKHAR SHETE
  • 5,964
  • 15
  • 85
  • 143
0
votes
1 answer

Hosting multiple WCF services with single certificate

I have three different WCF services deployed on server separately in there own application directory under "Default WebSites" in IIS. One of the service is deployed by me and two other services are deployed by some other client. There is a single…
1 2 3
99
100