Bruce Stemplewski
Bruce Stemplewski

Reputation: 1343

Authentication and web services in Domino?

Is there a way to allow authentication in Domino webservices? If so, how would I do it?

Upvotes: 4

Views: 4282

Answers (2)

Ketil Hjerpaasen
Ketil Hjerpaasen

Reputation: 31

Another way in JAVA would be:

ServiceBindingStub stub = (WebServiceBindingStub) new ServiceLocator().getWebServicePort(portAddress);
stub.setSSLOptions(PortTypeBase.NOTES_SSL_ACCEPT_SITE_CERTS + PortTypeBase.NOTES_SSL_ACCEPT_EXPIRED_CERTS);

stub.setUsername(usr);
stub.setPassword(pwd);

Upvotes: 3

Rob Darwin
Rob Darwin

Reputation: 942

IBM has an example here. There are other options.

Upvotes: 8

Related Questions