I am using the ErrorHandlingProxy from here and had a coupla questions. I noticed that the ExceptionHandlingProxyBase executes all calls in the main thread. What do I need to do to initialize and run in the background? I am using it like in the examples in form load
private MyServiceProxy _proxy = null;
private void Form1_Load(object sender, EventArgs e)
{
_proxy = new MyServiceProxy("MyBinding");
}
Also if possible,I would to generate it without adding a service reference, does anyone know what switches I can use and call svcutil manually?
Regards
_Eric