Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
<endpoints>
  <endpoint id="tf-ax-05" displayName="TF-AX-05" type="DynamicsMobile" protocol="classic" companyName="dev" address="http://taskletfactory.com/DocumentService/Document.svc" default="true"/>
</endpoints>

Parameters:

  • <endpoint> - Contains connection information to a backend. 
    • address = "" - The backend server url.

    • companyName = "" - Company name is only used when logging in to AX, and defines the company to connect to.
    • default = "" - Sets this endpoint as the initially selected endpoint in the app if more than one are defined. 
    • displayName = "" - The name displayed in the settings section for selecting the endpoints in the app, and in the header on every page.
    • id = "" - Must be a unique id describing the endpoint. Used to define where profile specific files are saved on the device.
    • protocol = "" - Protocol id from the protocol section.
    • type = "" - Endpoint server type. Accepted values are listed below. 
      • AX
      • DynamicsMobile
      • NAV
    • <azureConfiguration> - Configuration for a connection to an Azure authenticated backend. 
      • authority = "" - The authority with which the user information must be validated.
      • clientId = "" - Client id defined in the Azure management portal for the given application.
      • returnUri = "" - Return uri defined in the Azure management portal for the given application.
      • serviceName = "" - Service name for Mobile WMS.

...