Top "Wcf-binding" questions

The configuration of encoding, protocol and transport detailing how WCF services and clients communicate with each other.

WCF Binding Performance

I am using basic HTTP binding. Does anybody know which is the best binding in terms of performance as thats …

wcf-binding performance
Performance Tests of Serializations used by WCF Bindings

I have the following object: public partial class Game { public bool Finished { get; set; } public Guid GameGUID { get; set; } public …

c# .net wcf performance wcf-binding
Streaming with WCF and MTOM

I am using WCF bindings with streamed transfer mode, for both uploading and downloading binary content to/from a service. …

wcf wcf-binding mtom wcf-streaming
WCF client with proxy settings set to "Use automatic configuration script"

I'm currently developing an application that needs to communicate with a webservice on the internet. Internet explorer is until know …

c# wcf wcf-binding
Getting an error: Contract requires Duplex, but Binding 'BasicHttpBinding' doesn't support it or isn't configured properly to support it

I have a WCF service and a Silverlight 5 client. I've defined the following interfaces: [ServiceContract(Namespace = "Silverlight", CallbackContract = typeof(IDuplexClient))] …

c# wcf silverlight wcf-binding duplex
Configuring WCF for wsHttpBinding

I have a WCF service that works using basicHttpBinding, I'm trying to configure it to go over https and authenticate …

wcf wcf-binding wcf-security
Configure WCF service client with certificate authentication programmatically

How do i setup a ServiceClient using Certificate authentication programmatically in c#? And i don't want to use .config. using(…

c# wcf wcf-security wcf-binding wcf-client
WCF and JSON binding

I am trying to create a wcf service that returns json. I have some problems with my config file and …

json wcf wcf-binding wcf-rest
How to host net named pipe binding enabled wcf application in iis?

I have a following configuration in my wcf service <endpoint address="" binding="netNamedPipeBinding" contract="WcfWithNamedPipe.IService1" bindingConfiguration="WcfWithNamedPipe.netNamedPipeBinding"&…

.net wcf wcf-binding named-pipes netnamedpipebinding
Is it possible to make the WcfTestClient work for custom transport channels?

Goal I would like to be able to both host and connect to a vanilla sockets server via WCF, within …

c# .net wcf interface wcf-binding