2

私はこのサービスにアクセスしようとしていますが、これにより html 応答が得られます。私が間違っているところを助けてください。どんな助けも本当にとても役に立ちます。

HttpURLConnection connection;
    java.net.URL u;
    u = new java.net.URL("http://sdservices.iyogi.net/iyogi/webservicesnonrestv5/toolbarwebservices.asmx");

   URLConnection uc = u.openConnection();
   connection = (HttpURLConnection) uc;

   connection.setDoOutput(true);
   connection.setDoInput(true);
   connection.setRequestProperty("SOAPAction", "http://sdservices.iyogi.net/SD/ToolbarService.svc/GetProductSettings?SubscriptionCode=W101982488");
   connection.setRequestMethod("GET");
   connection.setRequestProperty("Content-type", "text/xml; charset=utf-8");

InputStream は = connection.getInputStream(); inputStreamToString(は);

応答でHTMLを返します:(

4

0 に答える 0