SOAP调试消息未打印

时间:2013-01-17 05:29:51

标签: web-services soap jax-ws

我在客户端VM参数中设置-Dcom.sun.xml.ws.transport.http.client.HttpTransportPipe.dump = true。我正在使用JAX-WS客户端。但是,尽管SOAP消息没有在控制台中打印出来。有什么原因吗?

这是我的客户代码。

package com.helloworld.client;

import java.net.URL;
import javax.xml.namespace.QName;
import javax.xml.ws.Service;
import com.helloworld.ws.HelloWorld;

public class HelloWorldClient{

    public static void main(String[] args) throws Exception {

    URL url = new URL("http://localhost:9999/ws/hello?wsdl");

        //1st argument service URI, refer to wsdl document above
    //2nd argument is service name, refer to wsdl document above
        QName qname = new QName("http://ws.helloworld.com/", "HelloWorldImplService");

        Service service = Service.create(url, qname);

        HelloWorld hello = service.getPort(HelloWorld.class);

        System.out.println(hello.getHelloWorldAsString("Test String"));

    }

}

我的服务器是使用Endpoint.publish发布的,并且是在本地运行的。

2 个答案:

答案 0 :(得分:0)

服务器上的

com.sun.xml.ws.transport.http.HttpAdapter.dump=true

您还可以使用@HandlerChain(file = "....")注释 有关Jax-WS处理程序的更多信息herehere

答案 1 :(得分:0)

这是正确的VM参数-Dcom.sun.xml.ws.transport.http.client.HttpTransportPipe.dump = true。你在使用任何IDEA吗?