SearchEngine
ここ をクリックすると操作の完全な一覧が表示されます。
FromZipCode2
郵便番号で住所を検索します。(7桁のハイフン無し)
テスト
HTTP POST プロトコルを使って操作をテストするには、[起動] ボタンをクリックしてください。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/FromZipCode2"
<?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>
<FromZipCode2 xmlns="http://btonic.est.co.jp/zipcode/">
<ZipCode>string</ZipCode>
</FromZipCode2>
</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>
<FromZipCode2Response xmlns="http://btonic.est.co.jp/zipcode/">
<FromZipCode2Result>
<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>
</FromZipCode2Result>
</FromZipCode2Response>
</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>
<FromZipCode2 xmlns="http://btonic.est.co.jp/zipcode/">
<ZipCode>string</ZipCode>
</FromZipCode2>
</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>
<FromZipCode2Response xmlns="http://btonic.est.co.jp/zipcode/">
<FromZipCode2Result>
<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>
</FromZipCode2Result>
</FromZipCode2Response>
</soap12:Body>
</soap12:Envelope>
HTTP GET
以下は HTTP GET 要求および応答のサンプルです。表示されている プレースホルダ は実際の値で置き換える必要があります。
GET /zipcode/SearchEngine.asmx/FromZipCode2?ZipCode=string HTTP/1.1 Host: webservice.est.co.jp
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<FindList xmlns="http://btonic.est.co.jp/zipcode/">
<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>
</FindList>
HTTP POST
以下は HTTP POST 要求および応答のサンプルです。表示されている プレースホルダ は実際の値で置き換える必要があります。
POST /zipcode/SearchEngine.asmx/FromZipCode2 HTTP/1.1 Host: webservice.est.co.jp Content-Type: application/x-www-form-urlencoded Content-Length: length ZipCode=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<FindList xmlns="http://btonic.est.co.jp/zipcode/">
<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>
</FindList>