when interacting with AX AIF services to catch the exact Error message this is what you would do in your C# Catch block
catch(FaultException<AifFault> ex)
{
InfologMessage[] infoLogList = ex.Detail.InfologMessageList;
foreach (var info in infoLogList)
{
Console.WriteLine(info.Message);
}
proxy.Abort();
Console.ReadLine();
}
No comments:
Post a Comment