Versions Compared

Key

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

...

(This should be OK – because the sandbox was only created for the purpose of debugging and should be deleted afterwards)

 

Debug Mobile/SOAP

...

Username must match  

You must Log in to Mobile WMS, with the same Username as VS Code publishPublish/attaches attaches to Sandbox


Hint:

In VS Code you can search for the specific version TAG and create a local branch from there. Open a TAG just like you open any other branch in VS Code.

...

Example of Launch.json file for “Attach” debugging:


{

    "version": "0.2.0",

    "configurations": [

        {

            "name": "Microsoft cloud sandbox",

            "request": "attach",

            "type": "al",

            "environmentType": "Sandbox",

            "environmentName": "NameOfYourSandbox",                      

            "breakOnError": true,  

            "breakOnNext": "WebServiceClient",          

            "enableLongRunningSqlStatements": true,

            "enableSqlInformationDebugger": true,

            "tenant": "taskletfactory.onmicrosoft.com"

        }

    ]

}



Example of Launch.json file for “Launch” debugging:

{

    "version": "0.2.0",

    "configurations": [

        {

            "name": "Microsoft cloud sandbox",

            "request": "launch",

            "type": "al",

            "environmentType": "Sandbox",

            "environmentName": " NameOfYourSandbox ",            

            "breakOnError": true,

            "launchBrowser": true,

            "enableLongRunningSqlStatements": true,

            "enableSqlInformationDebugger": true,

            "tenant": "Taskletfactory.onmicrosoft.com"

        }

    ]

}