JeremyYao commented on issue #634: URL: https://github.com/apache/daffodil-vscode/issues/634#issuecomment-3058585987
I believe this issue may have been system dependent. On a Ubuntu 24.04 VM, I pulled down https://github.com/apache/daffodil-vscode/commit/4b81015e003453c6ae551f2555869cd83246d200 which was a commit that was made after this issue was made on May 11th 2023. After running some debugging sessions using the following config ```JSON { "version": "0.2.0", "configurations": [ { "request": "launch", "type": "dfdl", "name": "Wizard Config", "program": "${command:AskForProgramName}", "data": "${command:AskForDataName}", "debugServer": 4711, "infosetFormat": "xml", "infosetOutput": { "type": "file", "path": "${workspaceFolder}/infoset.xml" }, "tdmlConfig": { "action": "generate", "name": "${command:AskForTDMLName}", "description": "${command:AskForTDMLDescription}", "path": "${command:AskForTDMLPath}" }, "trace": true, "stopOnEntry": true, "useExistingServer": false, "openHexView": false, "openInfosetView": false, "openInfosetDiffView": false, "daffodilDebugClasspath": "", "dataEditorConfig": { "port": 9000, "logFile": "${workspaceFolder}/dataEditor-${omegaEditPort}.log", "logLevel": "info" } } ] } ``` the issue doesn't seem to appear. Additionally, https://github.com/apache/daffodil-vscode/commit/59fb90c9fb98fcd9817b722bb84e9df18733b806 was the commit that switched the default path from `${workspaceFolder}/infoset.xml` to `${workspaceFolder}/target/infoset.xml` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
