Home > Contents > Index >
soap:body (Deprecated)
Deprecated as of Oracle WebCenter Sites version 12c.
Syntax
<soap:body [tagname="local_name"] > </soap:body>Parameters
tagname (optional)
- The first child element after the body has this local name. The default value is
CS
.
Description
The
soap:body
tag indicates the main part of a soap message body where user can stream data. The body tag must follow the soap header tag or an error results. The body can contain any legal JSP both in the form of literal data contained in the template and/or emitted by logic coded into the template.Example
This example calls the element
SoapTestOut
.
<soap:body tagname="soaptestOut"> <CS xsi:type="soapresponse:CS"> <ics:listloop listname="RS" maxrows="5"> <headlines xsi:type="soapresponse:headlineStruct"> <id xsi:type="xsd:string"> <ics:listget listname="RS" fieldname="id"/> </id> <headline xsi:type="xsd:string"> <ics:listget listname="RS" fieldname="headline"/> </headline> </headlines> </ics:listloop> </CS> </soap:body>See Also
Home > Contents > Index > ![]()
Oracle JSP Tag Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.