Latest web development tutorials

SOAP Body 요소

필수 SOAP 본체 요소는 실제 SOAP 메시지가 포함되어 있습니다.


SOAP Body 요소

SOAP 바디 요소는 메시지의 최종 포인트를위한 실제 SOAP 메시지를 포함 할 필요.

는 SOAP Body 요소의 직계 자식 요소는 네임 스페이스 자격이 될 수있다.

<?xml version="1.0"?>
<soap:Envelope
xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">

<soap:Body>
<m:GetPrice xmlns:m="http://www.w3schools.com/prices">
<m:Item>Apples</m:Item>
</m:GetPrice>
</soap:Body>

</soap:Envelope>

위의 예는 사과의 가격을 요청합니다. 그 위의 m를 참고 : GetPrice 및 항목 요소는 응용 프로그램 별 요소입니다. 그들은 SOAP 표준의 일부가 아닙니다.

그리고 SOAP 응답은 다음과 같이한다 :

<?xml version="1.0"?>
<soap:Envelope
xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">

<soap:Body>
<m:GetPriceResponse xmlns:m="http://www.w3schools.com/prices">
<m:Price>1.90</m:Price>
</m:GetPriceResponse>
</soap:Body>

</soap:Envelope>