Jump to content
We've recently updated our Privacy Statement, available here ×

rick_whitescarver

Members
  • Posts

    3
  • Joined

  • Last visited

 Content Type 

Profiles

Forum

Events

Featured Visualizations

Knowledge Base

Documentation (PDF Downloads)

Blog

Documentation (Test Area)

Documentation

Dr. Jaspersoft Webinar Series

Downloads

Everything posted by rick_whitescarver

  1. I have jasper 6.2 community edition installed using bundeled tomcat and postgres databases that the installer configured up. So nothing custom. Logged in as jasperuser, I launch a report. Then using the rest_v2 URL interface I can query the currently running reports. No problem. I see the report that I'm running. From the docs: http://<host>:<port>/jasperserver[-pro]/rest_v2/reportExecutions/ In my case: http://MYSERVERNAME:MYPORT/jasperserver/rest_v2/reportExecutions/ Which gives me output: <reportExecutions> <reportExecution> <reportURI>/Reports/PATHTOMYREPORT/MYREPORT.jrxml</reportURI> <requestId>1675750762_1496834835548_1</requestId> </reportExecution> </reportExecutions> Looking at the docs I should be able to get the details of this report running by doing From the docs: http://<host>:<port>/jasperserver[-pro]/rest_v2/reportExecutions/requestID In my case: http://MYSERVER:MYPORT/jasperserver/rest_v2/reportExecutions/1675750762_1496834835548_1 But that gives me an error every time. <errorDescriptor> <errorCode>resource.not.found</errorCode> <message>Resource 1675750762_1496834835548_1 not found.</message> <parameters> <parameter>1675750762_1496834835548_1</parameter> </parameters> </errorDescriptor> I must be doing something wrong?
  2. I use both pro and CE versions of jasper reports server at my office. Both of them show the same behavior. But for specifics the version of CE that we are using is version 6.2.0 20151123_1853 The Business line users of japser at my shop have controlled workstations where their broswer window has to be full screen mode. Or at least it is that way by default and difficult to explain that to 1000 users on how to change that.... So lets just assume that the browser will be in full screen mode. When they login to jasperReports server console and choose the "Library" view on the top menu bar jasper will only display 40 reports. There are many more that could be displayed, but jasperreports stops at exactly 40. There is no scroll bar on the right to allow them to scroll down and load more reports. I can duplicate this issue if I run my browswer in full screen mode too. But if I dont have it maximized/full screen when the reports are loaded, there is a scroll bar and you can scroll down and make it load more as you scroll down. Is there a setting in jasperreports somewhere to control how many reports are loaded by default when going to the Library view? Is there a way to force jasperreport to put a scroll bar on the window?
  3. I had this error today net.sf.jasperreports.engine.JRRuntimeException: Infinite loop creating new page due to page header overflow. at net.sf.jasperreports.engine.fill.JRVerticalFiller.fillPageHeader(JRVerticalFiller.java:410) at net.sf.jasperreports.engine.fill.JRVerticalFiller.fillReportStart(JRVerticalFiller.java:253) at net.sf.jasperreports.engine.fill.JRVerticalFiller.fillReport(JRVerticalFiller.java:119) My report has a Main report that contains just 1 subreport. The issue I had was that I mistakenly uploaded the Main report jrxml file on top of the subreport's jrxml file (they are similarly named in my GIT repo). So the recursion was that it was trying to run the main inside the main inside the main inside the main leading to the recursion error. Re-uploaded the correct file into the subreport and then the recursion issue went away.
×
×
  • Create New...