Authentication and web services in Domino?

后端 未结 2 1356
星月不相逢
星月不相逢 2021-01-19 13:18

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

相关标签:
2条回答
  • 2021-01-19 14:19

    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);
    
    0 讨论(0)
  • 2021-01-19 14:21

    IBM has an example here. There are other options.

    0 讨论(0)
提交回复
热议问题