Hi,
Is it possible to execute LotusScript from java code? If yes, any pointers on how to do it?
Thanks in advance for ur help.
-Priya
Hi,
Is it possible to execute LotusScript from java code? If yes, any pointers on how to do it?
Thanks in advance for ur help.
-Priya
Subject: *I think only by launching a LotusScript agent from Java.
Subject: Is it possible to execute LotusScripts from java code?
No I don’t think so.
But why would you want to do that??
Java can do all that LS can do …and much more.
brgds
Jesper Kiaer
Subject: RE: Is it possible to execute LotusScripts from java code?
Hm . . . you’re right . . . sort of IMHO. Domino has an arguably richer Java object model than the equivalent Lotusscript object model. But Java can’t manipulate UI objects.
Subject: RE: Is it possible to execute LotusScripts from java code?
This is because i wish to perform group resolution/expansion on all the groups present on domino. Currently my code takes 4 days to complete 1 round of group resolution.
We have around 100,000 groups and around 1,50,000 users.
By group resolution i mean the following,
Get all groups present on domino
for each group, get its children
for each child, check if its group or person. If person, get the person’s shortname and fulname. If its group, get its members.
and so on…
there is some logic to take care of cyclic groups as well.
Notes API are slow. Hence i wanted to know if the above operation can be performed using LS or formula or anything that will make it fast…
Please help