Hello Pradeep,
i just managed to pull data out of a Notes database, so probably this could
help you a little.
There are two ways of doing this. First you can try to integrate the
GNUJSP1.0 package into the Domino Server, by using the Domino Servlet
Manager. Second you can install Tomcat and use Domino simply as a database.
There is a dokument under
<http://www.lotus.com/developers/devbase.nsf/7254fc4c5ce9ce748525683f00748668/d1872baaf7cc781e852568af004d8888?OpenDocument>
descriping these two ways.
You have to initialize a NotesThread at the beginning of your connection to
create a session with Domino.
     NotesThread.sinitThread();
     notesSession = NotesFactory.createSession();
     db = notesSession.getDatabase(null,"Ttest.nsf");
     view = db.getView("Show People");

Regards
Sebastian


Mit freundlichen Grüßen

Sebastian Fuchs

Kasten Consulting AG
Brückenstraße 14/16
D51379 Leverkusen
Telefon: +49 (0)2171 7277-0
Telefax: +49 (0)2171 7277-77
eMail: [EMAIL PROTECTED]
http://www.kasten.com

===========================================================================
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

Reply via email to