jasperserver

Encrypting Parameters in URLs

戏子无情 提交于 2019-12-07 08:40:29
I have a URL that looks like this: http://localhost:8001/jasperserver&reportUnit=somereport&username=cghan& password=somepasswrd As you can see, the password is in clear site, along with some other parameters. What's the best way to secure this? Set the method of the FORM (in HTML) to POST. That way attributes won't be shown in the URL (they can be retrieved exactly the same way). Anyway, for anyone with a sniffer, it will make little difference. If it is really important, force the server to use only HTTPS. gigadot Use SSL encryption, i.e. HTTPS. This makes it encrypted for everyone on the

Bold not working in Jaspersoft Studio for fonts other than sans serif

≯℡__Kan透↙ 提交于 2019-12-07 01:58:29
问题 In Jaspersoft Studio I have created a report where I want to display title in bold. If I use sans serif font then it is working correctly. If I use other fonts, bold is displayed in the preview of Jaspersoft Studio, but is not showing when the report is run in the Jasper server. Please help. 回答1: You need to create a jasper fonts extension jar and place it into your classpath both compile-time (while compiling the jrxmls) as well as run-time (while running reports). Here is how the jar (e.g.

Exporting a report with multiple sheets from JasperServer to Excel

故事扮演 提交于 2019-12-06 14:07:25
I created a report using iReport and set the 'One Page per Sheet' option to true in the Excel Export parameters, this generates a report in iReport with multiple sheets. I then loaded the report onto JasperServer, the report's output appears on multiple pages, exporting the report to Excel results in the data appearing on one sheet instead of multiple sheets. Is there a way or an option that can be set so that the data appears on multiple sheets when exported from JasperServer? Thank you. You can use the net.sf.jasperreports.export.xls.one.page.per.sheet property. The information about this

HTTP Request POST.Upload JRXML file via JaspeReports Server

[亡魂溺海] 提交于 2019-12-06 10:39:38
I want upload/update report template JRXML file on JasperReports Server. The official documentation doesn't contain a minimal example for updating report template What is raw request which uploads/updates report template xml via JasperReports Server REST API? I tried to run JasperServer java tests(using maven): http://code.jaspersoft.com/svn/repos/jasperserver/ But I couldn't. There were many errors. Then I found this sample test for updating image in Jasper Server resources: http://community.jaspersoft.com/wiki/getting-started-rest-web-service-api It works! I wrote my request for update JRXML

How to configure mail server settings in JasperReports Server 4.0.0

不羁岁月 提交于 2019-12-06 07:01:38
问题 I'm using JasperReports Server 4.0.0 and I want how to configure mail server settings to mail the reports by report scheduling. How I can do that? Does anyone know this? 回答1: Yahoo settings are: Yahoo! Mail SMTP server address: smtp.mail.yahoo.com Yahoo! Mail SMTP user name: full email address (including "@yahoo.com") Yahoo! Mail SMTP password: Your Yahoo! Mail password Yahoo! Mail SMTP port: 25 So it would be: # This file is now just a pass-through for stuff in the # file referenced by the

JasperReports dynamic input controls

白昼怎懂夜的黑 提交于 2019-12-06 05:25:22
I'm currently trying to create a JasperReport report with some special input control behaviour. My needs are: four input controls, two of them are dateboxes, the other ones are radio buttons depending on radio button choice, one of the databoxes should be visible or not so if option 1 is chosen, show both dateboxes; if option 2 is chosen, show only one datebox I wonder if there's a "clean" solution - didn't find anything. Any pointers will be helpful. The Print when expression is not relevant for input controls on JasperReports Server. There is no built-in support for hiding and showing an

How do you know if Tomcat Server is installed on your PC

只愿长相守 提交于 2019-12-05 16:42:12
问题 I am using Windows 7 OS. I just installed jaspersoft server which installed Apache Tomcat and mysql as a bundle along with it. I go to http://localhost:8080 and theres a message that says webpage is not available. I am a beginner, and I would like to know if Tomcat is first installed on my computer. Can you tell me how I can do that ? ( I would also like to know if it has to be started and on what port it was installed.) UPDATE Heres something I did . i am really confused now . I found the

Jasper server maven repository url?

懵懂的女人 提交于 2019-12-05 13:23:01
I am trying to get below dependency from jasper server. <dependency> <groupId>com.jaspersoft.jasperserver</groupId> <artifactId>jasperserver-api</artifactId> <version>6.0.1</version> </dependency> But i am getting below error Missing artifact com.jaspersoft.jasperserver:jasperserver-api:jar:6.0.1 Here is my POM <project ...> <modelVersion>4.0.0</modelVersion> .... <name>jasperProject</name> <url>http://www.jaspersoft.com</url> <dependencies> <dependency> <groupId>com.jaspersoft.jasperserver</groupId> <artifactId>jasperserver-api</artifactId> <version>6.0.1</version> </dependency> <

Bold not working in Jaspersoft Studio for fonts other than sans serif

吃可爱长大的小学妹 提交于 2019-12-05 06:10:58
In Jaspersoft Studio I have created a report where I want to display title in bold. If I use sans serif font then it is working correctly. If I use other fonts, bold is displayed in the preview of Jaspersoft Studio, but is not showing when the report is run in the Jasper server. Please help. You need to create a jasper fonts extension jar and place it into your classpath both compile-time (while compiling the jrxmls) as well as run-time (while running reports). Here is how the jar (e.g. jasperreports-fonts-5.5.2.jar ) should look: The jasperreports_extension.properties should contain few

REST Web Service API: upload/update report template

喜你入骨 提交于 2019-12-05 04:29:42
问题 I want to store and deploy report template with my code. With this one in mind running a report is a two step process: upload or update existing report template jrxml (it does not have links to other resources like images) run it with my data (this one is done) The official documentation doesn't contain a minimal example for updating report template What is raw request which uploads/updates report template xml via JasperReports Server REST API ? I tried this way here is my raw request here is