From: Len S. <le...@wi...> - 2022-04-01 06:01:20
|
I have an XSL stylesheet which accesses files in eXist, e.g.: <xsl:variable name=“file" select="doc('xmldb:exist:///db/file.xml')"/> This runs well when live, but when I debug the XSL code via oXygen, it cannot access the file in existdb. I can work around it not getting the data from the database, but I can’t work around it failing and not executing the rest of my XSL code. What are some methods you all use to debug XSL code that has lines like this via oXygen? The only workaround I found is to comment out that line so I can debug the rest of the code, but I’d love something more graceful. --len |