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

florian.johannssen

Members
  • Posts

    32
  • Joined

  • Last visited

florian.johannssen's Achievements

Contributor

Contributor (5/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare
  • Collaborator Rare

Recent Badges

0

Reputation

  1. Hi Jasper fans, i want to sort my data by using a variable. So far so good. On the first view, the order seems to be correctly. The picture below shows what is going wrong. I define the variable as no calculation function. Increment type and reset type are setted to None. Dones anyone have an idea? Kind Regards Florian
  2. Hi jasper fans, i am using the jasper server in version 6.0.1 and I am logged in as jasperadmin. Everything is working fine. But if I want to display all users and roles, nothing will be displayed in the web interface. Besides if I want to create a new user, the Create-User-Popup will not be displayed as well. I didn´t see some helpful information in the logfile. It is strange, because the user table of the jasperserver seems to be correctly and I can log in as jasperadmin successfully. Any Ideas? Best Regards Florian
  3. Hello folks, short question. Is it prossibe to create scheduling jobs as well as sending the generated report as output via email automaticlly by using the community editon of the jasper server? Thnaks. Best Regards Florian
  4. Hallo jasper fans, I am accessing my reports using the rest v2 api of the jasper server (6.1) within a java web application. When I export my reports local on my Jasper Studio, the HTML export displays my charts correctly. But when I generate a HTML Export within my web application, the charts are not displayed. The Image Path seems to be incorrect. The browser is not able to load the image. I have tried a lot of export properties like html.using.images.to.align. But I have still the same problem. Thanks for any suggestions. Best Regards Florian
  5. Try to use "Remove line when blank" inside the properties of your Subreport. Best Regrads Florian
  6. Hi folks, I am trying to get all Parameter information from a report which is stored in my jasper server. I am using the JRS REST client: jrs-rest-java-client OperationResult<InputControlStateListWrapper> parameterList = session.inputControlsService().inputControls().container("/Report/" + reportId).values().get();for (InputControlState input : parameterList.getEntity().getInputControlStateList()) { input.getId()); --> is working input.getUri(); --> is working input.getType() --> does not exists !? input.getLabel() --> does not exists !?} Does anyone know how i can access the label and the type of a parameter? Thanks for any suggestions. Best Regards Florian
  7. Hello Jasper friends, I am using the Jasper REST Client: https://github.com/Jaspersoft/jrs-rest-java-client I want to integrate this lib into my maven pom.xml as dependency. When I put this code into my pom, the following Error-Code will be printed in my Eclipse IDE: Missing artifact com.jaspersoft:jrs-rest-java-client:jar:6.1.4 The POM.xml : --------------------------------------------------------------------------- <project ... <parent> ... </parent> <groupId>...</groupId> <artifactId>...</artifactId> <version>...</version> <name>...</name> <dependencies> <dependency> <groupId>com.jaspersoft</groupId> <artifactId>jrs-rest-java-client</artifactId> <version>6.1.4</version> </dependency> </dependencies> <repositories> <repository> <id>jaspersoft-clients-snapshots</id> <name>Jaspersoft clients snapshots</name> <url>http://jaspersoft.artifactoryonline.com/jaspersoft/jaspersoft-clients-snapshots</url> </repository> </repositories></project>---------------------------------------------------------------------------Does anyone know what I am doing wrong. Thanks for any help. Best Regrads Florian
  8. Yes, I have already solved this problem by using the resourceService() The code: @Testpublic void testGetAllReports() { OperationResult<ClientResourceListWrapper> result = session .resourcesService() .resources() .parameter(ResourceSearchParameter.FOLDER_URI, "/Velimo") .search(); ClientResourceListWrapper resourceListWrapper = result.getEntity(); assertNotNull(resourceListWrapper); assertTrue(resourceListWrapper.getResourceLookups().size() > 0); for (ClientResourceLookup resource : resourceListWrapper.getResourceLookups()) { logger.info("Report: " + resource); }}
  9. Hello Jasper friends, I am using the JRS-REST Java Client to access the jasper server: https://github.com/Jaspersoft/jrs-rest-java-client I am looking for a service to get a List of all reports which are stored in my jasper server like: OperationResult operationResult = session.reportingService() ......Get-All-ReportsDoes anyone have an idea? Best Regards Florian
  10. Hi Jasper fans, in the log file of my jasper server (6.01) occurs this type of exception: An Authentication object was not found in the SecurityContext Does anyone knows how to solve this? Best Regards Florian
  11. Hi hozawa, I have researched a lot and I think there is a solution. I think it is possible to configure the FileVirtualizerFactory by setting the maxSize from the default 300 to 1000 or whatever. Doing this setting, the Virtualizer will generate Virt-File not until after 1000 pages. Best Regards Florian
  12. Hi Jasper fans, i have a big problem with my jasper server. If I want to execute a simple report which takes time about 2 minutes with around about 600 pages, the jasper server generates several hundred thousands of virt-files inside the tmp directory of my application server. Does anyone know how to solve this problem. Thanks for any ideas and suggestions. Best Regards Florian
  13. Hi folks, is it possible to use the Jasper Server Community Edition with a MariaDB as repository db, which is technical identicaly with a MySQL DB. Thanky for any help. Best Regards Florian
  14. Hi folks, does anyone know how to design a report with frames where the textfields can be streched very long like this example: I would like to have flexible and dynamic frames which will be strechted if the textfield are very long. Is there any solution provided by jasper studio? Is it prossible to work with a rectangle and lines? Best Regards Florian
  15. Hi folks, does anyone know, how it is possible to define a parameter as required/mandatory inside the jasper studio. I deploy my report on a jasper server. Furthermore, I am calling the report via the rest_v2 interface within a web-application. I know how to ask a parameter if it is optional or required via the rest_v2 api. But I don`t know how I can do the settings for that. Any ideas? Best Regards Florian
×
×
  • Create New...