Is there a way to POST data to the URL that is used to render the pdf?
I use a JSP and would like to post some large java objects to be used by the JSP.
Code:
ByteArrayOutputStream baos = new ByteArrayOutputStream();
PD4ML pd4ml = new PD4ML();
// Some http post stuff here
pd4ml.render(url, baos);
/Christian