how do i grab a file accross the network with brackets in the name? i.e.
fn:doc("file:////machine/folder/folder2/fi[le]1.xml")
fn:encode-for-uri() tries to grab locally
escape-uri function is not an option because its been dropped.
thanks
how do i grab a file accross the network with brackets in the name? i.e.
fn:doc("file:////machine/folder/folder2/fi[le]1.xml")
fn:encode-for-uri() tries to grab locally
escape-uri function is not an option because its been dropped.
thanks
ok to prevent from grabbing locally do this
fn:doc(concat("file:/",fn:encode-for-uri("//machine/folder/fi[le]1.xml")));
this prevents from going automatically local