DBA Data[Home] [Help]

APPS.IRC_XML_UTIL dependencies on IRC_XML_UTIL

Line 1: package body irc_xml_util as

1: package body irc_xml_util as
2: /* $Header: irxmlutl.pkb 120.2.12020000.2 2012/07/03 11:57:21 ranchala ship $ */
3: --
4: g_proxy varchar2(255);
5: g_wallet_path varchar2(255);

Line 52: itemValue:=irc_xml_util.valueOf(EventDocument,XPathTag);

48:
49: if (XPathTag is not null and responseAttr is not null) then
50:
51: EventDocument:=Event.getEventData();
52: itemValue:=irc_xml_util.valueOf(EventDocument,XPathTag);
53:
54: wf_engine.setItemAttrText
55: (itemtype => itemtype
56: ,itemkey => itemkey

Line 105: retval:=irc_xml_util.valueOf(xmldoc,xpath);

101: parser:=xmlparser.newParser;
102: xmlparser.parseClob(parser,doc);
103: xmldoc:=xmlparser.getDocument(parser);
104: xmlparser.freeParser(parser);
105: retval:=irc_xml_util.valueOf(xmldoc,xpath);
106: xmldom.freeDocument(xmldoc);
107: return retval;
108: exception
109: when others then

Line 131: retval:=irc_xml_util.valueOf(xmldoc,xpath);

127: parser:=xmlparser.newParser;
128: xmlparser.parseBuffer(parser,doc);
129: xmldoc:=xmlparser.getDocument(parser);
130: xmlparser.freeParser(parser);
131: retval:=irc_xml_util.valueOf(xmldoc,xpath);
132: xmldom.freeDocument(xmldoc);
133: return retval;
134: exception
135: when others then

Line 214: end irc_xml_util;

210: );
211: end if;
212: return retval;
213: end http_get_pieces;
214: end irc_xml_util;