Will the performance of a WCF service be the same in the following two cases?
- InstanceContextMode set to
PerCall - InstanceContextMode set to
PerSession, and all clients create a new proxy for each call of a service method with closing the proxy after the call (so we have separate session for each call). There are no concurrent calls from one client.
All throttling parameters are set to its defaults. The binding used - netTcp.