Talking to a Notes document database from a JSP

This is what I need to do:

We have 2 iseries machines.

I have my web application running on one machine.

I have my Domino Notes(6.0) document on another machine.

Is it possible for me to get the values of a particular field in a Notes document from my web application(which has been built using JSP 1.0)?

NOTE: I use JSP 1.0. So I’m unable to use tag extensions.

If you know how to do this please help me with this - with some details.

Subject: Talking to a Notes document database from a JSP

Use CORBA or, if your NSF is accessible via HTTP, why not use that? It’s simpler, and is a technique I’ve used quite happily (the JSP makes an HTTPUrlConnection to the Notes database). There’s some sample code on my site somewhere…

HTH

Subject: use a scriptlet and then use Corba to get to the Notes doc

You can write an embedded Java program in your JSP that will access Notes via corba. Their are many articles on using corba at notes.net.

Howard