Hi,
I use JIBX for a quite complex set of xml files defined by a schema-like structure. I ran into a problem (StackOverflow) when I tried to bind a recursive element with the following definition (I know it is not "real" xml schema):
<xsd:complexType name="Folder"> <xsd:element name="Name" type="xsd:String"/> <xsd:element name="subfolder" type="Folder" maxOccurs="unbounded"/> <xsd:element name="Description" type="xsd:String"/> </xsd:complexType>
I tried a few different ways to bind it without success.
My Question: Is there a way to bind recursive structures like this one? What I am currently planning to do is writing my own (de)serializer, what should not be too hard a job. But any "easier" solution would be welcomed.
thanks Michael
------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ jibx-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jibx-users
