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