I am using Hessian C# client in my project to talk to a Hessian Java server.
using hessiancsharp.client;
String url = "http://127.0.0.1:2000/test";
CHessianProxyFactory factory = new CHessianProxyFactory();
I didn't find a timeout option for the Hessian C# client (unlike the setReadTimeout in the Hessian Java client).
Can anybody help me how can I set time out in Hessian C# client?