Guththila fails to parse the the following XML, because there is a '/'
char in text "Virtusa/LSF" :(
(Thanks Nandika on the tip where it crashes :) )
Note: the following content was taken from Axis2 Java test xml files.
<ns1:Root xmlns:ns1="http://www.apache.org"
xmlns:ns2="http://www.opensource.lk">
<ns2:developers xmlns:ns3="http://www.whatever.com">
<ns3:developer>
<name>Davanum Srinivas</name>
<id>dims</id>
<email>[EMAIL PROTECTED]</email>
<organization>Computer Associates</organization>
</ns3:developer>
<ns3:developer>
<name>Glen Daniels</name>
<id>glen</id>
<email>[EMAIL PROTECTED]</email>
<organization>Sonic Software</organization>
</ns3:developer>
<ns3:developer>
<name>Sanjiva Weerawarana</name>
<id>sanjiva</id>
<email>[EMAIL PROTECTED]</email>
<organization>IBM/LSF</organization>
</ns3:developer>
<ns3:developer>
<name>Eran Chinthaka</name>
<id>chinthaka</id>
<email>[EMAIL PROTECTED]</email>
<organization>LSF/Eurocenter DDC</organization>
</ns3:developer>
<ns3:developer>
<name>Jaliya Ekanayake</name>
<id>jaliya</id>
<email>[EMAIL PROTECTED]</email>
<organization>Virtusa/LSF</organization>
</ns3:developer>
</ns2:developers>
</ns1:Root>
Any help to fix the bug would be great .
Thanks,
Samisa...