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

Mehul Bamania

Jaspersoft Staff
  • Posts

    6
  • 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 Mehul Bamania

  1. There isn't any way to recover any deleted folders from the server, unless you have a backup.
  2. This article explains the main differences between the Standalone Web Studio and the WebStudio embedded with JasperReports Server. The main differences between the 2 offerings are mainly around the Repository Management and Authentications. The editors/designers features are identical. Standalone Allows you to configure SSO via external repository management tools like Google drive and GitHub. Allows you to Configure the Jackrabbit repository with different OAuth providers, which allows you to manage users and their repositories. Standalone JRWS allows you to configure different external/multiple repositories like Host File Repo, GitHub, Google Drive. Ability to configure a connection to remote JRS repository (like in JSS) where you will have to provide credentials. The standalone version has no notion of report unit (it does only when JRS repository is used as repository of JRWS, in which case JRWS act similarly to JRS). By default in JRWS data is fetched by means of Data Adapters only. Embedded with JasperReports Server No option to configure any other external repository connections, only allows you to manage JasperReports Server resources. No options to configure any authentication, only uses existing JasperReports Server sessions. Tied to exiting JasperReports and no option to connect to any other instance(s) of JRS. There is not the ability to fetch the metadata from a JDBC connection provided as JRS data source, so the metadata panel in the designer may not be populated when using a JRS data source (this may be solved in the future) Preview works for Report Units. Please contact Jaspersoft Support for any further information including any licensing requirements. https://community.jaspersoft.com/knowledgebase/getting-started/jasperreports-web-studio-professional-edition/ https://www.jaspersoft.com/products/jaspersoft-commercial
  3. Please get in touch with JasperSoft Customer Success or Sales team.
  4. Hi, Please can you post the error and a screenshot of this. Also refer to the Enable SSL section in the Security Guide. Here is also another article that may help. https://helicaltech.com/enable-ssl-https-settings-in-the-tomcat-of-jasper-server/
  5. I don't the Web Service DS is supported anymore, you should use the REST driver or JSON DS.
  6. Yu can use expresion like this: $F{GRP_FAC_ACT_BAL}==null?"":new DecimalFormat("##,##0.00").format(BigDecimal.valueOf(Double.valueOf("123.42"))) or long $F{GRP_FAC_ACT_BAL}==null?"":new DecimalFormat("##,##0.00").format(BigDecimal.valueOf(Long.valueOf("123456")))
  7. Jasperserver does not provide an out of the box solution to configure Ehcache replication using ActiveMQ over ssl in a clustered environment. Clustering (page 135): https://docs.tibco.com/pub/js-jrs/8.0.3/doc/pdf/TIB_js-jrs_8.0.0_Ultimate-Guide.pdf?id=11 Please see below steps to configure ActiveMQ over SSL or AmazonMQ (which only supports over SSL): 1. Creating your SSL certificates, keystore and truststore files for broker and client, see http://www.giuseppeurso.eu/en/activemq-and-the-ssl-transport/ for further details 2. Enabling the SSL transport for ActiveMQ with trusted clients 3. Before starting the broker’s VM, set the ACTIVEMQ_SSL_OPTS environment variable so that it knows to use the broker keystore. (note that in previous versions of ActiveMQ this property was called SSL_OPTS in some scripts. As of v5.12.0 all scripts use ACTIVEMQ_SSL_OPTS): export ACTIVEMQ_SSL_OPTS = -Djavax.net.ssl.keyStore=/path/to/broker.ks -Djavax.net.ssl.keyStorePassword=password 3. Configure Ehcache to use ssl protocol ssl://hostname:port?key=value 4. Specify the java properties for the client to reference the client keystore that was created in step 1. Other references: https://activemq.apache.org/how-do-i-use-ssl https://activemq.apache.org/ssl-transport-reference http://www.giuseppeurso.eu/en/activemq-and-the-ssl-transport/
  8. For each parameter in Studio, there is a isPrompt flag in the properties. For InputControl, this needs to be visible. There is also a configuration in Jsaperserver to always Prompt before running the report, this can be modified in the Report Unit Properties.
  9. Hi, you can use the following Java expression in the textfield expression for the title element field: $F{tblCompanyInvoiceParameters.InvoiceHeaderID}==0 ? "Invoice" : $F{tblCompanyInvoiceParameters.InvoiceHeaderID}==1 ? "VAT Invoice" : $F{tblCompanyInvoiceParameters.InvoiceHeaderID}==2 ? "TaxInvoice" : "Default Title"
  10. Hi, Did you delete the report from the server, was it a report published from Studio, please provide further details. It is very vague to just mention the deletion and option to recovery. There is no option to recover unless you have a back up of the export.
  11. Hi, Are you trying to send the response to a particular printer? You cannot send the file/response directly to specified printer but have to request an export and send that to a configured printer yourself.
  12. Hi, have you reviewed this article: https://jasperreports.sourceforge.net/sample.reference/forms/index.html https://community.jaspersoft.com/questions/815191/how-make-editable-pdf-fields-jasper-report
  13. When you say it does not load, do you get any errors? What is the exception you are getting, can you post your code?
  14. Hi, Yes this is achievable if the Crosstab rows are grouped by Item, Columns are grouped by day and totals are sum of qty. Please send a jrxml with a sample query data if possible.
  15. Hi, Please add further information with some screenshot of the requirement or a short video? You should easily be able to do this via studio as well.
  16. Hi, It is hard to understand the requirement like this, can you please share a jrxml file as well as the requirement you are looking for.
  17. You can change the default unit at the report level properties under the Page format options.
  18. You can change the default unit at the report level properties under the Page format options.
  19. Hi, You need to attach it in studio, an sub report element and reference the server resource if you want to load it from a server resource.
  20. Hi, JasperReports is a Java library and can be used to produce reports using Java. Please see this javascipt framework to embed reports from the Jasperserver into your applicatios, it is a commercial feature. https://tibcosoftware.github.io/js-visualize/#introduction You can also embed reports via iframe and REST/HTTP APIs. In both instances you will require JasperServer.
  21. HI, I do not understand your question, please provide more information and the jrxml file, may be a short video of your issue.
  22. Hi, Please can you elaborate more on which properties are missing. Also please provide further information on the following: 1. Versions(s) you are moving from and to? 2. Attach a sample jrxml file.
×
×
  • Create New...