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
<message> | |
<submitHotelParameters> | |
<submitHotelReview xmlns="http://test.bpel.e4x/sample" > | |
<hotelRequestDetail xmlns=""> | |
<hotelRequestId>007</hotelRequestId> | |
<origin>CMB</origin> | |
</hotelRequestDetail> | |
</submitHotelReview> | |
</submitHotelParameters> | |
</message> |
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 validate="no" name="AssignE4X"> | |
<bpel:extensionAssignOperation> | |
<js:snippet xmlns:js="http://ode.apache.org/extensions/e4x"> | |
<![CDATA[ | |
var xyz = new Namespace('http://test.bpel.e4x/sample'); | |
print("Received Request ID:" + submitHotelReviewRequest.submitHotelReviewParameters.xyz::submitHotelReview.hotelRequestDetail.hotelRequestId); | |
]]> | |
</js:snippet> | |
</bpel:extensionAssignOperation> | |
</bpel:assign> |
Related Links:
https://developer.mozilla.org/en-US/docs/E4X/Processing_XML_with_E4X
http://www.taval.de/publications/INPROC-2009-25/
http://stackoverflow.com/questions/922668/e4x-grab-nodes-with-namespaces