这里“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;
}