Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
1k views

Setting WCF InstanceContextMode (Per Call, Single) in web.confg

Haven't come across this one with quite a bit of Googling. I know I can set the instance by decorating the class name thus: [ServiceBehavior(InstanceContextMode = InstanceContextMode.PerCall, ...
2
votes
1answer
24 views

How do I configure a WCF service to run with PerCall instance context?

Here's the background info. I have a WCF service configured like so [ServiceBehavior(InstanceContextMode = InstanceContextMode.PerCall)] Now I need some help understanding exactly how this ...
2
votes
1answer
307 views

How many instances exists when a InstanceContextMode.Single WCF service exposes multiple endpoints?

Does the ServiceBehavior setting InstanceContextMode.Single sets a single instance regardless of the number of endpoints?
2
votes
1answer
741 views

WCF InstanceContextMode

I have a web application uses a proxy to invoke an operation on a WCF Service that returns data from an AS400, like the different Sales Regions associated with our companies, the different stores we ...
1
vote
1answer
312 views

Managing a Linq to SQL Datacontext in a WCF service using a DataContextFactory

I've been using Rick Strahl's DataContextFactory code (Linq to SQL DataContext Lifetime Management) in a data layer consumed by an ASP.Net application. It works great because the current datacontext ...
0
votes
0answers
31 views

wcf odata w3wp memory use with PerCall instance mode

Im just trying to tune our odata providor. I find the w3wp process seems to creep up slowly everytime a user makes a call on the odata wcf service. The instance mode is set to PerCall so i would hope ...
0
votes
1answer
43 views

Workflow 4 Service Application and InstanceContextMode & ConcurrencyMode

The question is pretty simple: how do you set InstanceContextMode & ConcurrencyMode in WF4 WCF Workflow Service Application?
0
votes
0answers
168 views

WCF Chunking : Use Session.IsInitiating/Session.IsTerminating or put xml metadata in MesageHeader?

Like so many others I want to exchange large files and meta data using WCF. I've come across the chunking example from Microsoft http://msdn.microsoft.com/en-us/library/aa717050.aspx#CommunityContent. ...
0
votes
0answers
64 views

First Request Message in wcf service

I had to check permissions when wcf service is loading. I do it with IDispatchMessageInspector - whice provide 2 method: AfterReciveRequest and BeforeSendReply. I noticed that the method ...