RE: Remote On-Prem Development for customer
Hello @Christopher,
I hope after connecting to the client VPN, you are able to access Business Central Web Client from your local.
As you are able to access the Business Central from your local, then use the Web Client URL in launch.json file and use your VPN username and password to connect to the Instance. Make sure the desired ports are opened in case of development make sure the developer port is opened. To download the symbol make sure your launch.json file should look as follows:
I am expecting your WebClient URL is: http://39.198.145.177/BC170
{
"version": "0.2.0",
"configurations": [
{
"name": "BC170",
"request": "launch",
"type": "al",
"environmentType": "OnPrem",
"server": "http://39.198.145.177/", ---> serverip
"serverInstance": "BC170",
"port": 7049,
"authentication": "UserPassword",
"startupObjectId": 22,
"startupObjectType": "Page",
"breakOnError": true,
"launchBrowser": true,
"enableLongRunningSqlStatements": true,
"enableSqlInformationDebugger": true,
"tenant": "default"
}
]
}