Hi Marc,
I am new to jsp and I be good at Lotus notes, now I want to access notes
database in jsp, Can you tell me how to do?
or can you recommend a good book about it? the release of my domino if
R5, and window Nt server ,iis
<Marc>
Hi Pradeep,
here is the code to access the title of a database: NOTE: I use this code
in
a servlet.
1.Query
if(success == true){
notesSession = NotesFactory.createSession(server,user,password);
if(notesSession != null){
//get database
Db = notesSession.getDatabase(server,DbName);
if(Db != null){
String title = Db.getTitle();
........
2.Query
First of all how did you copy the database? Did you use a Notes client? If
so then did you switch off the "Access Control List" check box in the copy
dialog box. It is important that you copy the database via a Notes client
as copying databases from the OS file system can cause all sorts of
problems
- replication conflicts etc...
Regards
</Marc>
-----Original Message-----
From: Pradeep Roy [mailto:[EMAIL PROTECTED]]
Sent: Monday, 7 August 2000 10:13 PM
To: [EMAIL PROTECTED]
Subject: Re: Lotus Notes accessing in JSP... ****Please help****...
Hi Marc
I was under the impression that it was something to do with the security.
Now my first queries is how to access the Title. If you please provide a
code for the same.
And second queries is if there is a higher lavel of security, then also I
can copy the database with documents. And that is what precisely I have
done; which is a local copy of the database at my pc. Now how do I take all
those security off from the copied one so that I can access the database
and do the preliminary work before getting into Lotus Notes Security stuff.
Hope to get a detail answer with preferable a partial code.
Thanks & Regards
Pradeep
===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:
http://java.sun.com/products/jsp/faq.html
http://www.esperanto.org.nz/jsp/jspfaq.html
http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets