0

我在本地 apache tomcat 上运行了一个 Web 服务。我可以通过 SoapUI 成功地与它交谈。但是,当我用 Java 编写客户端时,它没有给我响应!

这是客户端代码:

    SOAPConnectionFactory myFct = SOAPConnectionFactory.newInstance();
    SOAPConnection myCon = myFct.createConnection();
    MessageFactory myMsgFct = MessageFactory.newInstance();
    SOAPMessage message = myMsgFct.createMessage();
    SOAPPart mySPart = message.getSOAPPart();
    SOAPEnvelope myEnvp = mySPart.getEnvelope();
    SOAPBody body = myEnvp.getBody();
    Name bodyName = myEnvp.createName("Ping", "ws","http://ws.myeclipseide.com/");
    SOAPBodyElement gltp = body.addBodyElement(bodyName);
    Name myContent1 = myEnvp.createName("arg0");
    SOAPElement mySymbol1 = gltp.addChildElement(myContent1);
    mySymbol1.addTextNode("test");
    message.saveChanges();

    URLEndpoint endPt = new URLEndpoint("http://localhost:8080/PingWebService/StringPingPort?WSDL");
    SOAPMessage reply = myCon.call(message, endPt);
    myCon.close();
    System.out.println("Response: "+reply.getContentDescription());

通过soapUI 的调用如下所示:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ws="http://ws.myeclipseide.com/">
   <soapenv:Header/>
   <soapenv:Body>
      <ws:Ping>
         <!--Optional:-->
         <arg0>testing this</arg0>
      </ws:Ping>
   </soapenv:Body>
</soapenv:Envelope>

知道为什么它不能通过 java 工作吗???

4

2 回答 2

0

getContentDescription() “返回:描述此消息内容的字符串,如果未设置描述,则返回 null”,而不是您的消息内容。

尝试这个:

    ByteArrayOutputStream out = new ByteArrayOutputStream();
    reply.writeTo(out); 
    System.out.println("Response: "+out.toString());
于 2012-08-06T01:21:43.940 回答
0

不工作

异常,错误消息,没有呼叫,...?

乍一看,我看不到任何明显的东西,但是由于您使用的是 Eclipse,请在 Eclipse 下激活 TCP 监视器,通过从 Eclipse 运行您的程序发出您的调用,并检查线路上发送的内容。

于 2012-07-21T05:30:06.620 回答