DBA Data[Home] [Help]

APPS.XDP_ADAPTER_CORE dependencies on XDP_ADAPTER_CORE_XML

Line 40: RespXML := XDP_ADAPTER_CORE_XML.ConstructRespXML(p_Status => SendResponse.p_Status,

36: is
37: RespXML varchar2(4000);
38: begin
39:
40: RespXML := XDP_ADAPTER_CORE_XML.ConstructRespXML(p_Status => SendResponse.p_Status,
41: p_RespData => SendResponse.p_Message);
42:
43: SendMessage(p_ChannelName => SendResponse.p_ChannelName, p_Command => RespXML);
44:

Line 53: AckXML := XDP_ADAPTER_CORE_XML.ConstructRespXML(p_Status => 'ACK',

49:
50: is
51: AckXML varchar2(4000);
52: begin
53: AckXML := XDP_ADAPTER_CORE_XML.ConstructRespXML(p_Status => 'ACK',
54: p_RespData => NULL);
55:
56: SendMessage(p_ChannelName => SendAck.p_ChannelName, p_Command => AckXML);
57:

Line 70: XDP_ADAPTER_CORE_XML.ConstructControlXML

66: ControlCommandXML varchar2(4000);
67: begin
68:
69: ControlCommandXML :=
70: XDP_ADAPTER_CORE_XML.ConstructControlXML
71: (p_Operation => SendControlCommand.p_Operation,
72: p_OpData => SendControlCommand.p_OpData);
73:
74: TalkToAdapter ( p_ChannelName => SendControlCommand.p_ChannelName,

Line 90: XDP_ADAPTER_CORE_XML.ConstructControlXML

86:
87: begin
88:
89: ControlCommandXML :=
90: XDP_ADAPTER_CORE_XML.ConstructControlXML
91: (p_Operation => SendControlCommand.p_Operation,
92: p_OpData => SendControlCommand.p_OpData);
93:
94: TalkToAdapter( p_ChannelName => SendControlCommand.p_ChannelName,

Line 137: p_Status := XDP_ADAPTER_CORE_XML.DecodeMessage(p_WhattoDecode => 'STATUS',

133: -- dbms_output.put_line('Before SendAck');
134:
135: SendAck(p_ChannelName => ProcessControlCommand.p_ChannelName);
136:
137: p_Status := XDP_ADAPTER_CORE_XML.DecodeMessage(p_WhattoDecode => 'STATUS',
138: p_XMLMessage => l_RespXML);
139:
140: p_ErrorMessage := XDP_ADAPTER_CORE_XML.DecodeMessage(p_WhattoDecode => 'DATA',
141: p_XMLMessage => l_RespXML);

Line 140: p_ErrorMessage := XDP_ADAPTER_CORE_XML.DecodeMessage(p_WhattoDecode => 'DATA',

136:
137: p_Status := XDP_ADAPTER_CORE_XML.DecodeMessage(p_WhattoDecode => 'STATUS',
138: p_XMLMessage => l_RespXML);
139:
140: p_ErrorMessage := XDP_ADAPTER_CORE_XML.DecodeMessage(p_WhattoDecode => 'DATA',
141: p_XMLMessage => l_RespXML);
142:
143: if (p_Operation <> XDP_ADAPTER.pv_opStop) and
144: (p_Status <> pv_AdapterResponseFailure) then

Line 207: ApplXML := XDP_ADAPTER_CORE_XML.ConstructSendXML(

203: p_Response in varchar2)
204: is
205: ApplXML varchar2(4000);
206: begin
207: ApplXML := XDP_ADAPTER_CORE_XML.ConstructSendXML(
208: p_Command => SendApplicationMessage.p_Command,
209: p_Response => SendApplicationMessage.p_Response);
210:
211: TalkToAdapter(p_ChannelName => SendApplicationMessage.p_ChannelName,

Line 260: p_Status := XDP_ADAPTER_CORE_XML.DecodeMessage

256:
257: if ReturnCode = 0 then
258: if PipedMessage is not null then
259:
260: p_Status := XDP_ADAPTER_CORE_XML.DecodeMessage
261: (p_WhattoDecode => 'STATUS',
262: p_XMLMessage => PipedMessage);
263:
264: p_ErrorMessage := XDP_ADAPTER_CORE_XML.DecodeMessage

Line 264: p_ErrorMessage := XDP_ADAPTER_CORE_XML.DecodeMessage

260: p_Status := XDP_ADAPTER_CORE_XML.DecodeMessage
261: (p_WhattoDecode => 'STATUS',
262: p_XMLMessage => PipedMessage);
263:
264: p_ErrorMessage := XDP_ADAPTER_CORE_XML.DecodeMessage
265: (p_WhattoDecode => 'DATA',
266: p_XMLMessage => PipedMessage);
267:
268: l_Timeout := XDP_ADAPTER_CORE_XML.DecodeMessage

Line 268: l_Timeout := XDP_ADAPTER_CORE_XML.DecodeMessage

264: p_ErrorMessage := XDP_ADAPTER_CORE_XML.DecodeMessage
265: (p_WhattoDecode => 'DATA',
266: p_XMLMessage => PipedMessage);
267:
268: l_Timeout := XDP_ADAPTER_CORE_XML.DecodeMessage
269: (p_WhattoDecode => 'TIMEOUT',
270: p_XMLMessage => PipedMessage);
271:
272: if l_Timeout is not null then