SOAP 시작하기 튜토리얼login
SOAP 시작하기 튜토리얼
작가:php.cn  업데이트 시간:2022-04-11 14:22:12

SOAP 봉투 요소



필수 SOAP Envelope 요소는 SOAP 메시지의 루트 요소입니다.


SOAP Envelope 요소

필수 SOAP의 Envelope 요소는 SOAP 메시지의 루트 요소입니다. XML 문서를 SOAP 메시지로 정의합니다.

Example

<?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">
  ...
  Message information goes here
  ...
</soap:Envelope>


xmlns:soap 네임스페이스

SOAP 메시지에는 "http://www.w3.org/2001/12/soap-envelope" 네임스페이스와 연결된 Envelope 요소가 있어야 합니다.

다른 네임스페이스를 사용하면 애플리케이션에서 오류가 발생하고 이 메시지가 삭제됩니다.


encodingStyle 속성

SOAP의 인코딩Style 속성은 문서에 사용되는 데이터 유형을 정의하는 데 사용됩니다. 이 특성은 모든 SOAP 요소에 나타날 수 있으며 요소의 콘텐츠와 모든 하위 요소에 적용됩니다.

SOAP 메시지에는 기본 인코딩이 없습니다.

문법

soap:encodingStyle="URI"

<?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">
  ...
  Message information goes here
  ...
</soap:Envelope>

PHP 중국어 웹사이트