Skip to Main Content

Database Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

"not supported"...please support

527177Aug 21 2006 — edited Mar 22 2007
ORA-31020: The operation is not allowed, Reason: Not supported
ORA-06512: at "XDB.DBMS_XMLPARSER", line 395
ORA-06512: at "DEMO.mypackage", line 747
ORA-06512: at line 13

line 747:

xmlparser.setErrorLog(p, dir || '/' || errfile);

using 10.2.0.1 and 10g client , help plz. i have no clue how to parse the dtd. heres the extract of my proc
-----
p := xmlparser.newParser;
-- set some characteristics
xmlparser.setValidationMode(p, true);
xmlparser.setErrorLog(p, dir || '/' || errfile);
xmlparser.setPreserveWhiteSpace(p, TRUE);
xmlparser.setBaseDir(p, dir);
-- parse the input xml file
dbms_output.put_line('Parsing XML document ' || dir || '/' || xmlfile);
--what arguments is this taking anyway
xmlparser.parseDTD(p, dir || '/' || dtdfile, 'icim');
dtd:=xmlparser.getDoctype(p);
xmlparser.setDoctype(p, dtd);
xmlparser.parse(p, dir || '/' || xmlfile);
if xmlparser.getValidationMode(p)=True then
xmlparser.setValidationMode(p, false);
end if;
...
...
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 19 2007
Added on Aug 21 2006
24 comments
6,426 views