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

ghayes

Members
  • Posts

    3
  • Joined

  • Last visited

ghayes's Achievements

Newbie

Newbie (1/14)

  • Week One Done
  • One Month Later
  • One Year In
  • First Post Rare
  • Conversation Starter Rare

Recent Badges

0

Reputation

  1. Hi kashoory, We just moved to version 5.6.1 in AWS and are using Amazon SES to send our report emails. We ran into the same issue with SSLException error. I found the following information when trying to debug this: http://www.gubatron.com/blog/2013/08/07/solved-java7-smtp-issue-caused-by-sun-security-pkcs11-wrapper-pkcs11exception/ It turns out that Jasper updated the AMI to use Java 7. After a few different attempts I found a solution that works. Here are my entries from js.quartz.properties and the applicable entries in applicationContext-report-scheduling.xml. Things could probably be cleaned up a little, but it works. --------------------------- report.scheduler.mail.sender.host=email-smtp.us-east-1.amazonaws.com report.scheduler.mail.sender.username=AWS_ACCESS_KEY (Use your value) report.scheduler.mail.sender.password=AWS_SECRET_ACCESS_KEY (Use your value) report.scheduler.mail.sender.from=amazonsesregisteredemailaddress (Use your value) report.scheduler.mail.sender.protocol=smtp report.scheduler.mail.sender.port=25 report.scheduler.mail.ssl.ciphersuites=SSL_RSA_WITH_RC4_128_MD5 SSL_RSA_WITH_RC4_128_SHA TLS_RSA_WITH_AES_128_CBC_SHA TLS_DHE_RSA_WITH_AES_128_CBC_SHA TLS_DHE_DSS_WITH_AES_128_CBC_SHA SSL_RSA_WITH_3DES_EDE_CBC_SHA SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA SSL_RSA_WITH_DES_CBC_SHA SSL_DHE_RSA_WITH_DES_CBC_SHA SSL_DHE_DSS_WITH_DES_CBC_SHA SSL_RSA_EXPORT_WITH_RC4_40_MD5 SSL_RSA_EXPORT_WITH_DES40_CBC_SHA SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA TLS_EMPTY_RENEGOTIATION_INFO_SCSV --------------------------------------- true true true true "${report.scheduler.mail.ssl.ciphersuites}"
  2. We are using JasperSoft 5.5 and are building reports using the "Table component". Ideally, we would like the report to run with some columns initially hidden. This works fine. However, if I try to "Show" a hidden column nothing happens and I see the error message: "Uncaught TypeError: Cannot read property 'config' of undefined" This is the error in Chrome. In Firefox I see "jive.elements[args.columnUuid].config.parentId is undefined" The only way I can seem to get the Show/Hide functionality to work is if a select "Show All". I can then hide and show columns while I have the report open. But if I rerun the report the same error happens again. It appears to be an error in the follow file: jasperserver-pro/reportresource/reportresource?resource=net/sf/jasperreports/components/headertoolbar/resources/require/jive.interactive.column.js on line 425. Has anybody else experienced this issue? Thanks, Greg
×
×
  • Create New...