Hi Guys,
I have a simple webservice which has one method which saves an xml '
string' as a blob.
Another method then reads this back in, attempts to parse it & then change a value in it.
Once this is done I want to pass this string on to another class. I do not want to create any files.
However when parsing the XML I have been getting constant errors, the latest of which is:
SAXParseException: XML document structures must start and end within the same entity.
This gets thrown by the line:
Document doc = builder.parse(newInputStream);
I have read the input in as a string so I can see that the data looks ok & is all present.
Any help would be greatly appreciated.
The code is below: