Interview Questions

Friday, July 4, 2014

How to get Configuration Port Number through x++ code (AX 2012)

//Write this code in Job
static void FindPortNumber(Args _args)
{
    Str PortInfo;

PortInfo=strfmt("Port number of AOS IS: %1",int2str(Session::getAOSPort()));

info(PortInfo);

}

No comments:

Post a Comment