DXL Parse

Hi,I have 2 questions.

  1. Is it possible to generate DXL only for one design element (like form)?

  2. We have generated the DXL for whole DB; could some tell me how to parse it so that we can get the form information?

We want all field name, and field type from the generated DXL?

Thanks in advance.

Dan

Subject: DXL Parse

Answer 1: yes, you can. To do this you should define a NotesNoteCollection with the wanted design element(s) and use it as input for your NotesDXLExporter. To set the wanted design elementes you could create the colelction and use the Add function to add individual design elements. You could also get all desing elements of certain type by setting the appropriate option and use BuildCollection.

Answer 2: you could parse it using the NotesDomParser. I would advice to have a look at the Designers Help for the NotesDomParser. The WalkTree is a good starting place.

Subject: DXL Parse