Tags
AIF, Application Integration Services, Automation, AutoRun, AX, AX 2012, AX Services, Dynamics AX, PowerShell
The Refresh-AXAifPort custom PowerShell function is very useful if you have customized AIF services. It will allow you automatically push modifications to these services when you run it after Refresh-AXServices.
This is the first PowerShell function that I’ve published that requires AX code to work. This function calls a custom Class\Static Method called D2DAutoRunHelper::AifPortRefresh(). This class automates the steps available from the AifInboundPort form.
The D2DAutoRunHelper class is available in Codeplex as an .xpo. It must be imported into your environment for this PowerShell function to work. The steps of the AifPortRefresh function are:
- deactivates the port specified using the AIFPort parameter
- removes all of the service class operations specified by the ServiceClass parameter
- re-adds all existing operations minus the operations passed in the DisabledOperations parameter
- disables then re-enables all fields minus the fields passed in the DisabledFields parameter
- marks any fields required that are passed in the RequiredFields parameter
- reactivates the port specified using the AIFPort parameter
Some things to be aware of:
- you can’t disable a field that is required by the design of the service
- you don’t need to mark required any fields that are required by the design of the service
- for most services, you won’t need to pass DisabledOperations, DisabledFields or RequiredFields parameters as it will automatically deploy a service based on the design that exists in the AOT
- the XPath value for fields should be used in the “Fields” parameters separated by commas (no spaces)
The Refresh-AXAifPort function takes between 1 and 12 parameters:
- ConfigPath (Client configuration for the chosen AX environment)
- LogFile (The value defaults to the temp folder but can be overridden if desired)
- TimeOut (The value defaults to 30 minutes but can be overridden if desired)
- AIFPort (The name of the AIF inbound port where the service is deployed)
- ServiceClass (The name of the service class that is being exposed)
- DisabledOperations (A comma delimited list of operations that aren’t exposed)
- DisabledFields (A comma delimited list of fields that aren’t enabled)
- RequiredFields (A comma delimited list of fields that are required)
- SMTPServer (SMTP server to use to send the email)
- MailMsg (Net.Mail.MailMessage object used to send the email)
- AXVersion (The AX version. It defaults to 6.)
- VariablePath (Path to a file used to default the parameters/variables)
I use the VariablePath parameter the same way that I do in the other functions I’ve posted that use it. This function can be found in Codeplex. The steps of this function are:
- Load the variables if a VariablePath parameter is used
- Get the AX environment info using Get-AXConfig
- Get the D2DAutoRunHelper::AifPortRefresh AutoRun xml using the Get-AXAutoRunXML function
- Call the Start-AXAutoRun function to re-deploy the service
This function is being released as a stand-alone function as well as part of the 1.0.3 release of the D2DDynamics module. The 1.0.3 release also includes a change to the Restore-AXDatabase function and Build-AXModel_Variables.ps1 to change the timeout parameter to use minutes like every other function in the module does.
This function should also only be run on the AOS server. It has been tested using AX 2012 R2 CU7 but will probably work for other versions.