Top "Wcf-client" questions

For questions about Windows Communication Foundation (WCF) clients.

.NET Web Service (asmx) Timeout Problem

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-client
How to add service reference in client project?

I am totally new to WCF so please indicate if you find something that I am doing totally wrong here. …

c# wcf wcf-client
Exception: The client certificate is not provided

I am trying to configure WCF service with security. I have generated 2 certificates (for server and client side) stored in …

certificate wcf-security wcf-client
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
Problem with generating WebService proxy using svcutil

In our application we are forced to consume several WebServices. In the beginning we used just the "Add Service Reference" …

wsdl wcf-client svcutil.exe
How to force a .net WCF client to use NTLM in an basicHttpBinding?

right now I have the security node defined like this: <security mode="TransportCredentialOnly"> <transport clientCredentialType="Windows" proxyCredentialType="…

c# wcf wcf-client ntlm
How to make your Service-Reference proxy URL dynamic?

I have a web reference to web-service: using (var client = new GetTemplateParamSoapClient("GetTemplateParamSoap")) { TemplateParamsKeyValue[] responsArray = client.GetTemplatesParamsPerId( CtId, tempalteIds.ToArray()); …

c# wcf wcf-client
How can I consume a WCF service using a local WSDL file?

I need to consume a WCF service based on a (preferably single) wsdl file. The environment is VS-2008 (sp1), and …

wcf wcf-client
Async WCF client calls with custom headers: This OperationContextScope is being disposed out of order

I'm calling a WCF service from a WinRT app. The service requires that some headers are set for the authentication. …

c# wcf asynchronous wcf-client
How to add attribute to WCF message header with MessageHeader.CreateHeader() method?

I am adding a WCF custom header with the following code MessageHeader header = MessageHeader.CreateHeader("Key", "ns", "Value"); OperationContext.Current.…

wcf wcf-client