我正在尝试访问 Web 服务并调用方法来传递我的请求参数。我正在以编程方式设置我的凭据,使用:
service.Credentials =
new NetworkCredential("username", "password", "domain_url");
在上面的代码中,我通过了domain_url
,我得到了这个 Web 异常,
Unable to automatically step into the server. Connecting to the server machine "ServerUrl" failed. Invalid access to memory location.
当我不通过时domain_url
:
service.Credentials = new NetworkCredential("username", "password");
它不会抛出 Web 异常,而是抛出 Soap 异常,仅显示“内部错误”而没有错误代码。
为什么会这样?