1

我正在研究基于 SOAP 的 Web 服务。我想检查凭据。

@WebService(name="Helloworld",portName="HelloworldPort", serviceName = "Helloworld", targetNamespace="http://Helloworld.com/webservices")

@SOAPBinding(style = SOAPBinding.Style.RPC, use= SOAPBinding.Use.LITERAL, parameterStyle= SOAPBinding.ParameterStyle.WRAPPED)

public class Helloworld   {   

    public String sayHello(@WebParam(name="name")String name) {

        return "hello "+name;


    }

}

我已经阅读了一些我们可以用于USERNAME_PROPERTY, and PASSWORD_PROPERTY服务的地方。

它似乎是基本的http身份验证。

我不知道如何在服务和客户中适应它。有人可以告诉我如何实现它。

谢谢。

4

0 回答 0