我在.net中有一个访问GP Web服务的项目,它工作正常。但是,当我从这个项目生成一个DLL并尝试使用此dll从不同的项目运行相同的时,我收到以下消息:System.Web.Services.Protocols.SoapException应用程序遇到未处理的系统异常。有关详细信息,请与系统管理员联系。
我认为这可能是权限问题或类似的问题,但我不确定,这就是客户端的创建方式:
WSHttpBinding binding = new WSHttpBinding();
EndpointAddress ep = new EndpointAddress(new Uri("..."), new UpnEndpointIdentity("..."), (AddressHeader[])null);
DynamicsGPClient wsDynamicsGP = new DynamicsGPClient(binding, ep);