Authentication and web services in Domino?

Is there a way to enable authentication in Domino web services? If so, how do I do this?

+4
source share
2 answers

IBM has an example here . There are other options .

+7
source

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); 
+2
source

Source: https://habr.com/ru/post/1411835/


All Articles