0

我从 这里使用 ErrorHandlingProxy 并且有一个 coupla 问题。我注意到 ExceptionHandlingProxyBase 在主线程中执行所有调用。我需要做什么才能在后台初始化和运行?我在表单加载的示例中使用它

private MyServiceProxy _proxy = null;

private void Form1_Load(object sender, EventArgs e)
{
    _proxy = new MyServiceProxy("MyBinding");
}

另外,如果可能的话,我会在不添加服务引用的情况下生成它,有人知道我可以使用哪些开关并手动调用 svcutil 吗?

问候

_埃里克

4

2 回答 2

0

To get the switches for svcutil just type:

svcutil /?

However, we have found that it is better to build the proxy classes from scratch, see:

http://www.dnrtv.com/default.aspx?showNum=122

Note this only works if you have control of both the client and the server.

于 2010-02-07T14:08:56.480 回答
0

这一次似乎无法做到@。 链接文本

于 2010-02-25T18:50:04.507 回答