SOAP Body 요소
SOAP 바디 요소는 메시지의 최종 포인트를위한 실제 SOAP 메시지를 포함해야 합니다.
SOAP Body 요소의 직계 자식 요소는 네임 스페이스 자격이 될 수 있습니다.
아래 예시는 사과의 가격을 요청합니다.
접두사 m를 참고 : GetPrice 및 항목 요소는 응용 프로그램 별 요소입니다.
이 요소들은 SOAP 표준의 일부가 아닙니다.
1
2
3
4
5
6
7
8
9
10
11
12
|
<?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:Item>Apples</m:Item>
</m:GetPrice>
</soap:Body>
</soap:Envelope>
|
cs |
그리고 SOAP 응답은 다음과 같습니다.
1
2
3
4
5
6
7
8
9
10
11
12
|
<?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:Price>1.90</m:Price>
</m:GetPriceResponse>
</soap:Body>
</soap:Envelope>
|
cs |
'IT기술 > xml' 카테고리의 다른 글
[Soap] xml 웹서비스, Soap 방식 총정리 (0) | 2023.06.09 |
---|---|
[JAVA] map 맵 hashmap 사용 방법 - linkedhashmap, hashtable 설명 (0) | 2023.05.09 |
[Soap] 문법 (0) | 2023.04.03 |
XML 특수문자 변환 정리 (0) | 2023.03.29 |
[XML] SOAP 서비스를 작동하기 위해 알아야 할 것들 (0) | 2023.03.21 |