Is there a way to allow authentication in Domino webservices? If so, how would I do it?
Asked
Active
Viewed 4,216 times
2 Answers
8

Rob Darwin
- 942
- 1
- 10
- 17
-
Could link to this [link](http://stackoverflow.com/a/2055585/401236) for options on basic authentication. – Jbruntt May 11 '12 at 06:25
3
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);

Taryn
- 242,637
- 56
- 362
- 405

Ketil Hjerpaasen
- 31
- 1