On 23 September 2011 21:30, Sweeney, Mark
<Mark.Sweeney_at_verizonwireless.com>wrote:
> I am making the following call:****
>
> Unmarshaller unmarshaller = jaxbContext.createUnmarshaller();****
>
> Object obj = unmarshaller.unmarshal(*new*ByteArrayInputStream(data.getBytes()));
> ****
>
> ** **
>
> Note that jaxbContext is a singleton that has been initialized.****
>
> In my core dump I see a stack trace that ends with
> java/util.zip.ZipFile.getEntry();****
>
> ** **
>
> Question:****
>
> Does each call to Unmarshaller.unmarshal result in a file read operation?
>
If the XML data doesn't come from a file and you don't ask for validation
which might necessitate reading an XML Schema and if the primary XML data
doesn't contain import or include: no.
-W
> ****
>
> ** **
>
> TIA,****
>
> Mark****
>