-
-
Notifications
You must be signed in to change notification settings - Fork 87
Open
Description
Oftenly with long XML strings it won't parse using the command
untangle.parse(xmlstring)
So, to make this work I first convert the string to an element tree, save it as a temp file and read the file like
untangle.parse(xmlfile)
Not sure if this is the way to go. Once I got the xml in an element tree I could access the objects I want, but I like the untangle framework more. Therefor submitting this issue
tairoman, tastyminerals, KyleKing and Liam-Deacon