User-2066177896 posted
Hi,
We have a WCF Service hosted in a Windows Service. This Service is consumed by a Web application of ours.
Client A, Client B, Client C, Client D will access this service through our asp.net application.
I have questions about the instancing behavior.
PerCall: would the requests be queued? or would they execute simultaneously? (our WCF Service runs for atleast 3 minutes.)
If Client A calls the service 3-4 times within a short time frame, would they be queued and executed one after another?(In this scenario, we would prefer the requests be queued).
PerSession: would the requests be queued? or would they execute simultaneously? (our WCF Service runs for atleast 3 minutes.)
If Client A calls the service 3-4 times within a short time frame, would they be queued and executed one after another?(In this scenario, we would prefer the requests be queued).
Thanks