transcodingResponse = (TranscodingResponse) unmarshallingContext
.unmarshalDocument(inputStream, null, null);
} catch (TransformerException e) {
// Caught in case of DOM to String transformation.
throw new ConverterException(e);
} catch (JiBXException e) {
// Caught in case JiBX unmarshalling failed.
throw new ConverterException(e);
}
return transcodingResponse;
}