How to limit a request execution time of WCF service?
Posted
by Kamarey
on Stack Overflow
See other posts from Stack Overflow
or by Kamarey
Published on 2010-05-31T13:47:57Z
Indexed on
2010/05/31
13:53 UTC
Read the original article
Hit count: 176
Is there something in WCF configuration that defines a timeout for executing a request at service side? E.g. WCF service will stop executing request after some time period. I have a service which make some work depending on client input. In some cases a such call may take too much time. I want to limit the execution time of such requests on service side, not client one using SendTimeout. I know about OperationTimeout property, but it doesn't abort the service request, it just tells a client that the request is timed out.
© Stack Overflow or respective owner