Suresh Talari on March 15, 2014 Can we export HTML files into ARIS and Generate Models. As we do with Microsoft Excel sheets using Process generator. Tags #aris Bookmark Like Share Sign in or register to reply. Notify Moderator 1 Reply Sort by Date ASC Date DESC Likes Sort by Date ASC Date DESC Likes Torsten Haase on March 27, 2014 - 11:28 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 Like Sign in or register to reply. Notify Moderator
Torsten Haase on March 27, 2014 - 11:28 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 Like Sign in or register to reply. Notify Moderator
Torsten Haase on
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