Jump to content
Changes to the Jaspersoft community edition download ×
  • This documentation is an older version of JasperReports Server Security Guide. View the latest documentation.

    Secure Sockets Layer (SSL) is a widely-used protocol for secure network communications. It encrypts network connections at the Transport Layer and is used in conjunction with HTTPS, the secure version of the HTTP protocol. This section shows how to install SSL on Tomcat 9 and to configure JasperReports Server to use only SSL in Tomcat.

    Setting Up an SSL Certificate

    To use SSL, you need a valid certificate in the Tomcat keystore. In the Java Virtual Machine (JVM), certificates and private keys are saved in a keystore. This is the repository for your keys and certificates. By default, it's implemented as a password-protected file (public keys and certificates are stored elsewhere).

    If you already have a suitable certificate, you can import it into the keystore, using the import switch on the JVM keytool utility. If you don't have a certificate, you can use the keytool utility to generate a self-signed certificate (one signed by your own certificate authority). Self-signed certificates are acceptable in most cases, although certificates issued by certificate authorities are even more secure. And they do not require your users to respond to a security warning every time they login, as self-signed certificates do.

    The following command is an example of how to import a certificate. In this case a self-signed certificate imported into a PKCS12 keystore using OpenSSL:

    Next in this example, you create key.bin, the keystore file, in the Tomcat home folder. Use one of these commands.

    For Windows:

    %JAVA_HOME%binkeytool -genkey -alias tomcat -keyalg RSA -keystore %CATALINA_HOME%confkey.bin[/code]        

    For Unix:

    $JAVA_HOME/bin/keytool -genkey -alias tomcat -keyalg RSA -keystore $CATALINA_HOME/conf/key.bin[/code]        

    The basic install requires certain data. With the above commands, you're prompted for the data:

    Enter two passwords twice. The default for both is “changeit”. If you use the default, be sure to set better, stronger passwords later.
    Specify information about your organization, including your first and last name, your organization unit, and organization. The normal response for first and last name is the domain of your server, such as jasperserver.mycompany.com. This identifies the organization the certificate is issued to. For organization unit, enter your department or similar-sized unit; for organization, enter the company or corporation. These identify the organization the certificate is issued by.
    Keytool has numerous switches. For more information about it, see the Java documentation.

    Enabling SSL in the Web Server

    Once the certificate and key are saved in the Tomcat keystore, you need to configure your secure socket in the $CATALINA_BASE/conf/server.xml file, where $CATALINA_BASE represents the base directory for the Tomcat instance. For your convenience, sample <Connector> elements for two common SSL connectors (blocking and non-blocking) are included in the default server.xml file that’s installed with Tomcat. They're similar to the code below, with the connector elements commented out, as shown.

    To implement a connector, you need to remove the comment tags around its code. Then you can customize the specified options as necessary. For detailed information about the common options, consult the Tomcat 9.0 SSL Configuration HOW-TO. For detailed information about all possible options, consult the Server Configuration Reference.

    The default protocol is HTTP 1.1; the default port is 8443. The port is the TCP/IP port number on which Tomcat listens for secure connections. You can change it to any port number (such as the default port for HTTPS communications, which is 443). However, note that if you run Tomcat on port numbers lower than 1024, special setup outside the scope of this document is necessary on many operating systems.

    Configuring JasperReports Server to Use Only SSL

    At this point, the JasperReports Server web application runs on either protocol (HTTP and HTTPS). You can test the protocols in your web browser.

    HTTP:

    http://localhost:8080/jasperserver[-pro]/

    HTTPS:

    https://localhost:<SSLport>./jasperserver[-pro]/

    The next step, then, is to configure the web application to enforce SSL as the only protocol allowed. Otherwise, requests coming through HTTP are still serviced.

    Edit the file <js-webapp>/WEB-INF/web.xml. Near the end of the file, make the following changes inside the first <security-constraint> tag:

    Comment out the line <transport-guarantee>NONE</transport-guarantee>.
    Uncomment the line <transport-guarantee>CONFIDENTIAL</transport-guarantee>.

    Your final code should be like the following:

    The term CONFIDENTIAL forces the server to accept only SSL connections through HTTPS. And because of the URL pattern /*, all web services must also use HTTPS. If you need to turn off SSL mode, you can set the transport guarantee back to NONE or delete the entire <security-constraint> tag.


    User Feedback

    Recommended Comments

    There are no comments to display.



    Guest
    This is now closed for further comments

×
×
  • Create New...