We recently integrated jasper report to our system. Now we can run report and show result to users with jasper report via standard way, run and show result to user.
But in some cases we need to save result to an object storage and show user when requested, as a document. As far as I know JasperPrint
is a serialized object. saving report result to object storage as a serialized object is not a good way as we experienced our prior report tool. if the object changed the serialization mechanism could not deserialize object.
So we want to save jasper result in xml format to object storage but we couldn't find any way to show exported xml in JRViewer
.
Is there any way to convert exported xml to a visual form?