The configuration of encoding, protocol and transport detailing how WCF services and clients communicate with each other.
I am using basic HTTP binding. Does anybody know which is the best binding in terms of performance as thats …
wcf-binding performanceI have the following object: public partial class Game { public bool Finished { get; set; } public Guid GameGUID { get; set; } public …
c# .net wcf performance wcf-bindingI am using WCF bindings with streamed transfer mode, for both uploading and downloading binary content to/from a service. …
wcf wcf-binding mtom wcf-streamingI'm currently developing an application that needs to communicate with a webservice on the internet. Internet explorer is until know …
c# wcf wcf-bindingI 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 duplexI have a WCF service that works using basicHttpBinding, I'm trying to configure it to go over https and authenticate …
wcf wcf-binding wcf-securityHow 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-clientI am trying to create a wcf service that returns json. I have some problems with my config file and …
json wcf wcf-binding wcf-restI have a following configuration in my wcf service <endpoint address="" binding="netNamedPipeBinding" contract="WcfWithNamedPipe.IService1" bindingConfiguration="WcfWithNamedPipe.netNamedPipeBinding"&…
.net wcf wcf-binding named-pipes netnamedpipebindingGoal 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