For questions about Windows Communication Foundation (WCF) clients.
I'm connecting to a vendor-supplied web ASMX service and sending a set of data over the wire. My first attempt …
.net wcf web-services timeout wcf-clientI am totally new to WCF so please indicate if you find something that I am doing totally wrong here. …
c# wcf wcf-clientI am trying to configure WCF service with security. I have generated 2 certificates (for server and client side) stored in …
certificate wcf-security wcf-clientHow 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-clientIn our application we are forced to consume several WebServices. In the beginning we used just the "Add Service Reference" …
wsdl wcf-client svcutil.exeright now I have the security node defined like this: <security mode="TransportCredentialOnly"> <transport clientCredentialType="Windows" proxyCredentialType="…
c# wcf wcf-client ntlmI have a web reference to web-service: using (var client = new GetTemplateParamSoapClient("GetTemplateParamSoap")) { TemplateParamsKeyValue[] responsArray = client.GetTemplatesParamsPerId( CtId, tempalteIds.ToArray()); …
c# wcf wcf-clientI need to consume a WCF service based on a (preferably single) wsdl file. The environment is VS-2008 (sp1), and …
wcf wcf-clientI'm calling a WCF service from a WinRT app. The service requires that some headers are set for the authentication. …
c# wcf asynchronous wcf-clientI am adding a WCF custom header with the following code MessageHeader header = MessageHeader.CreateHeader("Key", "ns", "Value"); OperationContext.Current.…
wcf wcf-client