Somang mobile
전체 작업 목록을 보려면 여기를 클릭하십시오.
VERSICLE
소망교회 교독문 조회
테스트
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/VERSICLE" <?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> <VERSICLE xmlns="http://service.somang.net/"> <no>string</no> </VERSICLE> </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> <VERSICLEResponse xmlns="http://service.somang.net/"> <VERSICLEResult>xml</VERSICLEResult> </VERSICLEResponse> </soap:Body> </soap:Envelope>
HTTP GET
다음은 샘플 HTTP GET 요청 및 응답입니다. 표시된 placeholders를 실제 값으로 바꾸어야 합니다.
GET /mobileservice.asmx/VERSICLE?no=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/VERSICLE HTTP/1.1 Host: service.somang.net Content-Type: application/x-www-form-urlencoded Content-Length: length no=string
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0"?> xml