I am developing a webservice using notes/domino. I am using Java for Webservice SOAP client.
I have found there is some Microsoft codes to preautheniticate webservice. here is it :
ws.Credentials = new System.Net.NetworkCredential(“yourusername”,“yourpassword”);
Anybody have any ideas about the java equivalent for this …pls respond…
Shaji
Subject: Webservice - PreAuthentication
Shaji,The answer is simple. There is none.
Lotus Domino is a self secure environment, you cannot Pre-Authenticate.
Regards
Rolf Pfotenhauer
Subject: RE:Webservice - PreAuthentication
then …how can I login to domino based webservive from a soap client …
shaji
Subject: RE:Webservice - PreAuthentication
Shaji,There is one correction to my last post–you can authenticate session by session to Domino via DIIOP.
What this means is that you need to know the username and password every time you want to establish a session with Domino.
If you are willing to do this, then you need to have the username and password available. This gives you several issues to consider:
-
Where do you get the username/password from? If it is an external source then you have synchronisation issues to worry about.
-
How do you establish a DIIOP session?
Two (2) above is easier to achieve since you can do this with the built in servlet engine–well sort of.
One (1) on the other hand is a real pain to deal with, unless you have a more enterprise focus.
Regards
Rolf Pfotenhauer
Subject: RE:Webservice - PreAuthentication
Thankyou for ur response …shaji