DotNetShoutout - Stories tagged with WCF 3.5.
13
Shouts

Tweaking WCF to build highly scalable async REST API

published 660 days, 11 hours, 23 minutes ago posted by oazabiroazabir 663 days, 14 hours, 33 minutes ago
Wednesday, August 03, 2011 7:53:16 PM GMT Sunday, July 31, 2011 4:43:12 PM GMT
You can build async REST API using WCF but due to some bug in WCF implementation it does not scale as you would want it to. Here's my journey with Microsoft's WCF team to explore the problem and find the right fix. (more)
category: Web Dev | clicked: 63 | comment | | source: www.codeproject.com
tags: WCF 3.5., Performance, Scalability, REST
4
Shouts

sample program in wcf for Beginners

published 835 days, 17 hours, 48 minutes ago posted by taanu51taanu51 837 days, 17 hours, 14 minutes ago
Wednesday, February 09, 2011 1:28:37 PM GMT Monday, February 07, 2011 2:02:55 PM GMT
Hi, In this article i would like to explain a sample program for wcf Beginners First, open the Microsoft visual studio 2008 and select a WCF Service Application and change the name as NewWcf and click OK Button Next,open the service.svc.cs file add the following code using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.ServiceModel; using System.Text; namespace NewWCF {     // NOTE: If you change the ... (more)
category: Web Dev | clicked: 5 | 1 comment | | source: taanu51.blogspot.com
tags: c sharp, WCF 3.5., WCF, C# .NET
2
Shouts

3 ways to do WCF instance management (Per call, Per session and Single)

posted by questpondquestpond 1083 days, 14 hours, 58 minutes ago
Sunday, June 06, 2010 4:18:25 PM GMT
Many times we would like to control the way WCF service objects are instantiated on WCF server. You would like to control how long the WCF instances should be residing on the server. WCF framework has provided 3 ways by which we can control the WCF instance creation. In this article we will first try to understand those 3 ways of WCF service instance control with simple code samples of how to achieve them. Finally we will compare when to use under what situations. (more)
category: Web Dev | clicked: 1 | comment | | source: www.codeproject.com
tags: WCF 3.5.