#35160
We are testing pd4ml-bin-4.0.15fx1.
We have a jsp from which we want to create a PDF with its html content;
the content of the jsp is as follows:
<pd4tl:transform screenWidth=”1024″ pageFormat=”A4″ inline=”false” fileName=”ContractSummary.pdf” >
<pd4tl:usettf from=”font java path” embed=”1″/>
<jsp:include page=”/ecm/summary/tableTest.jsp” />
</pd4tl:transform>
and tableTest.jsp contains
<h3>TEST</h3>
<table cellpadding=”1″ cellspacing=”1″>
<caption class=”accessHidden”>Carlo</caption>
<tr>
<th>Milestone Type</th>
<th>Title</th>
<th>Description</th>
<th>Due Date</th>
<th>Alert</th>
<th>Alert Recipients</th>
<th>Assessment</th>
<th>Last Modification Performed by</th>
<th>Last Mod</th>
</tr>
<tr>
<td>data 1</td>
<td>data 2</td>
<td>data 3</td>
<td>data 4</td>
<td>data 5</td>
<td>data 6</td>
<td>data 7</td>
<td>data 8</td>
<td>data 9</td>
</tr>
</table>
in this way the pdf is produced and downloaded without any problems;
if, however, we modify the last <th> from
<th>Last Mod</th>.
to
<th>Last Modification</th>.
the production of the pdf does not complete and remains hanging without error.
Is this a known problem?
Is there any way around the problem?
Thanks