Hello,

Congrats on the BaseX 11.9 release!

Installed it, and started to run my XQuery tests.
Right away I got the following error: 
"Property 'http://www.oracle.com/xml/jaxp/properties/entityExpansionLimit'
is not recognized."

Both doc() and collection() are tripping on it.
A full repro is below.

XQuery #1
=============================================
declare variable $base_dir as xs:string := 'e:\Temp\';

for $docx in collection($base_dir)
return $docx

XQuery #2
=============================================
declare variable $base_dir as xs:string := 'e:\Temp\';

for $file in file:list($base_dir, false(), 'books*.xml')
let $docx := doc($base_dir || $file)
return $docx


Regards,
Yitzhak Khabinsky


Reply via email to