sudhin philip

Greenhorn
+ Follow
since May 09, 2011
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by sudhin philip

Hi,

I think you are facing this issue due to xml that is not in good format...Here is a work around for you. Just clean up xml, before parsing it....just replace xml's '&', with "& amp;"(ignore the space between "& amp;")..... this may fix your issue.... as this kinds of issue could arrise due to appearance of '&' in the XML data obtained.

eg: if your string (xmlString ), is your XML data, then

xmlString = xmlString.replaceAll( "&", "& amp;" );
[please ignore the space between "& amp;" as i could not produce the same word when saved to the form. ]

will give you an error free XML string for parsing.

Hope it may saved your time atleast few minutes

Regards,
Sudhin Philip.