I've a SOAP response,
<SOAP-ENV:Envelope
xmlns:SOAP-ENV=""http://schemas.xmlsoap.org/soap/envelope/""
xmlns:SOAP-ENC=""http://schemas.xmlsoap.org/soap/encoding/""
xmlns:functioninvoker=""xalan://com.bil.engine.technical.map.FunctionInvoker"">
<SOAP-ENV:Header></SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:InitatePort
xmlns:m=""http://www.testmap.eu/WSG/uc/"">
<m:RepStatus>
<m:Flag>Y</m:Flag>
<m:Text>OK</m:Text>
</m:RepStatus>
<m:NMB>00489576416</m:NMB>
<m:RequestId>11072016485900163816</m:RequestId>
<m:CSPId>1107</m:CSPId>
<m:GMCId>0001</m:GMCId>
<m:LMCId>0002</m:LMCId>
<m:LCSPId>0002</m:LCSPId>
<m:RejParty>0002</m:RejParty>
<m:Rejcd>058</m:Rejcd>
<m:Result>AEQQM</m:Result>
</m:InitatePort>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
This SOAP response is save as clob in a table. I will convert that clob to xmltype. What I want to know is, how I can defined namespaces, XPATH and other variable to fetch value of the variable defined between path. I will then save these to another table. I'm trying to use XMLTABLE but unable to properly defined its parameters, with this response. ~DK