0
votes
1answer
50 views

Default InstanceContextMode in WCF

In WCF, if we don't specify the InstanceContextMode of the ServiceBehaviour specifically, what is the default mode of the following? PerCall PerSession Single Thanks.
7
votes
4answers
8k views

WCF Error “Maximum number of items that can be serialized or deserialized in an object graph is '65536'”

I am receiving the following error on a WCF call: Maximum number of items that can be serialized or deserialized in an object graph is '65536' I've read a ton of forum posts and many of them ...
1
vote
2answers
360 views

Is there a .net equivalent of a Java initialization Servlet?

Is there a .net equivalent of a Java initialization Servlet? While we're at it, the equivalent of a filter? And finally if said thing exists (filters) can these run before/after a request is made to ...
3
votes
1answer
376 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?
0
votes
1answer
2k views

Does implementing IServiceBehavior affect ServiceBehavior attributes?

I have a WCF service. I need to implement IServiceBehavior in my class that implements ServiceContract. I have some some attributes on that class that specify service behavior. I wanted to ask if ...