0

访问 AX 方法的异常

这里“retrieveCustomerIds”是我试图从 web 服务访问的 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;
}
4

1 回答 1

0

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

于 2012-12-19T08:59:10.500 回答