web-dev-qa-db-ja.com

SOAP javaを使用したWebServiceへのリクエスト

Java経由でWebサービスにリクエストを送信する方法について少し混乱しています。

今のところ私が理解していることは、webservicesがxml構造化メッセージを使用していることだけですが、それでもリクエストを構造化する方法を理解していませんでした。

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <getProductDetails xmlns="http://magazzino.example.com/ws">
      <productId>827635</productId>
    </getProductDetails>
  </soap:Body>
</soap:Envelope>

基本的に、2つのパラメーターをWebサービスに送信する必要があり、その代わりに2つのパラメーターが必要です。

ほとんどの仕事を行うことができる瓶がいくつかあると思いますが、オンラインで見つけることができませんでした。誰かが基礎を説明してもらえますか?

32
Pievis

SOAPリクエストは、サーバーに送信するパラメーターで構成されるXMLファイルです。

SOAP応答も同様にXMLファイルですが、今ではサービスが提供したいすべてのものが含まれています。

基本的に、WSDLは、これら2つのXMLの構造を説明するXMLファイルです。


単純なSOAPクライアントをJavaで実装するには、SAAJフレームワークを使用できます(JSE 1.6以降に付属)。

Java(SAAJ)のAttachments APIを使用するSOAPは、主にSOAP要求/応答を直接処理するために使用されますWebサービスAPIの背後で発生するメッセージ。開発者は、JAX-WSを使用する代わりに、SOAPメッセージを直接送受信できます。

SAAJを使用したSOAP Webサービス呼び出しの実際の例(実行してください!)を参照してください。 このWebサービス を呼び出します。

import javax.xml.soap.*;

public class SOAPClientSAAJ {

    // SAAJ - SOAP Client Testing
    public static void main(String args[]) {
        /*
            The example below requests from the Web Service at:
             http://www.webservicex.net/uszip.asmx?op=GetInfoByCity


            To call other WS, change the parameters below, which are:
             - the SOAP Endpoint URL (that is, where the service is responding from)
             - the SOAP Action

            Also change the contents of the method createSoapEnvelope() in this class. It constructs
             the inner part of the SOAP envelope that is actually sent.
         */
        String soapEndpointUrl = "http://www.webservicex.net/uszip.asmx";
        String soapAction = "http://www.webserviceX.NET/GetInfoByCity";

        callSoapWebService(soapEndpointUrl, soapAction);
    }

    private static void createSoapEnvelope(SOAPMessage soapMessage) throws SOAPException {
        SOAPPart soapPart = soapMessage.getSOAPPart();

        String myNamespace = "myNamespace";
        String myNamespaceURI = "http://www.webserviceX.NET";

        // SOAP Envelope
        SOAPEnvelope envelope = soapPart.getEnvelope();
        envelope.addNamespaceDeclaration(myNamespace, myNamespaceURI);

            /*
            Constructed SOAP Request Message:
            <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:myNamespace="http://www.webserviceX.NET">
                <SOAP-ENV:Header/>
                <SOAP-ENV:Body>
                    <myNamespace:GetInfoByCity>
                        <myNamespace:USCity>New York</myNamespace:USCity>
                    </myNamespace:GetInfoByCity>
                </SOAP-ENV:Body>
            </SOAP-ENV:Envelope>
            */

        // SOAP Body
        SOAPBody soapBody = envelope.getBody();
        SOAPElement soapBodyElem = soapBody.addChildElement("GetInfoByCity", myNamespace);
        SOAPElement soapBodyElem1 = soapBodyElem.addChildElement("USCity", myNamespace);
        soapBodyElem1.addTextNode("New York");
    }

    private static void callSoapWebService(String soapEndpointUrl, String soapAction) {
        try {
            // Create SOAP Connection
            SOAPConnectionFactory soapConnectionFactory = SOAPConnectionFactory.newInstance();
            SOAPConnection soapConnection = soapConnectionFactory.createConnection();

            // Send SOAP Message to SOAP Server
            SOAPMessage soapResponse = soapConnection.call(createSOAPRequest(soapAction), soapEndpointUrl);

            // Print the SOAP Response
            System.out.println("Response SOAP Message:");
            soapResponse.writeTo(System.out);
            System.out.println();

            soapConnection.close();
        } catch (Exception e) {
            System.err.println("\nError occurred while sending SOAP Request to Server!\nMake sure you have the correct endpoint URL and SOAPAction!\n");
            e.printStackTrace();
        }
    }

    private static SOAPMessage createSOAPRequest(String soapAction) throws Exception {
        MessageFactory messageFactory = MessageFactory.newInstance();
        SOAPMessage soapMessage = messageFactory.createMessage();

        createSoapEnvelope(soapMessage);

        MimeHeaders headers = soapMessage.getMimeHeaders();
        headers.addHeader("SOAPAction", soapAction);

        soapMessage.saveChanges();

        /* Print the request message, just for debugging purposes */
        System.out.println("Request SOAP Message:");
        soapMessage.writeTo(System.out);
        System.out.println("\n");

        return soapMessage;
    }

}
79
acdcjunior

WSDLが使用可能になったら、そのWebサービスを呼び出すために従う必要があるのは2つのステップだけです。

ステップ1:WSDL2Javaツールからクライアント側ソースを生成する

ステップ2:次を使用して操作を呼び出します。

YourService service = new YourServiceLocator();
Stub stub = service.getYourStub();
stub.operation();

さらに見ると、Stubクラスを使用して、リモートロケーションにデプロイされたサービスをWebサービスとして呼び出すことがわかります。それを呼び出すとき、クライアントは実際にSOAP要求を生成して通信します。同様に、Webサービスは応答をSOAPとして送信します。 Wiresharkなどのツールを使用すると、交換されたSOAPメッセージを表示できます。

ただし、基本についての詳細な説明を要求しているため、 here を参照し、クライアントでWebサービスを記述してさらに学習することをお勧めします。

7
lkamal

私は他の同様の質問に遭遇しました here 。上記の答えはどちらも完璧ですが、ここでは SOAP1.2 ではなく SOAP1.1 を探している人に追加情報を追加しようとしています。

@acdcjuniorが提供する1行のコードを変更し、SOAPMessageFactory1_1Impl実装を使用すると、名前空間がxmlns:soap = "http://schemas.xmlsoap.org/soap/envelope/"に変更されます。 。

callSoapWebServiceメソッドの最初の行を次のように変更します。

SOAPMessage soapMessage = SOAPMessageFactory1_1Impl.newInstance().createMessage();

他の人にも役立つことを願っています。

0
Red Boy