BookQuery Example XML Response
BookQuery Response message in XML format.
The response message in XML format is shown as follows:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"> <SOAP-ENV:Body> <ns0:BookStore xmlns:ns0="http://www.example.com/xsd/books"> <ns0:Book> <ns0:Title>The Power of Now</ns0:Title> <ns0:Author>Vivek Ranadive</ns0:Author> <ns0:Date>1999</ns0:Date> <ns0:ISBN>0-06-566778-9</ns0:ISBN> <ns0:Publisher>Tibco Software Inc</ns0:Publisher> </ns0:Book> </ns0:BookStore> </SOAP-ENV:Body> </SOAP-ENV:Envelope> Transformed JSON Response for BookQuery Service: { "BookStore": { "Book": [ { "Publisher": "Tibco Software Inc", "ISBN": "0-06-566778-9", "Author": "Vivek Ranadive", "Title": "The Power of Now" } ] } }
Copyright © Cloud Software Group, Inc. All rights reserved.