This is probably a stupid question, but I could not get it to work. Suppose
I have an XML file like this:
<?xml version="1.0" encoding="UTF-8" ?>
<Result>blah</Result>
How exactly would I go about unmarshaling?
What is weird is that I can easily unmarshal something like this:
<?xml version="1.0" encoding="UTF-8" ?>
<Result><Entry>blah<Entry></Result>
-Bruno
--