使用身份验证构建SOAP Java客户端

时间:2015-03-11 10:39:31

标签: java authentication soap

我需要使用用户和密码构建SOAP Java客户端。 我使用的是jax-ws,但我不知道如何验证身份。

    URL url = new URL("http://localhost:7777/path/method.asmx?wsdl");

    QName qname = new QName("http://tempuri.org/", "Service1Soap");

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

    Service1Soap service1 = service.getPort(Service1Soap.class);

    System.out.println(service1.method("testParam"));

有人可以帮帮我!

0 个答案:

没有答案