在Axy 2012中通过Web服务(应用程序集成框架)访问AX方法的例外情况

时间:2012-12-19 08:54:15

标签: web-services dynamics-ax-2012 aif

Exception in accessing AX method

这里“retrieveCustomerIds”是我尝试从webservice访问的AX方法。

retrieveCustomerIds的定义

[AifCollectionTypeAttribute('return', Types::String), SysEntryPointAttribute(False)]

public List retrieveCustomerIds()
{
List resultSet = new List(Types::String);

CustTable   custTable;
while select custTable

{
    resultSet.addEnd(custTable.AccountNum);
}

return resultSet;
}

1 个答案:

答案 0 :(得分:0)

通过在应用程序配置文件中将SPN更改为空白,我获得了成功。