Reserve Microsoft Dynamics NAV Web Service URL

Microsoft Dynamics NAV communicates with the database through the Microsoft Dynamics NAV Server service.

To configure environment for Microsoft Dynamics NAV web services:

Use Netsh.exe to run the following commands (note that this command is case sensitive).

NOTE

In the commands below the default port number on which the SOAP web service is running (7047) and the name of the Microsoft Dynamics NAV Server instance are used. If the SOAP web service is running on the other port and the other Microsoft Dynamics Server instance name is used it should be specified instead of the default ones.

Step 1: Delete any entries that use your host name and web service port by running the following command:

Copy
netsh http delete urlacl url=http://+:7047/

Step 2: Register the port by running the following command:

Copy
netsh http add urlacl url=http://+:7047/DynamicsNAV70 user=DomainName\USER

NOTE

Replace the DomainName\USER tag with your domain name and the name of the user that is running the web service.
By default the command looks the following way:

Copy
netsh http add urlacl url=http://+:7047/DynamicsNAV70 user="NT AUTHORITY\NetworkService"