Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Misc Newsgroups > Indigo

Vista - WCF throttling

 
 
Old 07-24-2007   #1 (permalink)
arnold park


 
 

WCF throttling

Hi~.

I've developed wcf service and its configurations settings like these.



Host: iis 6.0

binding: wsHttpBinding

web.config

<reliableSession enabled ="false" />

<serviceThrottling maxConcurrentCalls="2" maxConcurrentInstances="2"
maxConcurrentSessions ="2" />



service Code:

[ServiceContract(SessionMode=SessionMode.NotAllowed)]

[ServiceBehavior(ConcurrencyMode = ConcurrencyMode.Single,
InstanceContextMode=InstanceContextMode.PerCall)]



and in my client, it calls service method like this.



try{

proxy.Divide(1,1);

proxy.Divide(1,0); // causes divideByZeroException in the service Code

}catch(Exception ex){

proxy.Abort();

}



When i execute client program , the first 3 client call the service's method
normally.

But the fourth client's call is blocked. why is that?

i know that if i increase throttling settings or just call to proxy.close();
will solve this

problem.

What i want to know is what blocks my client's call?

because my service do not use session, maxConcurrentSessions=2 setting would
not bother client's call and Raw .net Exception - in my case
DivideByZeroException-would kill service instance, maxConcurrentInstances="2"
shouldn't be the problem.



please let me know!! thanks



My System SpecsSystem Spec
 

Thread Tools


Similar Threads
Thread Forum
[question] network throttling? Network & Sharing
Google tool unmasks ISP throttling Vista News
Vista and Bandwidth Throttling Vista networking & sharing
Memory Throttling? Vista performance & maintenance


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46