dbms_xslprocessor.selectsinglenode issue...
According to the specification for dbms_xslprocessor, the third parameter allows a namespace to be passed, but if I pass anything other than null, I get the following error message.
ERROR at line 1:
ORA-31013: Invalid XPATH expression
ORA-06512: at "XDB.DBMS_XSLPROCESSOR", line 652
ORA-06512: at "XDB.DBMS_XSLPROCESSOR", line 685
ORA-06512: at line 252
My call looks like this:
curNode := dbms_xslprocessor.selectSingleNode(rootNode, '/Order','http://ns.oracle.com/AQ/schemas/access');
Does anyone have any suggestions? Is this supported in PLSQL? We are running 9.2.0.5
Thanks in advance.
Brett