Reputation: 1343
Is there a way to allow authentication in Domino webservices? If so, how would I do it?
Upvotes: 4
Views: 4282
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