Somang mobile
전체 작업 목록을 보려면 여기를 클릭하십시오.
LocationSearch
소망교회 장소 예약 현황 검색
테스트
HTTP POST 프로토콜을 사용하여 작업을 테스트하려면 [호출] 단추를 클릭하십시오.SOAP
다음은 샘플 SOAP 요청 및 응답입니다. 표시된 placeholders를 실제 값으로 바꾸어야 합니다.
POST /mobileservice.asmx HTTP/1.1 Host: service.somang.net Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "http://service.somang.net/LocationSearch" <?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> <LocationSearch xmlns="http://service.somang.net/"> <code>string</code> <date>string</date> </LocationSearch> </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> <LocationSearchResponse xmlns="http://service.somang.net/"> <LocationSearchResult>xml</LocationSearchResult> </LocationSearchResponse> </soap:Body> </soap:Envelope>
HTTP GET
다음은 샘플 HTTP GET 요청 및 응답입니다. 표시된 placeholders를 실제 값으로 바꾸어야 합니다.
GET /mobileservice.asmx/LocationSearch?code=string&date=string HTTP/1.1 Host: service.somang.net
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0"?> xml
HTTP POST
다음은 샘플 HTTP POST 요청 및 응답입니다. 표시된 placeholders를 실제 값으로 바꾸어야 합니다.
POST /mobileservice.asmx/LocationSearch HTTP/1.1 Host: service.somang.net Content-Type: application/x-www-form-urlencoded Content-Length: length code=string&date=string
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0"?> xml