SearchEngine


ここ をクリックすると操作の完全な一覧が表示されます。

FromAddressDecremental

住所を部分一致で検索し詳細を返します。(拡張版)

テスト

テスト フォームは、ローカル コンピュータからの要求に対してのみ使用できます。

SOAP 1.1

以下は SOAP 1.1 の要求および応答のサンプルです。表示されるプレースホルダを実際の値で置き換える必要があります。

POST /zipcode/SearchEngine.asmx HTTP/1.1
Host: webservice.est.co.jp
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://btonic.est.co.jp/zipcode/FromAddressDecremental"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <FromAddressDecremental xmlns="http://btonic.est.co.jp/zipcode/">
      <Address>string</Address>
    </FromAddressDecremental>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <FromAddressDecrementalResponse xmlns="http://btonic.est.co.jp/zipcode/">
      <FromAddressDecrementalResult>boolean</FromAddressDecrementalResult>
      <SearchResult>
        <IsSuccess>boolean</IsSuccess>
        <FindCount>int</FindCount>
        <TotalFindCount>int</TotalFindCount>
        <ErrorMessage>string</ErrorMessage>
        <Item>
          <FindItem>
            <OldZipCode>string</OldZipCode>
            <ZipCode>string</ZipCode>
            <Yomi>string</Yomi>
            <Kanji>string</Kanji>
          </FindItem>
          <FindItem>
            <OldZipCode>string</OldZipCode>
            <ZipCode>string</ZipCode>
            <Yomi>string</Yomi>
            <Kanji>string</Kanji>
          </FindItem>
        </Item>
      </SearchResult>
      <MatchAddressWord>string</MatchAddressWord>
    </FromAddressDecrementalResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

以下は、SOAP 1.2 の要求および応答のサンプルです。表示される プレースホルダを実際の値で置き換える必要があります。

POST /zipcode/SearchEngine.asmx HTTP/1.1
Host: webservice.est.co.jp
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <FromAddressDecremental xmlns="http://btonic.est.co.jp/zipcode/">
      <Address>string</Address>
    </FromAddressDecremental>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <FromAddressDecrementalResponse xmlns="http://btonic.est.co.jp/zipcode/">
      <FromAddressDecrementalResult>boolean</FromAddressDecrementalResult>
      <SearchResult>
        <IsSuccess>boolean</IsSuccess>
        <FindCount>int</FindCount>
        <TotalFindCount>int</TotalFindCount>
        <ErrorMessage>string</ErrorMessage>
        <Item>
          <FindItem>
            <OldZipCode>string</OldZipCode>
            <ZipCode>string</ZipCode>
            <Yomi>string</Yomi>
            <Kanji>string</Kanji>
          </FindItem>
          <FindItem>
            <OldZipCode>string</OldZipCode>
            <ZipCode>string</ZipCode>
            <Yomi>string</Yomi>
            <Kanji>string</Kanji>
          </FindItem>
        </Item>
      </SearchResult>
      <MatchAddressWord>string</MatchAddressWord>
    </FromAddressDecrementalResponse>
  </soap12:Body>
</soap12:Envelope>