DirectPost
Àüü ÀÛ¾÷ ¸ñ·ÏÀ» º¸·Á¸é ¿©±â¸¦ Ŭ¸¯ÇϽʽÿÀ.
GetPostBySidoGugun
Á¾·ù : Áö¹øÁÖ¼Ò
¼³¸í : ƯÁ¤ ½Ã/µµ¿Í ±¸/±ºÀ» ÀÔ·Â ¹Þ¾Æ ÇØ´çÇÏ´Â ¸ðµç ¿ìÆí¹øÈ£(6ÀÚ¸®)¿Í ÁÖ¼Ò¸¦ ½ºÆ®¸µ ¹è¿·Î ¹ÝȯÇÕ´Ï´Ù.
          ¹ÝȯµÇ´Â ½ºÆ®¸µÀÇ ¿ìÆí¹øÈ£¿Í ÁÖ¼Ò´Â ÅÇÀ¸·Î ±¸ºÐµË´Ï´Ù.
¼±¾ð¹® : string[] GetPostBySidoGugun(string Sido, string Gugun)
Å×½ºÆ®
HTTP POST ÇÁ·ÎÅäÄÝÀ» »ç¿ëÇÏ¿© ÀÛ¾÷À» Å×½ºÆ®ÇÏ·Á¸é [È£Ãâ] ´ÜÃ߸¦ Ŭ¸¯ÇϽʽÿÀ.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/GetPostBySidoGugun"
<?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>
    <GetPostBySidoGugun xmlns="http://webservice.direct.co.kr/post1.x/">
      <Sido>string</Sido>
      <Gugun>string</Gugun>
    </GetPostBySidoGugun>
  </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>
    <GetPostBySidoGugunResponse xmlns="http://webservice.direct.co.kr/post1.x/">
      <GetPostBySidoGugunResult>
        <string>string</string>
        <string>string</string>
      </GetPostBySidoGugunResult>
    </GetPostBySidoGugunResponse>
  </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>
    <GetPostBySidoGugun xmlns="http://webservice.direct.co.kr/post1.x/">
      <Sido>string</Sido>
      <Gugun>string</Gugun>
    </GetPostBySidoGugun>
  </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>
    <GetPostBySidoGugunResponse xmlns="http://webservice.direct.co.kr/post1.x/">
      <GetPostBySidoGugunResult>
        <string>string</string>
        <string>string</string>
      </GetPostBySidoGugunResult>
    </GetPostBySidoGugunResponse>
  </soap12:Body>
</soap12:Envelope>
          
          
              HTTP GET
´ÙÀ½Àº »ùÇà HTTP GET ¿äû ¹× ÀÀ´äÀÔ´Ï´Ù. Ç¥½ÃµÈ placeholders¸¦ ½ÇÁ¦ °ªÀ¸·Î ¹Ù²Ù¾î¾ß ÇÕ´Ï´Ù.
GET /Post1.x/Post.asmx/GetPostBySidoGugun?Sido=string&Gugun=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/GetPostBySidoGugun HTTP/1.1 Host: webservice.direct.co.kr Content-Type: application/x-www-form-urlencoded Content-Length: length Sido=string&Gugun=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>