Posts

Showing posts from April, 2014

How to run .exe files in AX

Today I will demonstrate you that how to call .exe files in AX 2012 through code. static void Job2(Args _args) { WinAPI::shellExecute("C:\\Users\\calc.exe"); } Note:- WinAPI::shellExecute() is the class and method through which we can execute any .exe file in AX.

Basic Ports in AX 2012

Today I will provide you document in which I mentioned how to create basic port and do communication with VS windows application in AX 2012. How to create Basic Port. Happy Daxing.. :)

External Web Service in AX

Today I will provide you document in which I mentioned how to call external web service in AX 2012. External Web Service