Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
we are parsing Correlation identificators from SOAP:Body through policy assertions and store it into CorrelationID element in SOAP:Header (which gets logged into DB with SAM). Is it possible to parse parameters also from SOAP:Header?
<?xml version="1.0" encoding="UTF-8" ?>
<wspolicy Name="wspolicy_schema_correlation_id" xmlns:wsp="http://www.w3.org/ns/ws-policy">
<wsp:ExactlyOne>
<wsp:All>
<tpa:CorrelationID xmlns:tpa="http://types.talend.com/policy/assertion/1.0" type="xpath" name="docID">
<tpaart name="docID" optional="true" xpath="/*/*[local-name()='docID']" />
</tpa:CorrelationID>
</wsp:All>
</wsp:ExactlyOne>
</wspolicy>
<soap:Envelope>
<soap:Header />
<soap:Body>
<docRequest>
<docID>ds4789dsa45</docID>
......
</docRequest>
</soap:Body>
</soap:Envelope>