There is a .NET remoting service that usually takes a longer time. When a client makes an async request to the service and when client times out, I need to terminate the execution of server call. How do I do it ?
Current service mode: Singleton
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I think there isn’t a way, unless you can abort the TCP channel. Best to use an async delegate and abort that.