Hello,
I am tring to get a PDF report from a java web project. I am using eclipse helios tomcat server 7.0.
What I am tring to do is getting a html report as pdf. The jsp taglib seems great but i have a problem at Turkish chars (they don't shown right at pdf reports).
I have downloaded pd4ml.pro.trial.361b1.zip and added the taglib project to eclipse.
But the jsp file doesn't give me a correct chars.
Code:
<%@ taglib uri="http://pd4ml.com/tlds/pd4ml/2.6" prefix="pd4ml"%>
<%@page contentType="text/html; charset=UTF-8"%>
<pd4ml:transform screenWidth="400" pageFormat="A5"
pageOrientation="landscape" pageInsets="100,100,100,100,points"
enableImageSplit="false">
<html>
<head>
<title>pd4ml test</title>
<style type="text/css">
body {
color: #000000;
background-color: #FFFFFF;
font-family: Tahoma, "Sans-Serif";
font-size: 10pt;
}
</style>
</head>
<body>
Hello, World! ıüöİÖÜŞşÇç
<pd4ml:page.break />
Hello, New Page!
</body>
</html>
</pd4ml:transform>
Any help would be great.