jw3 / example-daffodil-vscode

A VS Code extension for DFDL with Daffodil
Apache License 2.0
2 stars 3 forks source link

Failed to launch 0.4 #15

Closed arosien closed 3 years ago

arosien commented 3 years ago

I installed v0.4 of the extension locally, and used the provided launch.json:

...
{
  "type": "dfdl",
  "request": "launch",
  "name": "Debug JPEG",
  "program": "${workspaceFolder}/jpeg.dfdl.xsd",
  "data": "${workspaceFolder}/works.jpg",
  "stopOnEntry": true,
  "trace": false,
  "debugServer": 4711
}

At the Daffodil version prompt I enter 3.1.0 but then I get a popup error dialog that says

Unexpected HTTP response: 404

I can't find any other output. Any ideas?

jw3 commented 3 years ago

The version there is for the debugger backend, so use 0.0.5 for the latest.

shanedell commented 3 years ago

@arosien you need to enter in the release version you wish to use from the example-daffodil-debug so any release version out of on that repo should be good.

Expected input is either something like 0.0.5 or v0.0.5.

Hope this helps.

arosien commented 3 years ago

@Shanedell oh, the example-daffodil-debug version! OOPS. Thanks!