-1

SOAP Webサービスを実行するにはどうすればよいですか?また、データを印刷するにはどうすればよいですか?

現在、次のコードを使用しています

package com.appulento.pack;

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.net.HttpURLConnection;
import java.net.URL;

public class SimpleHTTPRequest
{
  public static void main(String[] args) throws Exception {
    final String url =
        "http://**********:8000/sap/bc/srt/rfc/sap/zmaterials_details/" +
          "800/zmaterials_details/zmaterials_details_bind",
      soapAction ="urn:sap-com:document:sap:soap:functions:mc-style/ZMATERIALS_DETAILS",
      envelope1="<?xml version=\"1.0\" encoding=\"utf-8\"?>" +
        "<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"" +
          " xmlns:urn=\"urn:sap-com:document:sap:soap:functions:mc-style\">" +
        "<soapenv:Header>"+
        "<soapenv:Body>"+
        "<urn:ZMATERIALS_DETAILS>"+
        "<Language>D</Language>"+
        "<MaterialGroup>00208</MaterialGroup>"+
        "</urn:ZMATERIALS_DETAILS>"+
        "</soap:Body>"+
        "</soap:Envelope>" ;
    HttpURLConnection connection = null;
    try {
      final URL serverAddress = new URL("http://*********:8000/sap/bc/srt/wsdl/"+
          "srvc_14DAE9C8D79F1EE196F1FC6C6518A345/wsdl11/allinone/ws_policy/" +
          "document?sap-client=800&sap-user=************&sap-password=****");
      connection = (HttpURLConnection)serverAddress.openConnection();
      connection.setRequestProperty("SOAPAction", soapAction);
      connection.setRequestMethod("POST");
      connection.setDoOutput(true);
      final OutputStreamWriter writer = new OutputStreamWriter(connection.getOutputStream());
      writer.append(envelope1);
      writer.close();
      final BufferedReader rd =
          new BufferedReader(new InputStreamReader(connection.getInputStream()));
      String line;
      while ((line = rd.readLine()) != null) System.out.println(line);
    } finally { connection.disconnect(); }
  }
}

入力リクエストとしてxmlを送信したいのですが、xmlでも表示したいです。

4

1 に答える 1

0

あなたがするように、httpConnectionと解析応答を使用してHTTPリクエストを送信することは可能です。しかし、それはすでに他の人によって書かれています、オプション付きのwsimportツールを使用してください。-keepこれにより、SOAPを使用してリクエストを送信するためのJavaアーティファクトが生成されます。

于 2012-04-25T12:35:37.880 に答える