我是肥皂和 jax-ws 的新手。
在阅读了很多信息后,我知道 eclipse 可以捕获肥皂消息,但我有问题。
我的出版商
public static void main(String[] args) {
        Endpoint.publish("http://localhost:8081/WS/Greeting",
                new GreetingImpl());
    }
我的老手
public static void main(String[] args) {
        GreetingImplService service = new GreetingImplService();
        Greeting greeting = service.getGreetingImplPort();
        System.out.println("------->>  Call Started");
        System.out.println(greeting.sayHello("friend !!!"));
        System.out.println("------->>  Call Ended");
    }
当我在控制台中调用客户端时,我看到
------->>  Call Started
Hello, Welcom to jax-ws friend !!!
------->>  Call Ended
因此它是工作服务。
但在 TCP|IP 监视器中,我看到空列表。
我的 TCP|IP 监视器配置

我做错了什么?
请帮忙)