I’m developing a composite application that will have both NSF and Eclipse components. The CA definition and NSF components will all be in the same NSF database.
I am trying to develop an Eclipse component that can do data lookups in the NSF, but I can’t figure out how I can get a reference to the database without hard-coding the replica ID. I tried using the special URL for the current database and resolving it:
Object o = session.resolve(“notes:///0000000000000000”);
but this doesn’t work. It returns a database object, but I can’t open it or query any of its properties.
I’ve also tried computing the URL to the com.ibm.notes.ComputedNotesURL advanced property and then querying that from my Eclipse component, but it just returns the formula, not the result.
- Bruce