I am very confused about the DataContract attribute in WCF. As per my knowledge it is used for serializating user defined type like classes. I wrote one class which...
I’m a beginner in WCF, but trying to improve my experience. And on the first step I faced the problem. I created the simplest WCF service. The listing of...
I am doing some profiling on a WCF service that uses EF (System.Data.Entities) to read from a SQL DB. When I spin up multiple parallel clients that hit the...
When I try to serve a WCF service on IIS in a Windows 8 machine, I get the well known error The page you are requesting cannot be served...
This question already has answers here: Parallel foreach with asynchronous lambda (11 answers) Closed 3 months ago. In a metro app, I need to execute a number of WCF...
I am trying to return some JSON from a WCF service. This service simply returns some content from my database. I can get the data. However, I am concerned...
I can’t find the namespace to use for [DataContract] and [DataMember] elements. According to what I’ve found, it seems that adding the following should be enough, but in my...
I’m testing out some WCF services that send objects with Guids back and forth. In my web app test code, I’m doing the following: var responseObject = proxy.CallService(new RequestObject...
I’m trying to get a WCF service running in IIS8 on Windows Server 2012 build 8400. When installing the web role the WCF stuff (under 3.51) wasn’t to be...
I am trying to make a WCF service over basicHttpBinding to be used over https. Here’s my web.config: <!-- language: xml --> <service behaviorConfiguration="MyServices.PingResultServiceBehavior" name="MyServices.PingResultService"> <endpoint address="" binding="basicHttpBinding" bindingConfiguration="defaultBasicHttpBinding"...