PDF file generated gets changed

2

I developed a report in JasperStudio that takes some information in the Database and also some parameters that are passed via Inputs fields when I am testing the application on my station , the PDF is generated correctly, but when I'm running the same application on the development server the PDF file gets missing and misconfigured parts.

Localhost the file exits with the following Header (Correct Form)

Andwhenrunonthedevelopmentserveritlookslike(Incorrectway)

What could be causing this?

    
asked by anonymous 18.08.2017 / 21:11

1 answer

1

With the help of @GustavoFragoso's comment, I was able to find out why the files were being generated differently when the process was executed localhost and when executed in Servidor de desenvolvimento , the problem of the words being cut off was that the size I set for Static text was very small (which for me does not make sense, since when run localhost it worked normally and did not cut anything). And the reason the date text is leaving August is because the server actually is in English, so it was agreed that the date will appear in this format dd / MM / yyyy and not as the name of the month.

I hope this helps those who have a similar need

    
21.08.2017 / 13:49