繁体   English   中英

用Java创建SOAP消息并将其发送到一个非常简单的Web服务

[英]Creating and sending a SOAP message in java to a very simple web service

我目前正在尝试创建SOAP消息并将其发送到我自己创建的非常简单的Web服务。

显然,Web服务有一个wsdl文件,您可以在这里看到它:

wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:ns="http://service.com" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:ns1="http://org.apache.axis2/xsd" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" targetNamespace="http://service.com">
<wsdl:documentation>Please Type your service description here</wsdl:documentation>
<wsdl:types>
<xs:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://service.com">
<xs:element name="echoTest">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="echoString" nillable="true" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="echoTestResponse">
<xs:complexType>
<xs:sequence>
<xs:element minOccurs="0" name="return" nillable="true" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
</wsdl:types>
<wsdl:message name="echoTestRequest">
<wsdl:part name="parameters" element="ns:echoTest"/>
</wsdl:message>
<wsdl:message name="echoTestResponse">
<wsdl:part name="parameters" element="ns:echoTestResponse"/>
</wsdl:message>
<wsdl:portType name="RequestHandlerPortType">
<wsdl:operation name="echoTest">
<wsdl:input message="ns:echoTestRequest" wsaw:Action="urn:echoTest"/>
<wsdl:output message="ns:echoTestResponse" wsaw:Action="urn:echoTestResponse"/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="RequestHandlerSoap11Binding" type="ns:RequestHandlerPortType">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
<wsdl:operation name="echoTest">
<soap:operation soapAction="urn:echoTest" style="document"/>
<wsdl:input>
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output>
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:binding name="RequestHandlerSoap12Binding" type="ns:RequestHandlerPortType">
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
<wsdl:operation name="echoTest">
<soap12:operation soapAction="urn:echoTest" style="document"/>
<wsdl:input>
<soap12:body use="literal"/>
</wsdl:input>
<wsdl:output>
<soap12:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:binding name="RequestHandlerHttpBinding" type="ns:RequestHandlerPortType">
<http:binding verb="POST"/>
<wsdl:operation name="echoTest">
<http:operation location="echoTest"/>
<wsdl:input>
<mime:content type="application/xml" part="parameters"/>
</wsdl:input>
<wsdl:output>
<mime:content type="application/xml" part="parameters"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="RequestHandler">
<wsdl:port name="RequestHandlerHttpSoap11Endpoint" binding="ns:RequestHandlerSoap11Binding">
<soap:address location="http://localhost:8181/PayCheckHandlerMainWebService/services/RequestHandler.RequestHandlerHttpSoap11Endpoint/"/>
</wsdl:port>
<wsdl:port name="RequestHandlerHttpSoap12Endpoint" binding="ns:RequestHandlerSoap12Binding">
<soap12:address location="http://localhost:8181/PayCheckHandlerMainWebService/services/RequestHandler.RequestHandlerHttpSoap12Endpoint/"/>
</wsdl:port>
<wsdl:port name="RequestHandlerHttpEndpoint" binding="ns:RequestHandlerHttpBinding">
<http:address location="http://localhost:8181/PayCheckHandlerMainWebService/services/RequestHandler.RequestHandlerHttpEndpoint/"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>

然后,我使用了名为Wizdler的Google chrome插件来找出肥皂消息的结构。 此示例的Soap消息应如下所示。

<Envelope xmlns="http://www.w3.org/2003/05/soap-envelope">
    <Body>
        <echoTest xmlns="http://service.com">
            <echoString>[string?]</echoString>
        </echoTest>
    </Body>
</Envelope>

