I followed the tutorials and added a configuration to launch.json, below is my launch json and I start the debugger and it says: Debugger will attach to the next session of type WebServiceClient.
However, the debugger never enters into that breakpoint... I go into admin dashboard: environment - sessions...
but I dont see the session representing the WebServiceClient type onto which the debugger is supposed to attach itself...
A.
{
"version": "0.2.0",
"configurations": [
{
"name": "Attach: Microsoft cloud sandbox",
"type": "al",
"request": "attach",
"environmentType": "Sandbox",
"environmentName": "Example",
"breakOnError": true,
"breakOnRecordWrite": false,
"longRunningSqlStatementsThreshold": 500,
"numberOfSqlStatements": 10,
"breakOnNext": "WebServiceClient"
},
{
"name": "Microsoft cloud sandbox",
"request": "launch",
"type": "al",
"environmentType": "Sandbox",
"environmentName": "Example",
"tenant": "123ertghj-9999-xxxx-xxxx-yyyyyyyyyyy",
"startupObjectId": 22,
"startupObjectType": "Page",
"breakOnError": "All",
"launchBrowser": true,
"schemaUpdateMode": "ForceSync"
}
]
}