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

Rutuja Bhalchandra Shinde

Jaspersoft Staff
  • Posts

    45
  • Joined

  • Last visited

  • Days Won

    1

 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 Rutuja Bhalchandra Shinde

  1. Hi, It looks like organization mapping is not done correctly. Please refer to the below guide for the same : Thank you!
  2. Hi, Could you please reproduce the issue and provide the jasperserver.log file? Also, please provide the LDAP authentication file.
  3. To change the reference of Oracle JDK/JRE to Open JDK/JRE open the "Jaspersoft Studio.ini" file you will find this file under the folder where you've installed Jaspersoft Studio. There should be the following line: -vm features/jre.win32.win32.x86_64.feature_1.8.0.u151/jre/bin Replace the second line with an absolute path to your jre/bin Example: -vm C:\Users\rushinde\Downloads\openlogic-openjdk-jre-11.0.18+10-windows-x64\openlogic-openjdk-jre-11.0.18+10-windows-x64\bin Save the changes and open the Jaspesoft studio.
  4. To disable the interactivity of the table please use the below property : net.sf.jasperreports.components.table.interactive You could use this property on the report, table, or column level to disable the interactivity of the table. Please refer to the below link for more information : https://jasperreports.sourceforge.net/config.reference.html#net.sf.jasperreports.components.table.interactive
  5. The below steps will demonstrate the way to set the password to the PDF file exported from the JasperReports Server : To encrypt the pdf file please add these four properties to a jrxml, and upon export to PDF, you'll be prompted by your PDF reader for the password. <property name="net.sf.jasperreports.export.pdf.encrypted" value="True"/> <property name="net.sf.jasperreports.export.pdf.128.bit.key" value="True"/> <property name="net.sf.jasperreports.export.pdf.user.password" value="myPass"/> <property name="net.sf.jasperreports.export.pdf.owner.password" value="myPass"/> Please refer to the below links for more details : https://jasperreports.sourceforge.net/config.reference.html#net.sf.jasperreports.export.pdf.owner.password https://jasperreports.sourceforge.net/config.reference.html#net.sf.jasperreports.export.pdf.user.password
  6. You could try the below steps to disable ActiveMQ : 1. comment the Activemq (line no:32& 62-66), under the docker-compose file 2. Remove ‘Djasperserver.cache.jms.provider=tcp://activemq:61616’ in javaopts(line no 23) under docker-compose file 3. delete the files ehcache.xml and ehcache-hibernate.xml in docker/jrs/cluster-config/WEB-INF. 4. create the images.
  7. While creating a Domain based on the Virtual data source customer was facing the below error : Caused by: org.teiid.api.exception.query.QueryValidatorException: TEIID30492 Non-comparable expression of type object cannot be used in comparison Virtual data sources use TEIID, hence is a different implementation than a normal JDBC data source and TEIID does not support UUID-type fields. For Virtual Data Source, SQL queries are validated against TEIID SQL and TEIID sees UUID fields as Objects. You can try creating a view in your database first with the SQL and then create a Virtual Data source based on this view. The view should cast the UUID to string (ie text). Here is an example using Postgres where store_id is a UUID type field : CREATE VIEW "vw_temp_store" AS SELECT CAST("temp_store"."store_id" as text) AS "store_id_cast", FROM "temp_store"
  8. Hi, The issue is certificate is not found by the studio while making the connection. You could refer to the below suggestion : Thank you!
  9. Hi, please check if the user who started the services of the JRS has all the permissions to the temp folder.
  10. Hi, You can create a new temp path for the chrome and set the same path to the property. Just make sure the temp folder should have all the permssions.
  11. Hi, we kindly request that you add the following property to the "jasperreport.properties" file, located at Path: \apache-tomcat\webapps\jasperserver-pro\WEB-INF\classes\jasperreport.properties." net.sf.jasperreports.chrome.tempdir.path=C:\\Program Files\\Apache Software Foundation\\apache-tomcat-8.5.77\\chrometemp This approach ensures that the files used for Chrome rendering are not deleted during a clean restart (i.e., when the tmp folder is removed). Thank you!
  12. Hi, The authentication dialog box is one time only when you freshly installed the jaspersoft studio. Afterwards, you will able to use the jaspersoft studio offline. Thank you!
  13. Hi, Could you please attach the detailed log file for review? Thank you!
  14. Hi, Please make sure that you have placed the font jar file under the WEB-INF/lib folder while generating the report. Thank you!
  15. Hi, You could refer to the below video for cross-site origin setting : Thank you!
  16. Hi, Could you please test the issue in JRS 8v? Thank you!
  17. Hi, Could you please provide the main and subreport to test and investigate the issue? Thank you!
  18. Hi, could you please test the issue by stopping your Tomcat, clearing Tomcat's work & and temp directories, and also clear the browser's cache & and cookies, and restarting the Tomcat? Thank you!
  19. Hi, We deprecated the community version a long time ago (JETL Express). Customers can directly download the same artifact from Talend, you will get the latest and the greatest version. Thank you!
  20. Hi Uedem, Could you please let me know what error are you facing in jaspersoft? Could you please provide the error details? Thank you!
  21. Hi, The correct rendering of Myanmar font relies on Java support. With the latest version of JRS, we are able to support OpenJDK 11. With OpenJDK 11.0.8 along with setting : net.sf.jasperreports.export.pdf.glyph.renderer.blocks.burmese=myanmar in WEB-INF/classes/jasperreports.properties file, then the font should render correctly. Thank you!
  22. Hi 1) Create a variable 2) Calculation = Nothing 3) Expression : $F{Field1}.doubleValue()/$F{Filed2}.doubleValue())*100 4) Drag the variable onto the design area of the crosstab component. 5) Double-click the variable to open its expression a) By default you can see its expression as $V{Variable_1}
  23. Hi, This issue normally occurs when the jar file of the particular class is missing. Please add the jar file for the missing class to the classpath. Thank you!
  24. Hi, Please adjust the height of the band and text field to avoid blank spaces. Thank you!
  25. Hi, Could you please provide the jrxml file to review? Thank you!
×
×
  • Create New...