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

vchiem

Members
  • Posts

    443
  • 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

Posts posted by vchiem

  1. If the version it is not listed in the Platform Support Guide then it means it has not been certified for that version. Whether the error is because of the of the incompatibility between the JasperReports Server and the version of Red Hat is another matter. It does look like an OS error and it might be worthy to google the error for situations where such errors can occur.  

  2. The Access Denied exception is because the permissions assigned to the Audit Domain for ROLE_USER is "No Access". If you allow more permissions to this (eg Administer permission) as well as the data sources that the Audit Domain is built upon, then a non Admin user should be able create the Ad Hoc view off the Audit Domain. 

    But as per page: https://www.jaspersoft.com/editions Professional Editions do not have Audit Logging license, although I think this would generate a different error message or even if there is no error message then the feature wouldn't work. The "About TIBCO JasperReports Server" link dialog shows AUD feature code for Audit Logging feature and if you have this code then you have the enabled feature. 

  3. The Ad Hoc Editor has a toggle option to enable users to view the SQL query. This can be turned on in the Ad Hoc Settings under Server Settings. 

    You cannot edit the SQL query in the Ad Hoc Editor as it is generated based on the user adding columns, rows, filters within the UI.

  4. It connects fine..just failed to upload. Probably a permissions related issue preventing the putting of the file in the location. 

    If you want to see the PUT operations with the actual path then enable the logger component:

    com.jaspersoft.jasperserver.api.engine.common.util.impl.FTPUtil

    in the Server Settings -> Log Settings page (need superuser account) 

    More information on debugging FTP can be found in this wiki article:

    https://community.jaspersoft.com/wiki/debugging-ftp-connection-scheduled-report-jobs

    The putFile method has following code:

      private static void putFile(FTPClient ftpClient, String fileName, InputStream inputData)    throws Exception  {    if (ftpClient == null) {      throw new JSException("Please connect to FTP server first before changing directory!");    }    if (log.isDebugEnabled()) {      log.debug("START:  FUT FILE = " + fileName);    }    ftpClient.setFileType(2);    boolean state = ftpClient.storeFile(ftpClient.printWorkingDirectory() + "/" + fileName, inputData);    if (log.isDebugEnabled()) {      log.debug("END:  FUT FILE = " + fileName + " STATE = " + state);    }    if (!state) {      throw new JSException("Fail to upload file " + fileName);    }  }[/code]

     

  5. There is already an internally defined user. If you want to log in as this user as an external LDAP user, then the internal user must not exist because it will sychronize the external user and mark it as 'externally defined'. The admin user or superuser can manage users. 

  6. The service pack can be applied on top of 8.0.0 in the same way as that of the hotfix application...and the instructions are in the readme.txt under the subdir "jasperserver".  You can see the file size difference. The bin zip version contains the buildomatic files and the jasperserver.war and is there for users to do full install using the install scripts or actual upgrade using upgrade scripts. The instructions for install and upgrade should be in the actual install and upgrade guides. If your upgrade involves just extracting the bin version zip on top of  existing 8.0.0 then that is incorrect...the service pack does this...much more quick and easy. 

  7. It looks like a problem with the jasperserver.tld. But usually we do not get this error upon boot unless something changed in the Tomcat context.xml that triggers the check.   

    But you can try to manually rectify the file. The <info>  should come after the <bodycontent> so that it confirms to the matching pattern that it expects. So you can try to shift the <info> down and this is should be done to the xssNonce tag name as well.

        <tag>        <name>out</name>        <info>Tag surrounds JSP code in which EL expressions should not be XML-escaped.</info>        <tagclass>com.jaspersoft.jasperserver.war.tags.JasperOutTag</tagclass>        <bodycontent>JSP</bodycontent>        <attribute>            <!--                Determines whether characters < > ( ) ; ' " in EL expression values                will be converted to their corresponding character entity codes.                Default value is false.            -->            <name>escapeScript</name>            <required>false</required>        </attribute>        <attribute>            <!--                When true, escapes the contents with UTF-8 versus entity codes                Default value is false.            -->            <name>javaScriptEscape</name>            <required>false</required>        </attribute>    </tag>[/code]

     

  8. There is one particular scenario where this can occur that I am aware of...although there may be other possibilities.

    When there is the existence of the same Windows user, either as a local account or the same user in a different domain, and the installation is done with this user, then the script creates keystore files with 0 bytes...with the error Failed to create the keystore. 

  9. Depending on the version of JR Server, it should already come bundled in. The AutoRest driver looks like this "TIautorest-6.0.0.004291.jar" and resides in the WEB-INF/lib directory. That is the version bundled in with the latest v8.0.0. Previous releases may have earlier versions of AutoRest driver. 

    For JS Studio, do a search for TI*.jar and it should be there amongst the other drivers. (mine is in C:Program FilesTIBCOJaspersoft Studio Professional-8.0.0configurationorg.eclipse.osgi41.cplib)

     

×
×
  • Create New...