0

내가 궁금하네요 안녕하세요 어떻게 만들 수 HTTPS 안드로이드 응용 프로그램에서 비누 APIHTTPS 요청

에 대한 요청, 난 많이 검색했지만 수행하는 방법을 설명하는 명확한 튜토리얼이없는 그

제안이나 도움주세요.

감사

+1

왜 여전히 SOAP을 사용하고 싶습니까? 휴식 서비스를 사용하십시오. – james

+0

SOAP를 사용하는 API 나는 그것을 바꿀 수있는 권한이 없습니다. –

답변

0
import java.io.*; 
import java.net.*; 
import javax.net.ssl.*; 

public class HttpsClient { 

    public static void main(String[] args) throws Exception { 
     String httpsURL = "https://postman-echo.com/post"; 
     URL myUrl = new URL(httpsURL); 
     HttpURLConnection conn = (HttpsURLConnection) myUrl.openConnection(); 
     conn.setDoOutput(true); 
     conn.setRequestMethod("POST"); 
     OutputStreamWriter out = new OutputStreamWriter(conn.getOutputStream()); 
     out.append("<xml><body>your SAOP request here</body></xml>"); 

     BufferedReader br = new BufferedReader(new InputStreamReader(conn.getInputStream())); 

     String inputLine; 
     System.out.println("Response code is : "+conn.getResponseCode()); 
     System.out.print("Response text is :"); 
     while ((inputLine = br.readLine()) != null) { 
      System.out.println(inputLine); 
     } 
     out.flush(); 
     out.close(); 
     br.close(); 
    } 

} 

SOAP 요청은 요청 본문의 XML과 HTTP의 POST입니다. url을 웹 서비스 끝점 url로 변경하고 샘플 문자열을 SOAP 요청으로 바꿔야합니다.