is there any way to integrate/embed JasperServer into another web app? The thing is that the login page of JasperServer should be somehow bypassed. Is it maybe possible to do authentication through web service / REST, skip login page, and then show the main server page in an iframe, or something to that effect?

Thanks.

link|improve this question

62% accept rate
1  
You can use JasperReports Server servlets, for example. Info about JRS servlets is here: jasperforge.org/plugins/mwiki/index.php/Jasperserver/…. – Alex K Nov 18 '11 at 10:48
The link is about JasperServer web service. I cannot find any info about JasperServer servlets. – wannik Dec 14 '11 at 1:04
feedback

2 Answers

You can use Http protocol and pull the reports in an iframe. The authentication information needs to go in URL as j_username and j_password.

To use Rest service, you need to write a REST client (I did it using Jersey with Http authentication) where authentication info goes in the Header.

It also provides SOAP services for integration which I haven't tried yet.

link|improve this answer
feedback

JasperServer Authentication is implemented by Spring Security, so you can use a SSO mechanism supported by Spring Security easily. You can find XML configuration file (for the security) easily.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.