JeremyYao commented on PR #1324: URL: https://github.com/apache/daffodil-vscode/pull/1324#issuecomment-3069552122
Using the following launch.json config and files (https://github.com/DFDLSchemas/GIF/blob/master/src/main/resources/com/mitre/gif/xsd/gif.dfdl.xsd and https://tenor.com/view/shaquille-o-neal-cat-shake-shaking-wiggle-gif-4628548) ```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": "C:/repos/skibidi_ohio", "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" } } } ] } ``` I'm getting this error message that references an invalid TDML path. <img width="510" height="143" alt="image" src="https://github.com/user-attachments/assets/76a1e20b-24fd-4f42-aaf1-8fc5c0600d86" /> Note: The path specified in tdmlConfig doesn't exist. I also went ahead and tried to see if the error would occur if I had a path that didn't exist: ```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": "C:/repos/skibidi/skibidi_ohio" }, "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" } } } ] } ``` and the infoset file generated just fine. +1 -- 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]
