Dynamics GP Web服务" System.UnauthorizedAccessException"在获取供应商的同时

时间:2016-09-26 20:42:01

标签: c# web-services wcf microsoft-dynamics gp

我正在使用Microsoft Dynamics GP 2013 Web服务来获取所有供应商。但我总是System.UnauthorizedAccessException。 我还添加了用户到Web服务角色分配仍然是同样的问题。 我的代码如下:

DynamicsGPClient gpClient = new DynamicsGPClient();
Context context = GetGPContext();
VendorCriteria criteria = new VendorCriteria()
{
    IsActive = new RestrictionOfNullableOfboolean() { EqualValue = true }
};
VendorSummary[] vendors = gpClient.GetVendorList(criteria, context);

任何帮助都将不胜感激。

由于

0 个答案:

没有答案