Debugging Managed Code in Microsoft Dynamics AX
Applies To: Microsoft Dynamics AX 2012 R2, Microsoft Dynamics AX 2012 Feature Pack, Microsoft Dynamics AX 2012
After you create a project in Microsoft Visual Studio and add it to the model store, you can set the project debug properties and use Visual Studio to start debugging your code. Although you start debugging in Visual Studio, some debugging is still done in the Microsoft Dynamics AX Debugger. For more information, see Walkthrough: Using the Debug Properties When Debugging Managed Code.
The debug properties are properties on a managed code project. These properties work together to enable you to debug both X++ code and managed code from Visual Studio. The Debug Target property specifies which Microsoft Dynamics AX process Visual Studio should attach to when you are debugging. The Startup Element property specifies the X++ code that will be called by the debugger after it attaches to the Microsoft Dynamics AX process.
The Debug Target property enables you to designate which Microsoft Dynamics AX process Visual Studio should attach to when you debug.
When this property is set to Client, the debugger attaches to the process Ax32.exe.
When this property is set to Server, the debugger attaches to the process Ax32Serv.exe.
When this property is set to SSRS, the debugger attaches to the process ReportingServicesService.exe.
Note
If you do not set the Debug Target property, you must manually attach Visual Studio to the correct process.
The Startup Element property enables you to specify a Microsoft Dynamics AX job, menu item, class, or form that will run after Visual Studio attaches to the appropriate process.
You can manually modify the Startup Element property by providing the path of the application element in the Application Object Tree (AOT), or you can right-click an element in Application Explorer and select Set as startup element.
The following table lists the elements that you can specify in the Startup Element property:
Property Value |
Description |
---|---|
Class |
|
Job |
|
Menu Item |
|
Form |
|
When debugging Microsoft Dynamics AX managed code from Visual Studio, here are some things to consider.
When you manually attach Visual Studio to the Microsoft Dynamics AX process, you should select the fields Show processes from all users and Show process in all sessions to make sure that that both the client and server processes appear.
When you debug managed code that runs on the server, you must attach to the server process Ax32Serv.exe. To attach the Visual Studio Debugger to the Microsoft Dynamics AX server process, you must open Visual Studio with administrator credentials.
When you use Visual Studio to debug any code that runs in Common Intermediate Language (CIL), make sure that the Enable Just My Code field is cleared. To find this field in Visual Studio, click Tools > Options > Debugging.
Walkthrough: Using the Debug Properties When Debugging Managed Code