Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Corrected links that should have been relative instead of absolute.

This section is applicable only if you want to use Web Forms with Adeptia Connect now supports Web Forms (Frevvo). You need to configure the following to access Web Forms in Adeptia Connect:

Prerequisites:

Ensure Before start configuring, ensure that you have :

  • Applied the v2.7 patch.
  • frevvo.war file.

To configure:

...

applied the latest patch of Adeptia Connect.

You can configure Web Forms in MySQL, SQL Server, and Oracle database only.

Anchor
ConfigurationSteps
ConfigurationSteps
To configure Web Forms in Adeptia Connect:

  1. Import Adeptia Suite and Adeptia Connect public certificate to Adeptia Suite Truststore. This step is mandatory only if you are accessing Adeptia Suite through HTTPS protocol.  
    1. Export Public Key 
      The steps to export the key varies from browser to browser. The following are the steps to export the public key in Google Chrome browser. You need to follow the same steps to export Adeptia Suite and Adeptia Connect public key.
      1. Open the browser and type the HTTPS URL to access Adeptia Suite.

        Info
        Type Adeptia Connect URL to export Adeptia Connect public key.
      2. Click Image Added > More tools > Developer tools.
      3. Click Security tab. 
      4. Click View Certificate.

        Image Added

      5. On the Certificate window, on the Details tab, click Copy to File.

        Image Added

      6. Click Next to start exporting the certificate.

        Image Added

      7. Choose DER encoded binary X.509 (.CER) and click Next.

        Image Added

      8. Specify the location to save the exported file and click Next.

        Image Added

      9. Click Finish to export. A dialog box appears confirming the export process have been completed successfully.
      10. Click OK to exit from the wizard.

    2. Import Adeptia Suite and Adeptia Connect certificate into Adeptia Suite Truststore. Below are the steps to import Adeptia Suite certificate into Adeptia Suite truststore. Follow the same steps to import Adeptia Connect certificate into Adeptia Suite truststore.  
      1. Open Command Prompt (press Win + R and type cmd).
      2. Go to the directory where JRE is installed (for example, C:/Program Files/Java/jre8/bin).
      3. Run the following Keytool command to import a certificate.
        keytool -import -trustcacerts -file <Path_of_SSL_Certificate> -alias <alias_name> -keystore <Path of Truststore file> -storepass changeit

        where,

                  <Path_of_SSL_Certificate> is the path of Adeptia Suite or Adeptia Connect SSL certificate.

                  <Path of Truststore file> is the path of Adeptia Suite Truststore.

        For example, keytool -import -trustcacerts -file C:/adeptia.cer -alias selfsign -keystore "C:/Program Files/AdeptiaSuite-6.9/AdeptiaServer/ServerKernel/etc/truststore/cacerts"

  2. Apply the Web Form patch by following the same steps applied in Adeptia Suite patch.
  3. After applying the patch, create a new database with utf-8 character set. Depending on the database you are using, expand the database to find the query to create a new database. 

    Expand
    titleMySQL
    create database <database_name> default character set "utf8" default collate "utf8_unicode_ci";
    Expand
    titleSQL Server
    create database <database_name>; 
    Expand
    titleOracle

    Adeptia supports Oracle 12c and 11g only. Depending on the version you are using, follow the wizard to create a new database.

    After creating the new database, you need to create a user other than System user and grant access to the Oracle database (created above) to the new user.

    1. Log in to the new database created above.
    2. Create a user by executing the following command:
      CREATE USER <Username> IDENTIFIED BY <Password> QUOTA UNLIMITED ON USERS;
      where,
                <Username> is the name of the user.
                <Password> is the password to authenticate a user.
    3. Run the following queries to grant permissions:

      Code Block
      GRANT CONNECT, CREATE SESSION, RESOURCE, CREATE VIEW TO <Username>;
      GRANT create session TO <Username>;
      GRANT create table TO <Username>;
      GRANT create view TO <Username>;
      GRANT create any trigger TO <Username>;
      GRANT create any procedure TO <Username>;
      GRANT create sequence TO <Username>;
      GRANT create synonym TO <Username>;
      GRANT create sequence TO <Username>;
      GRANT create any index TO <Username>;
      GRANT create sequence TO <Username>;
      GRANT alter any table TO <Username>;
       
      where,
            <Username> is the name of the new user created above.
  4. Go to .../<AdeptiaInstallFolder>/ServerKernel/RichForms/WEB-INF folderetc folder.
  5. Open web.xml server-configure.properties file in the Text Editor.
    In the Rich Forms group, 
    1. Type https in the abpm.frevvo.httpScheme property to access Web Forms in a secure mode.

      Info

      Skip this step if you are accessing Adeptia Suite through HTTP protocol.

    2. Type the URL of the server hosting Adeptia Suite in the <param-value> parameter of the the frevvo.internal.baseurl property property. The format of the URL is: <protocol_name>://<ipaddress>:<port_no>.
      where,
                 <protocol_name> is the protocol you are using, for example, http or https.
                 <IPaddress> is the domain name or IP address of the server hosting Adeptia Suite.
                 <Port_No> is the port number of the server hosting Adeptia Suite.Image Removed
    3. Copy the following code and type the Type the URL of the server the server hosting Adeptia Connect Tomcat in the <paramthe <param-value> parameter of the property. The the frevvo.forms.server.external.url property. The format of the URL is: <protocol_name>://<ipaddress>:<port_no>. 
      Code Block
      <context-param>
                     <param-name>frevvo.forms.server.external.url</param-name>
                     <param-value>https://54.163.232.119:443</param-value>
                     <description>Forms server external URL</description>
      </context-param>
    4. Save the file.
  6. Go to .../<AdeptiaInstallFolder>/ServerKernel/etc folder.
  7. Open server-configure.properties file in the Text Editor.
    1. In the Rich Forms group, type https in the abpm.frevvo.httpScheme property to access Web Forms in a secure mode.
      Image Removed
      In the Web Server category, in the Web Server Public Domain Name or IP Address

      Image Added

    2. In Frevvo Database Configuration subgroup, provide the details of the database you are using in the properties.

      Property NameDescription
      abpm.frevvo.db.driver

      Name of the Frevvo database driver URL.

      MySQL: com.mysql.jdbc.Driver

      SQL-Server: com.microsoft.sqlserver.jdbc.SQLServerDriver

      Oracle: oracle.jdbc.OracleDriver

      abpm.frevvo.db.url

      Name of the Frevvo database connection URL. The format of the URL for MySQL and SQL Server database is:

      jdbc:<Database_Name>://<IPaddress_on_which_Database_is_installed>:<Database_Port_No>/<Database_Name_Created_in_Step3>

      If you are using a named instance of SQL Server database then enter the URL in the following format:

      jdbc:<Database_Name>://<IPaddress_on_which_Database_is_installed>:<Database_Port_No>/<Database_Name_Created_in_Step3>;instanceName=<instance_name>

      For example,

      MySQL: jdbc:mysql://192.168.1.2:3306/frevvoDB

      SQL-Server: jdbc:sqlserver://192.168.1.1:1433;databaseName=frevvo

      SQL-Server (using instance): jdbc:sqlserver://192.168.1.1:1433;databaseName=frevvo;instanceName=adeptia

      The format of the URL for Oracle database is:

      Oracle: jdbc:oracle:thin:@<IPaddress_on_which_Database_is_installed>:<Database_Port_No>:<Database_Name_Created_in_Step3>

      for example, jdbc:oracle:thin:@192.168.1.3:1521:frevvodb

      abpm.frevvo.db.usernameDatabase username you are using. In case you are using Oracle then type the user name that you have created in the database in Step 3.
      abpm.frevvo.db.passwordPassword to access database. In case you are using Oracle then type the password that you have provided in the database in Step 3. To use an encrypted password of the database, change the value of 'encrypt' property to "y".
      abpm.frevvo.dbTypeDatabase you are using, for example, MySQL, SQL-Server, Oracle.


      Image Added

    In the Web Server category, in the abpm.webserver.public.address property, type the IP address of the server hosting Adeptia Suite. 
    Image Removed
    Image Added

    Save the file.
  8. Restart Kernel and WebRunner.

Verifying Configuration

After you have configured the steps, you need to verify whether Web Forms are accessible or not. To verify:

  1. Login to Adeptia Connect.
  2. Click Configure > Web Forms.
  3. Click CREATE Web Form.
  4. On the Create Web Form window, provide the details of the Web Form. 
  5. Click Image Removedto open the form. On clicking, if the Web Form opens in a new tab, indicates you have configured Web Forms in Adeptia Connect successfullyGo to the extracted Web Form patch folder.  
    1. Open jetty.xml.
    2. Copy the highlighted code from the file.

      Image Added

    3. Open jetty.xml file in the Text Editor from the .../<AdeptiaInstallFolder>/ServerKernel/etc/jetty folder.
    4. Replace the copied code in the file.
    5. Save the file.
  6. Go to .../<AdeptiaInstallFolder>/ServerKernel/etc/jetty/contexts folder.
  7. Rename richForms.xml_disable file to richForms.xml.
  8. Restart Kernel and WebRunner. This will create Frevvo related tables in the newly created database.

 

Next Step 

Verifying Patch