Retrieve Lotus Designer information from java -
Is there a way from the external Java program that is usually available in Lotus Designer?
I am able to get form names, field names and field types, and do so to look through such notes. But I am unable to draw data about other information such as combobox options or pages, codes, navigators, etc. Do anyone know if there is an existing utility (clearly in addition to the designer) who is capable of pulling this information, or a jar file in addition to the notes that are capable of pulling this information is.
There are several options that you can consider in all those jars made available through IBM Has been included.
-
You can define notes on the design elements by using Java methods as objects in the Java API. Design elements are documents, so you can process them. Most of the time which is not very useful.
-
Access DXL to design elements, which is a relative accurate representation of domino objects in XML. OpenTTF is a project on which I have designated DXLMagic, which exports DXL, you want to see the source
-
Domino Designer has support for version control when you use it , The Domino Designer copies the design content of a NSF into a directory structure. You can process that directory (DXL, XML, Plain text and resource files) with any device
-
Eclipse virtual file system to access the NSF in the Domino Designer API used (instead of file it uses the IRSOS interface) When you "borrow" EVFS plug-in, you can use it in an OSGI application.
Hopefully
Comments
Post a Comment