Debugging tips and small examples for WCF
Browse by Tags
All Tags »
WCF (RSS)
-
Recently I had to implement an asynchronous operation which would in turn call another asynchronous operation (i.e., cascading async operations). For simple cases, when there's no intermediate processing in the middle of the chains (i.e., no new state Read More...
|
-
I've seen quite a few times in the forums people asking how to control exactly how the data returned by a WCF service. People want to use a certain format for the output of the data which isn't (natively) supported by WCF, such as XML or JSON. A few examples Read More...
|
-
In order for a Silverlight (or Flash) app coming from one domain to be able to consume data from services in a different domain, the service must "allow" the app to do so by providing a policy file which grants access (to prevent all sorts of cross-site Read More...
|
-
Quite often one needs to talk to a WCF service, but using a (WCF) proxy is not a viable alternative. Sometimes the language used isn't a .NET one, the client might not have the .NET framework installed, or the overhead of the proxy is too big for the Read More...
|
-
When looking at a problem posted at the WCF forums ( http://forums.microsoft.com/MSDN/ShowForum.aspx?ForumID=118&SiteID=1 ), I usually try to set up a local reproduction of the issue to understand what is going on. One thing that helps me the most Read More...
|
-
There are some service settings which cannot be defined via config, only via code. If the service is hosted in a stand-alone application (via the ServiceHost class), this is not a problem - the host object is available, and from there one could use the Read More...
|