Can we export HTML files into ARIS and Generate Models. As we do with Microsoft Excel sheets using Process generator.
1 Reply
-
Hi Suresh,
this is not so easy, but possible if you are importing XHTML. In a report script you can use
var parser = Context.getXMLParser(bytearray_of_your_file)
var document = parser.getDocument()
var rootElement = parser.getRootElement()
with document and rootElement you have the entry points to the JDOM DOM tree of your HTML source.
Hope this helps.
BR, Torsten