Java Language
JAX-WS
Recherche…
Authentification de base
La façon de faire un appel JAX-WS avec une authentification de base est un peu évidente.
Voici un exemple où Service
est la représentation de classe de service et Port
est le port de service auquel vous souhaitez accéder.
Service s = new Service();
Port port = s.getPort();
BindingProvider prov = (BindingProvider)port;
prov.getRequestContext().put(BindingProvider.USERNAME_PROPERTY, "myusername");
prov.getRequestContext().put(BindingProvider.PASSWORD_PROPERTY, "mypassword");
port.call();
Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow