How to use XMLType in Configurator extension rule? [message #171154] |
Mon, 08 May 2006 13:56 |
anandm
Messages: 1 Registered: May 2006
|
Junior Member |
|
|
Hi,
I'm a java developer working in the extension rule creation of the Configurator
I need to retrieve a XML document which is stored in the table as an XMLTYPE column, I've used the "xdb.jar" for the XMLType
below is the pseudocode
import oracle.xdb.XMLType;
XMLType xmlDocument = XMLType.createXML(ors.getOPAQUE(1));
Document doc = (Document) xmlDocument.getDOM();
When I try to run the program as a standalone java program it's working (ie - xdb.jar is in my classpath)
When I try to put the xdb.jar inside my extesion rule jar file it's giving "Error" and a message saying contact your Adminstrator
Please give me a solution - How to add external API jars in the configurator extension rule
or
How to retrieve an XML Document from an XMLTYPE column inside the configurator extension
Thanks,
Anand
|
|
|