DirectPost


Àüü ÀÛ¾÷ ¸ñ·ÏÀ» º¸·Á¸é ¿©±â¸¦ Ŭ¸¯ÇϽʽÿÀ.

Get5PostAddressByRoadE

Á¾·ù : µµ·Î¸íÁÖ¼Ò
¼³¸í : ½Ãµµ, µµ·Î¸íÀ» ÀÔ·Â ¹Þ¾Æ ÇØ´çÇÏ´Â ¸ðµç ¿ìÆí¹øÈ£(5ÀÚ¸®), ÁÖ¼Ò, ¿µ¹®ÁÖ¼Ò ½ºÆ®¸µ ¹è¿­·Î ¹ÝȯÇÕ´Ï´Ù.
          ¹ÝȯµÇ´Â ½ºÆ®¸µÀÇ ¿ìÆí¹øÈ£¿Í ÁÖ¼Ò, ¿µ¹®ÁÖ¼Ò´Â ÅÇÀ¸·Î ±¸ºÐµË´Ï´Ù.
¼±¾ð¹® : string[] Get5PostAddressByRoadE(string sido, string Road)

Å×½ºÆ®

HTTP POST ÇÁ·ÎÅäÄÝÀ» »ç¿ëÇÏ¿© ÀÛ¾÷À» Å×½ºÆ®ÇÏ·Á¸é [È£Ãâ] ´ÜÃ߸¦ Ŭ¸¯ÇϽʽÿÀ.
¸Å°³ º¯¼ö °ª
sido:
Road:

SOAP 1.1

´ÙÀ½Àº »ùÇà SOAP 1.1 ¿äû ¹× ÀÀ´äÀÔ´Ï´Ù. Ç¥½ÃµÈ placeholders´Â ½ÇÁ¦ °ªÀ¸·Î ¹Ù²ã¾ß ÇÕ´Ï´Ù.

POST /post1.x/post.asmx HTTP/1.1
Host: webservice.direct.co.kr
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://webservice.direct.co.kr/post1.x/Get5PostAddressByRoadE"

<?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>
    <Get5PostAddressByRoadE xmlns="http://webservice.direct.co.kr/post1.x/">
      <sido>string</sido>
      <Road>string</Road>
    </Get5PostAddressByRoadE>
  </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>
    <Get5PostAddressByRoadEResponse xmlns="http://webservice.direct.co.kr/post1.x/">
      <Get5PostAddressByRoadEResult>
        <string>string</string>
        <string>string</string>
      </Get5PostAddressByRoadEResult>
    </Get5PostAddressByRoadEResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

´ÙÀ½Àº »ùÇà SOAP 1.2 ¿äû ¹× ÀÀ´äÀÔ´Ï´Ù. Ç¥½ÃµÈ placeholders´Â ½ÇÁ¦ °ªÀ¸·Î ¹Ù²ã¾ß ÇÕ´Ï´Ù.

POST /post1.x/post.asmx HTTP/1.1
Host: webservice.direct.co.kr
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>
    <Get5PostAddressByRoadE xmlns="http://webservice.direct.co.kr/post1.x/">
      <sido>string</sido>
      <Road>string</Road>
    </Get5PostAddressByRoadE>
  </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>
    <Get5PostAddressByRoadEResponse xmlns="http://webservice.direct.co.kr/post1.x/">
      <Get5PostAddressByRoadEResult>
        <string>string</string>
        <string>string</string>
      </Get5PostAddressByRoadEResult>
    </Get5PostAddressByRoadEResponse>
  </soap12:Body>
</soap12:Envelope>

HTTP GET

´ÙÀ½Àº »ùÇà HTTP GET ¿äû ¹× ÀÀ´äÀÔ´Ï´Ù. Ç¥½ÃµÈ placeholders¸¦ ½ÇÁ¦ °ªÀ¸·Î ¹Ù²Ù¾î¾ß ÇÕ´Ï´Ù.

GET /post1.x/post.asmx/Get5PostAddressByRoadE?sido=string&Road=string HTTP/1.1
Host: webservice.direct.co.kr
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<ArrayOfString xmlns="http://webservice.direct.co.kr/post1.x/">
  <string>string</string>
  <string>string</string>
</ArrayOfString>

HTTP POST

´ÙÀ½Àº »ùÇà HTTP POST ¿äû ¹× ÀÀ´äÀÔ´Ï´Ù. Ç¥½ÃµÈ placeholders¸¦ ½ÇÁ¦ °ªÀ¸·Î ¹Ù²Ù¾î¾ß ÇÕ´Ï´Ù.

POST /post1.x/post.asmx/Get5PostAddressByRoadE HTTP/1.1
Host: webservice.direct.co.kr
Content-Type: application/x-www-form-urlencoded
Content-Length: length

sido=string&Road=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<ArrayOfString xmlns="http://webservice.direct.co.kr/post1.x/">
  <string>string</string>
  <string>string</string>
</ArrayOfString>