Top "Wcf" questions

Windows Communication Foundation is a part of the .NET Framework that provides a unified programming model for rapidly building service-oriented applications.

Task<> does not contain a definition for 'GetAwaiter'

Client iGame Channel = new ChannelFactory<iGame> ( new BasicHttpBinding ( BasicHttpSecurityMode . None ) , new EndpointAddress ( new Uri ( "http://localhost:58597/Game.svc" ) ) ) . …

c# wcf silverlight-5.0 async-ctp
Sending a JSON HTTP POST request from Android

I'm using the code below to send an http POST request which sends an object to a WCF service. This …

java android json wcf httpurlconnection
The content type application/xml;charset=utf-8 of the response message does not match the content type of the binding (text/xml; charset=utf-8)

I trying to consume a WCF web service using stand alone application. I am able to view this service using …

c# wcf wcf-binding
WCF Service, the type provided as the service attribute values…could not be found

When I right click on Eval.svc within Visual Studio 2012 and view in browser, I get the following - The …

c# wcf wcf-binding
Content Type text/xml; charset=utf-8 was not supported by service

I have a problem with a WCF service. I have a console application and I need to consume the service …

wcf endpoint
WCF Error - Could not find default endpoint element that references contract 'UserService.UserService'

Any ideas how to fix this? UserService.UserServiceClient userServiceClient = new UserServiceClient(); userServiceClient.GetUsersCompleted += new EventHandler<GetUsersCompletedEventArgs>(userServiceClient_GetUsersCompleted); …

c# .net wcf
Reading file input from a multipart/form-data POST

I'm POSTing a file to a WCF REST service through a HTML form, with enctype set to multipart/form-data and …

c# wcf http-post forms
Web Service vs WCF Service

What is the difference between them? When would I opt for one over the other?

wcf web-services
Cannot serve WCF services in IIS on Windows 8

When I try to serve a WCF service on IIS in a Windows 8 machine, I get the well known error …

wcf iis windows-8
When to use DataContract and DataMember attributes?

I am very confused about the DataContract attribute in WCF. As per my knowledge it is used for serializating user …

wcf datacontractserializer datacontract datamember