I dont know where to log this one - anyone want to tell me if its a problem or I am doing something wrong?
I am testing the Guththila parser, and have a WSDL which contains an <import> of an XSD.
I have one single guththila environment, and create a new parser for each file encountered.
Guththilla cannot handle that because guththila_event is global, and the inner parse fails because of handling the wrong event
type (the GUTHTHILA_EMPTY_ELEMENT from the outer parse.)
By putting the guththila_event inside the parser structure, and replacing every occurence (18 in all) of guththila_event with
parser->guththila_event, I can successfully re-enter and parse nested files.
Would that be a useful update?