I have WCF service which contains 3 opearations
- Authentication
- logAuthentivationTimeout
- CalculateMonthlyData
I am consuming this web serice from my WPF application. I need to set different time out for the different functions. Is this possible?
I need to set the time out for Authentication
operation from the WPF application itself.
Authentication
operations needs to timeout the operation if it exceeds 30 seconds. But the CalculateMonthlyData
must need to wait at least 4 minutes to timeout the operation.
How can I do this? Please suggest a best approach.