因此,这是一条非常简单明了的SOAP消息。尽管如此,我还是可以使它工作。 我正在尝试使用以下代码创建SOAP消息:

        MessageFactory messageFactory = MessageFactory.newInstance();

        SOAPMessage soapMessage = messageFactory.createMessage();
        SOAPPart soapPart = soapMessage.getSOAPPart();

        String serverURI = "http://service.com";

        // SOAP Envelope
        SOAPEnvelope envelope = soapPart.getEnvelope();

        // SOAP Body
        SOAPBody soapBody = envelope.getBody();
        soapBody.addNamespaceDeclaration("", serverURI);
        SOAPElement soapBodyElem = soapBody.addChildElement("echoTest");

        SOAPElement soapBodyElem1 = soapBodyElem.addChildElement("echoString");
        soapBodyElem1.addTextNode("HELLO?!?");

        MimeHeaders headers = soapMessage.getMimeHeaders();
        headers.addHeader("RequestHandler", serverURI);

        soapMessage.saveChanges();

        /* Print the request message */
        System.out.print("Request SOAP Message:");
        soapMessage.writeTo(System.out);
        System.out.println();

上面的代码产生以下SOAP消息:

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/>
   <SOAP-ENV:Header/>
   <SOAP-ENV:Body xmlns="http://service.com">
      <echoTest xmlns="">
          <echoString xmlns="http://service.com">HELLO?!?</echoString> 
      </echoTest>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

我不知道为什么echoString得到xmlns =“ http://service.com” ..它应该放在echoTest标记中..我想这可能是问题的一部分。

响应消息如下所示:

<?xml version='1.0' encoding='utf-8'?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Body>
   <soapenv:Fault>
      <faultcode>soapenv:Server</faultcode>
      <faultstring>namespace mismatch require http://service.com found none</faultstring>
      <detail />
   </soapenv:Fault>
</soapenv:Body>
</soapenv:Envelope>

可以看出,名称空间存在问题,但是无论我做什么,似乎仍然会出现问题。

我希望有人可以看到问题,并且也许可以提供解决方案。

任何帮助将不胜感激。

SOAPElement soapBodyElem = soapBody.addChildElement("echoTest","", serverURI);

SOAPElement soapBodyElem1 = soapBodyElem.addChildElement("echoString","", serverURI);

但是,为什么要显式构造SOAP?

如果没有特殊原因,请使用wsimport。 Java类+ JAXB注释将为您提供帮助。

无论如何,经过一段时间的尝试,我终于使它起作用了。.当然,在发布此问题后,我就使它起作用了。 因此,这是问题中描述的完整Java代码:

public class PayCheckHandler {

    public PayCheckHandler() throws Exception {
        // TODO Auto-generated method stub

        SOAPConnectionFactory soapConnectionFactory = SOAPConnectionFactory.newInstance();
        SOAPConnection soapConnection = soapConnectionFactory.createConnection();

        // Send SOAP Message to SOAP Server
        String url = "http://localhost:8181/PayCheckHandlerMainWebService/services/RequestHandler?wsdl";
        SOAPMessage soapResponse = soapConnection.call(createSOAPRequest(), url);

        // print SOAP Response
        System.out.println();
        System.out.print("Response SOAP Message:");
        soapResponse.writeTo(System.out);
        soapConnection.close();

    }


    private static SOAPMessage createSOAPRequest() throws Exception {
            MessageFactory messageFactory = MessageFactory.newInstance();
            SOAPMessage soapMessage = messageFactory.createMessage();
            SOAPPart soapPart = soapMessage.getSOAPPart();

            String serverURI = "http://service.com";

            // SOAP Envelope
            SOAPEnvelope envelope = soapPart.getEnvelope();
            SOAPHeader header = envelope.getHeader();
            SOAPBody body = envelope.getBody();


            // SOAP Body
            SOAPBodyElement element = body.addBodyElement(envelope.createName("echoTest", "", serverURI));
            element.addChildElement("echoString").addTextNode("Hello!!!");



            return soapMessage;
    }

    public static void main(String[] args) throws Exception {
        new PayCheckHandler();
    }

}

顺便说一句。 如果绝对不必手动创建自己的SOAP消息,则可以按照artem.ponchakov建议的方式进行。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM