我正在使用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);
任何帮助都将不胜感激。
由于