这里“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;
}
答案 0 :(得分:0)
通过在应用程序配置文件中将SPN更改为空白,我获得了成功。