Hallo Marco,
lade Dir am besten die WSDL lokal runter.
Einfach die URL in den Browser und das XML als Datei speichern.
Dann gibt es zwei Möglichkeiten:
Authentifizierung mit NT-Token: Dazu sollte der Domino-Server als Service-Account und nicht als System-Account laufen.
Damit wäre die Authentifizierung gegeben
oder
Es geht nur um das Webkennwort, dann kann man dieses dem Webservice mitgeben. Die Methode Setcredentials(uName, pw)
bietet diese Möglichkeit.
mfg
Kjeld
We can secure a Web Service by using one of the following Windows authentication schemes:
* Integrated Windows authentication
* Basic and basic with SSL authentication
* Digest authentication
* Client Certificate authentication
http://www.15seconds.com/issue/020312.htm
When you import the provider WSDL into Domino's Script Library, it is automatically created into a class that is extending PortTypeBase class of the lsxsd.lss. PortTypeBase class uses another class called "NotesWebServiceEngine" that has a method call "SetCredentials" takes two params (username, password).
Class ListUpdates As PortTypeBase
Sub NEW
Call Service.Initialize ("UrnDefaultNamespaceListUpdatesService", _
"ListUpdatesService.Domino", "http://somewebservice?OpenWebService", _
"ListUpdates")
Call Service.setCredentials( "myid", "mypassword" )
End Sub
......
End Class
via Domino Web Service Consumer and Passing credential (http://www-10.lotus.com/ldd/nd8forum.nsf/5f27803bba85d8e285256bf10054620d/2f7ac003aaa48082852574430051a97c?OpenDocument)