In Apache ODE or WSO2 BPS, if you are looking for a way to asynchronously call back from a BPEL process, after the process is finished, to an reply address dynamically provided in the Request Message with WS-Addressing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<bpel:assign> | |
<bpel:copy> | |
<bpel:from header="ReplyTo" variable="initialRequest"> | |
<bpel:query querylanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath1.0">wsa:Address/text()</bpel:query> | |
</bpel:from> | |
<bpel:to partnerlink="resultPartnerLink" /> | |
</bpel:copy> | |
</bpel:assign> |
You can read more here about Using WS-Addressing in SOAP UI
Hat-tip: From Apache ODE mail archives, Related question from StackOverflow
No comments:
Post a Comment