JeremyYao commented on issue #634: URL: https://github.com/apache/daffodil-vscode/issues/634#issuecomment-3025133493
@hdalsania, I don't believe this issue is relevant after 1.4.1 The value `${workspaceFolder}/infoset.xml` doesn't exist in package.json A new Daffodil Configuration looks like the following below and doesn't result in infoset errors ```JSON { "version": "0.2.0", "configurations": [ { "request": "launch", "type": "dfdl", "name": "Wizard Config", "schema": { "path": "${command:AskForSchemaName}", "rootName": null, "rootNamespace": null }, "data": "${command:AskForDataName}", "debugServer": 4711, "infosetFormat": "xml", "infosetOutput": { "type": "file", "path": "${workspaceFolder}/target/infoset.xml" }, "tdmlConfig": { "action": "generate", "path": "undefined", "name": "undefined", "description": "undefined" }, "trace": true, "stopOnEntry": true, "useExistingServer": false, "openDataEditor": false, "openInfosetView": false, "openInfosetDiffView": false, "daffodilDebugClasspath": [], "dataEditor": { "port": 6969, "logging": { "file": "${workspaceFolder}/dataEditor-${omegaEditPort}.log", "level": "debug" } }, "dfdlDebugger": { "logging": { "file": "${workspaceFolder}/daffodil-debugger.log", "level": "INFO" } } } ] } ``` Using ${workspaceFolder}/infoset.xml in launch.json doesn't result in an error and the infoset gets output ```JSON { "version": "0.2.0", "configurations": [ { "request": "launch", "type": "dfdl", "name": "Wizard Config", "schema": { "path": "${workspaceFolder}/src/main/resources/com/mitre/jpeg/xsd/jpeg.dfdl.xsd", "rootName": null, "rootNamespace": null }, "data": "${workspaceFolder}/test_images/curious-cat-thumb.jpg", "debugServer": 4712, "infosetFormat": "xml", "infosetOutput": { "type": "file", "path": "${workspaceFolder}/infoset.xml" }, "tdmlConfig": { "action": "generate", "path": "undefined", "name": "undefined", "description": "undefined" }, "trace": true, "stopOnEntry": true, "useExistingServer": false, "openDataEditor": false, "openInfosetView": false, "openInfosetDiffView": false, "daffodilDebugClasspath": [], "dataEditor": { "port": 6969, "logging": { "file": "${workspaceFolder}/dataEditor-${omegaEditPort}.log", "level": "debug" } }, "dfdlDebugger": { "logging": { "file": "${workspaceFolder}/daffodil-debugger.log", "level": "INFO" } } } ] } ``` -- 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: commits-unsubscr...@daffodil.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org