Servlet and lotus notes ?

Hi to all.I created simple servlet that runs under Domino and receives POST data from users.I need to store this data in Lotus Notes database.How can I do it ?Thank you in advance.
[215 byte] By [Benzia] at [2007-11-27 3:35:22]
# 1
First of all, you need a JDBC/ODBC driver for the Lotus Notes database. Check the manfacturer's site.
BalusCa at 2007-7-12 8:38:32 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2

There's a Notes API that allows you to access Domino servers, databases, views and documents.

There are two JAR files you can use. Notes.jar allows you to access a Domino server locally (i.e. the servlet must be on the same machine as Domino). NCSO.jar allows you to access a remote Notes server from Java. Search Google for Notes.jar and/or NCSO.jar; there are plenty of examples.

Using this API you can add documents to databases.

RichFearna at 2007-7-12 8:38:32 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...