ERROR WHILE DOWNLOADING SYMBOLS - WAVE 2 - SaaS

Receiving the below error when try to download Symbols on Saas Envirnoment

Error:A task was Cancelled.


Launch.Json File
{
"version": "0.2.0",
"configurations": [
{
"type": "al",
"request": "launch",
"name": "Microsoft cloud sandbox",
"startupObjectId": 22,
"tenant": "xxxxxx-xxx-xxx-xxxxxx",
"startupObjectType": "Page",
"breakOnError": true,
"launchBrowser": true,
"enableLongRunningSqlStatements": true,
"enableSqlInformationDebugger": true,
"numberOfSqlStatements": 30
}
]
}

App.Json
{
"id": "6a3dc13a-6f0a-4f33-8bef-8fd770a068cb",
"name": "PO",
"publisher": "Default publisher",
"version": "1.0.0.0",
"brief": "",
"description": "",
"privacyStatement": "",
"EULA": "",
"help": "",
"url": "",
"logo": "",
"dependencies": [
{
"appId": "xxxxxxxxxxxxxxxxxxx",
"publisher": "Microsoft",
"name": "System Application",
"version": "1.0.0.0"
},
{
"appId": "xxxxxxxxxxxxxxxxxxx",
"publisher": "Microsoft",
"name": "Base Application",
"version": "15.0.0.0"
}
],
"screenshots": [],
"platform": "15.0.0.0",
"idRanges": [
{
"from": 50100,
"to": 50149
}
],
"contextSensitiveHelpUrl": "https://PO.com/help/",
"showMyCode": true,
"runtime": "4.0"
}

Kindly let me know.

Answers

  • My app.json file has version 15 for the system application.

    "appId": "63ca2fa4-4f03-4f2b-a480-172fef340d3f",
    "name": "System Application",
    "publisher": "Microsoft",
    "version": "15.0.0.0"
    Kyle Hardin - ArcherPoint
  • [Topic moved from 'NAV/Navision Classic Client' forum to 'NAV Three Tier' forum]

    Regards,Alain Krikilion
    No PM,please use the forum. || May the <SOLVED>-attribute be in your title!


  • rsrnav
    edited 2020-02-21
    Changed Version for System application to 15.0.0.0

    "appId": "63ca2fa4-4f03-4f2b-a480-172fef340d3f",
    "name": "System Application",
    "publisher": "Microsoft",
    "version": "15.0.0.0"

    still not able to download symbols ,same Error:A task was Cancelled.
  • Did anyone got same error?
  • Are you sure your container is working? Can you download the VSIX from it? Does the web client work?
    Kyle Hardin - ArcherPoint
  • Yes webclient working
  • Don't put the port in launch.json, at least not in the server URL. The developer port and the web client port are different. Try not having a port at all

    "server": "http://10.10.0.24",

    And if that doesn't work, put the port on another line

    "server": "http://10.10.0.24",
    "port": 13069,

    But again, the developer port (where it publishes code and downloads symbols) is different from the web client port. So if this second option doesn't work, try both:


    "server": "http://10.10.0.24:13069",
    "port": <correct developer port>,

    https://docs.microsoft.com/en-us/dynamics365/business-central/dev-itpro/developer/devenv-json-files
    Kyle Hardin - ArcherPoint
  • One other thought - pay close attention to the Output box in Visual Studio Code. That will show the exact URLs it is trying to use for downloading symbols, and you can see the ports there. Paste that output here if you can't get it work.
    Kyle Hardin - ArcherPoint
  • If you have recently updated Windows (February 2020 update), then it could be the cause. To resolve it, in your "New-NavContainer" command you need to add "-isolation hyperv" parameter or "-useBestContainerOS" and update the "navcontainerhelper" module.

    You can read all the dirty details about it on Freddy's blog.