Meteor Quick Setup Guide Version 1.11

Size: px
Start display at page:

Download "Meteor Quick Setup Guide Version 1.11"

Transcription

1 Steps for Setting Up Meteor 1. Download the Meteor Software from the Meteor page: in the User Documentation section 2. Install Java SDK (See Appendix A for instructions) o Add [Java root directory]\bin to your PATH environment variable. o Set JAVA_HOME environment variable 3. Install Tomcat (See Appendix B for instructions) 4. Deploy Meteor WAR(s) (See Appendix C for instructions) o Make necessary modifications to.properties files (See Appendix D for instructions) 5. Generate Private and Public Keys (See Appendix E for instructions) o If you re testing, create a self-signed certificate. For production you will need a valid signed certificate from a certificate authority such as Verisign or Thawte. o Add necessary SSL directives to Tomcat configuration files o Add necessary private key information to Meteor.properties files o Send public key for addition to Meteor registry (Meteorhelpdesk@studentclearinghouse.org) 6. Install and Set Up Database (for data provider) o Create database and tables from sql source. Appendix A: Installing Java SDK The Java Development Kit (SDK) can be obtained at: The Meteor Technical Team recommends that you use the latest version SDK that is compatible with your application server. Up to date installation instructions for your environment are available at Downloading the Java Runtime Environment (JRE) is not sufficient to run Tomcat (Tomcat uses the javac executable that is not present in JRE). Appendix B: Installing Tomcat The latest version of Apache Tomcat can be found at: The Meteor Technical Team recommends following the latest installation information at the Tomcat web site for your specific environment. Appendix C: Deploying WAR Files (Tomcat installation) Deploying the METEOR WAR (Web ARchive) files is fairly straightforward. Simply place a copy of the WAR file(s) into the Tomcat webapps directory and start Tomcat. Tomcat automatically decompresses the file and places its contents into the necessary location. 1

2 Appendix D: Modifying.properties Files Your instance of Meteor must be configured before connecting to the Meteor Registry. This is done by modifying the.properties files within the Access/Data/Index provider directories (when initially installed, these files will end in.default to put these files into use, remove the.default suffix). The.properties files are plain text and can be modified using any text editor (e.g. Notepad or TextPad for a Windows environment; Vi or Emacs for a Linux environment). Below are the modifications necessary for each Provider instance and include changes for production and standalone environments. If a file does not exist within the specified directory, it must be created. Please refer to the Meteor 3.3 Release Notes for more detailed information about the individual attributes in each of the property files discussed below. Required Files The files required for each provider are as follows: Access Provider (found in %TOMCAT_HOME%\webapps\AccessProvider\WEB-INF\classes) o accessprovider.properties o authentication.properties o directory.properties * o directorydata.properties ** Data Provider (found in %TOMCAT_HOME%\webapps\DataProvider\WEB-INF\classes) o dataprovider.properties *** o directory.properties * o directorydata.properties ** Index Provider (found in %TOMCAT_HOME\webapps\IndexProvider\WEB-INF\classes) o indexprovider.properties o directorydata.properties ** o directory.properties * * identical files (directory.properties used in Access and Data Providers) ** identical files (directorydata.properties Never Use This File in Production - used in Access, Data and Index Providers is not needed if connecting to an LDAP server) *** identical files (dataprovider.properties used in Index and Data Providers) Configuring AccessProvider AccessProvider.properties files can be found in [Path\to\Tomcat]\webapps\AccessProvider\WEB- INF\classes. Production Settings: accessprovider.properties meteor.default.institution=[your Meteor Org ID] (no longer used in Meteor 3.0 and higher) dataprovider.timeout=20000 (default) meteor.authentication.requirepassedassertion=no (default) meteor.backgroundprocessing=yes (default) meteor.authentication.acceptassertions=no (default) meteor.user.authentication.class=org.nchelp.meteor.provider.access.servletremoteuser (default) meteor.user.role.class=(see comments in the property file before setting this 2

3 meteor.user.ssn.class=(see comments in the property file before setting this meteor.user.lenderid.class=(see comments in the property file before setting this meteor.user.organizationtype.class=(see comments in the property file before setting this meteor.user.organizationopeid.class=(see comments in the property file before setting this meteor.user.organizationopeidtype.class=(see comments in the property file before setting this meteor.status.servletpath=/status (default) Configuring AccessProvider (continued) directory.properties directory.class=org.nchelp.meteor.registry.ldapdirectory (default) ssl.protocol.handler=com.sun.net.ssl.internal. (default) ssl.protocol.provider=com.sun.net.ssl.internal.ssl.provider (default) authentication.requiresignedassertions=yes (default) directory.providerurl=ldap://ldap.meteorregistry.com:636 (default) directory.basedn=o=meteorcentral.com (default) directory.protocol=custom (default) authentication.properties authentication.identifier=[your Meteor Org ID] authentication.process.identifier=1 (default) authentication.saml.validity.period=14400 (default) authentication.message.validity.period=15(default) authentication.signassertion=yes(default) authentication.keystore.file=[path\to\your\keystore] authentication.keystore.password=[your Keystore Password] authentication.privatekey.alias=[your Keystore Alias] authentication.privatekey.password=[your Private Key Password] authentication.certificate.alias=[your Public Key Alias] authentication.certificate.include=false (default) Configuring AccessProvider (continued) Stand-alone Settings: accessprovider.properties meteor.default.institution=[your Meteor Org ID] (No longer used in Meteor 3.0) dataprovider.timeout=20000 (default) meteor.authentication.requirepassedassertion=no (default) meteor.backgroundprocessing=yes (default) meteor.authentication.acceptassertions=yes meteor.user.authentication.class=org.nchelp.meteor.provider.access.servletremoteuser (default) meteor.user.role.class=(see comments in the property file before setting this meteor.user.ssn.class=(see comments in the property file before setting this meteor.user.lenderid.class=(see comments in the property file before setting this meteor.user.organizationtype.class=(see comments in the property file before setting this meteor.user.organizationopeid.class=(see comments in the property file before setting this meteor.user.organizationopeidtype.class=(see comments in the property file before setting this meteor.status.servletpath=/status (default) meteor.user.role.class=org.nchelp.meteor.provider.access.faarole (default) 3

4 directory.properties directory.class=org.nchelp.meteor.registry.propertiesdirectory ssl.protocol.handler=com.sun.net.ssl.internal. (default) ssl.protocol.provider=com.sun.net.ssl.internal.ssl.provider (default) authentication.requiresignedassertions=yes (default) directory.providerurl=ldap://ldap.meteorregistry.com:636 (default) directory.basedn=o=meteorcentral.com (default) directory.protocol=custom (default) authentication.properties authentication.identifier=[your Meteor Org ID] authentication.process.identifier=1 (default) authentication.saml.validity.period=14400 (default) authentication.message.validity.period=15 (default) authentication.signassertion=yes (default) authentication.keystore.file=[path\to\your\keystore] authentication.keystore.password=[your Keystore Password] authentication.privatekey.alias=[your Keystore Alias] authentication.privatekey.password=[your Private Key Password] authentication.certificate.alias=[your Public Key Alias] authentication.certificate.include=false (default) directorydata.properties If this file does not exist within [Path\to\Tomcat]\webapps\AccessProvider\WEB-INF\classes, you must create it. An exact copy of this file should also be placed within the DataProvider \WEB- INF\classes directory. [Your Meteor Org ID].NAME=[Name of Your Org] [Your Meteor Org ID].AuthenticationLevel=3 [Your Meteor Org ID].APCSR.AuthenticationLevel=3 [Your Meteor Org ID].BORROWER.AuthenticationLevel=3 [Your Meteor Org ID].FAA.AuthenticationLevel=3 [Your Meteor Org ID].LENDER.AuthenticationLevel=3 [Your Meteor Org ID].AuthenticationProcessID=1 [Your Meteor Org ID].AccessProvider.URL= [Your Meteor Org ID].IndexProvider.URL= [Your Meteor Org ID].DataProvider.URL= [Your Meteor Org ID].AccessProvider.Status=AC [Your Meteor Org ID].DataProvider.Status=AC [Your Meteor Org ID].IndexProvider.Status=AC [Your Meteor Org ID].Certificate=[Path\to\your\public\key] IndexProvider.1=[Your Meteor Org ID] 4

5 Configuring DataProvider DataProvider.properties files can be found in [Path\to\Tomcat]\webapps\DataProvider\WEB-INF\classes. Sample settings are included for both MySQL and XML files. Note: If you are using MySQL, the MySQL JDBC connector must be placed in [Path\to\Tomcat]\webapps\DataProvider\WEB-INF\lib. Production Settings: dataprovider.properties If you are using MySQL for your data use the following: default.data.server=com.prioritytech.meteor.sampledataserver com.prioritytech.sample.jdbcclass=org.gjt.mm.mysql.driver com.prioritytech.sample.jdbcurl=jdbc:mysql://localhost:3306/meteor_g?relaxautocommit=true (Here the IP address of the database server is localhost. Change it to your database IP address. Here the name of the database is meteor_g. Change it to your database s name) com.prioritytech.sample.jdbcuserid=[mysql User Name] (Use root if you have not assigned a user name) com.prioritytech.sample.jdbcpassword=[mysql Password] accessprovider.minimum.authentication.level=3 (default) DataProvider.request.signaturerequired=No (default) DataProvider.Data.Name=[The Full Name of Your Organization] DataProvider.Data.ID=[Your Meteor Org ID] DataProvider.Data.URL=[Your Org URL like DataProvider.Data.Type=[select either SBS, LO, LRS, or G] DataProvider.Data.Contacts.PhoneNum=[Your Contact Phone Number] DataProvider.Data.Contacts. =[Your Contact Address] DataProvider.Data.Contacts.Addr=[Your Street Address] DataProvider.Data.Contacts.Addr2=[Your Street Address Cont d] DataProvider.Data.Contacts.City=[Your City] DataProvider.Data.Contacts.StateProv=[Your State] DataProvider.Data.Contacts.PostalCd=[Your Zipcode] directory.properties directory.class=org.nchelp.meteor.registry.ldapdirectory (default) ssl.protocol.handler=com.sun.net.ssl.internal. (default) ssl.protocol.provider=com.sun.net.ssl.internal.ssl.provider (default) authentication.requiresignedassertions=yes (default) directory.providerurl=ldap://ldap.meteorregistry.com:636 directory.basedn=o=meteorcentral.com (default) directory.protocol=custom (default) authentication.properties authentication.saml.validity.period=14400 (default) authentication.message.validity.period=15 (default) Stand-alone Settings: dataprovider.properties If you are using MySQL for your data (instead of XML files), use the following: default.data.server=com.prioritytech.meteor.sampledataserver com.prioritytech.sample.jdbcclass=org.gjt.mm.mysql.driver com.prioritytech.sample.jdbcurl=jdbc:mysql://localhost:3306/meteor_g?relaxautocommit=true (Here the IP address of the database server is localhost. Change it to your database IP address. Here the name of the database is meteor_g. Change it to your database s name) com.prioritytech.sample.jdbcuserid=[mysql User Name] (Use root if you have not assigned a user name) com.prioritytech.sample.jdbcpassword=[mysql Password] 5

6 accessprovider.minimum.authentication.level=3 (default) DataProvider.request.signaturerequired=No (default) DataProvider.Data.Name=[The Full Name of Your Organization] DataProvider.Data.ID=[Your Meteor Org ID] DataProvider.Data.URL=[Your Org URL like DataProvider.Data.Type=[select either SBS, LO, LRS, or G] DataProvider.Data.Contacts.PhoneNum=[Your Contact Phone Number] DataProvider.Data.Contacts. =[Your Contact Address] DataProvider.Data.Contacts.Addr=[Your Street Address] DataProvider.Data.Contacts.Addr2=[Your Street Address Cont d] DataProvider.Data.Contacts.City=[Your City] DataProvider.Data.Contacts.StateProv=[Your State] DataProvider.Data.Contacts.PostalCd=[Your Zipcode] If you are using the XML files for your data (instead of MySQL), use the following: default.data.server=com.prioritytech.meteor.filedataprovider com.prioritytech.file.directory=[path\to\xml\test\data] com.prioritytech.file.format=testcase%{9} directory.properties directory.class=org.nchelp.meteor.registry.propertiesdirectory ssl.protocol.handler=com.sun.net.ssl.internal. (default) ssl.protocol.provider=com.sun.net.ssl.internal.ssl.provider (default) authentication.requiresignedassertions=yes (default) directory.providerurl=ldap://ldap.meteorregistry.com:636 directory.basedn=o=meteorcentral.com (default) directory.protocol=custom (default) directorydata.properties Exact copies of this file should also be place within the IndexProvider and AccessProvider \WEB- INF\classes directories. [Your Meteor Org ID].NAME=[Name of Your Org] [Your Meteor Org ID].AuthenticationLevel=3 [Your Meteor Org ID].APCSR.AuthenticationLevel=3 [Your Meteor Org ID].BORROWER.AuthenticationLevel=3 [Your Meteor Org ID].FAA.AuthenticationLevel=3 [Your Meteor Org ID].LENDER.AuthenticationLevel=3 [Your Meteor Org ID].AuthenticationProcessID=1 [Your Meteor Org ID].AccessProvider.URL= [Your Meteor Org ID].IndexProvider.URL= [Your Meteor Org ID].DataProvider.URL= [Your Meteor Org ID].AccessProvider.Status=AC [Your Meteor Org ID].DataProvider.Status=AC [Your Meteor Org ID].IndexProvider.Status=AC [Your Meteor Org ID].Certificate=[Path\to\your\public\key] IndexProvider.1=[Your Meteor Org ID] Configuring IndexProvider This configuration is for a stand-alone environment only. These files can be found in [Path\to\Tomcat]\webapps\IndexProvider\WEB-INF\classes. indexprovider.properties IndexProvider.ID=[Your Meteor Org ID] (with the same institution ID used in the AccessProvider configuration) IndexProvider.Name=[Your Org Name] 6

7 IndexProvider.URL=[Your Org URL] IndexProvider.Sample.Include.Details=Yes (default) IndexProvider.request.signaturerequired=No (default) directorydata.properties Exact copies of this file should also be place within the DataProvider and AccessProvider \WEB- INF\classes directories. [Your Meteor Org ID].NAME=[Name of Your Org] [Your Meteor Org ID].AuthenticationLevel=3 [Your Meteor Org ID].APCSR.AuthenticationLevel=3 [Your Meteor Org ID].BORROWER.AuthenticationLevel=3 [Your Meteor Org ID].FAA.AuthenticationLevel=3 [Your Meteor Org ID].LENDER.AuthenticationLevel=3 [Your Meteor Org ID].AuthenticationProcessID=1 [Your Meteor Org ID].AccessProvider.URL= [Your Meteor Org ID].IndexProvider.URL= [Your Meteor Org ID].DataProvider.URL= [Your Meteor Org ID].AccessProvider.Status=AC [Your Meteor Org ID].DataProvider.Status=AC [Your Meteor Org ID].IndexProvider.Status=AC [Your Meteor Org ID].Certificate=[Path\to\your\public\key] IndexProvider.1=[Your Meteor Org ID] Appendix E: Public & Private Keys and Certificates Key generation is handled by Java keytool. Step 1: Generate a keystore and key entry From the command line, locate your Java /bin directory (can be found at JAVA_HOME/bin) and enter the following: keytool genkey keyalg RSA alias meteor keystore [keystore name] You will be asked to enter a keystore password. Choose a password and enter it when prompted to do so. Next, you will be asked a series of questions regarding your organization. Enter your response for each question (questions are in bold and example answers are in italics). What is your first and last name? [Unknown] (actually your domain name) What is the name of your organizational unit? [Unknown] Web Development What is the name of your Organization? [Unknown] Acme Inc What is the name of your City or Locality? [Unknown] New York City What is the name of your State or Province? [Unknown] New York What is the two-letter country code for this unit? [Unknown] US Is CN= OU=Web Development, O=Acme Inc, L=New York City, ST=New York, C=US correct? [no] yes 7

8 Enter key password for <meteor>: (Return if same as keystore password) Specify the same password for the keystore and the key entry. Otherwise, you ll receive the following error message when you restart the Jakarta engine: java.security.unrecoverablekeyexception: Cannot recover key Lastly, verify that your keystore was created. Run: keytool list keystore [keystore name] They keystore will be stored in your Java SDK/bin directory (or if in a Windows environment, it will be saved to your Documents and Settings folder e.g. c:\documents and Settings\zorro\.keystore). It is recommended that you make a backup copy of your keystore file and keep it in the event of a server crash. If you are setting up a stand-alone Meteor system, you can self-sign your certificate (and skip steps 2-4): keytool selfcert keystore [keystore name] alias meteor Self-signed certificates can only be used in a stand-alone or testing environment but are not required. You must obtain a certificate from Thawte or Verisign to participate in Meteor. Steps 2-4 will guide you through the process of creating a certificate signing request (CSR) and importing a sign certificate. Step 2: Generate a CSR of the newly created keystore and keyentry Generate the Certificate Signing Request with: keytool certreq alias meteor keyalg RSA file certreq.csr keystore [keystore name] Enter the keystore password when prompted. The CSR file will be saved to your Java SDK/bin directory (or if in a Windows environment, it will be saved to your Documents and Settings folder e.g. c:\documents and Settings\zorro\certreq.csr). Step 3: Submit your CSR to a signing authority (e.g. Verisign or Thawte) Step 4: Import your signed certificate into your keystore (must be in PKCS#7 format) Import the certificate into your keystore file: keytool import alias meteor trustcerts file cert.crt keystore [keystore name] where cert.crt is your certificate file. If you receive the error unsupported encoding, add a line break after the last line in the certificate (this can be done in notepad or an equivalent text editor), as keytool is very sensitive to white space. Step 5: Export your public key Your public key is used in the Meteor registry to verify communication with your server. You will need to export your public key and send it during the Meteor registration process. Export your key: 8

9 keytool export alias meteor file [public key name].key keystore [keystore name] where [public key name].key is the public key file name. When prompted, enter your keystore password. Press Enter and see the Certificate Stored message. Your public key file will be saved to the Java SDK/bin directory (or if in a Windows environment, it will be saved to your Documents and Settings folder e.g. c:\documents and Settings\zorro\[public key name].key) Document Change Log Date Version Person Changes 1/6/ Mike Mazanec Initial Release 1/25/ Mike Mazanec Added Appendices D (Deploying WARS) & E (.properties modifications) 1/27/ Mike Mazanec Added standalone.properties modifications, SDk-specific changes and JSSE installation 1/31/ Mike Mazanec Added.properties notes for version 3.0 2/14/ Mike Mazanec Corrected typo for JAVA_HOME 2/ Mike Mazanec Updated.properties changes 2/23/ Mike Mazanec Fixed typos, added properties for XML Data Provider data (vs. MySQL) and Access Provider keystore and modifications for Access Provider web.xml (for use with SAML) 2/25/ Mike Mazanec Added directions for self-signing the certificate, changed directorydata.properties modifications, added in-document hyperlinks from TOC 3/16/ Mike Mazanec Removed directions for creating CATALINA_HOME, lines for using SampleDataServer and FileDataProvider for DP and notes regarding the MySQL connector and self-signed certificates. 4/7/ Mike Mazanec Modified Appendix F to reflect.default suffix on property files, and Appendix E to reflect Tomcat 5.x doesn t need JAR files 5/11/ Tech Team Revised to make current and checked for accuracy 03/12/ Chris Cooper Revised for changes to Meteor v3.3 03/12/ Rick Allen Revised after Tech Team conference call 03/17/ Tech Team Revised after Tech Team conference call 03/19/ Tech Team Revised after Tech Team conference call 5/11/ Tim Cameron Updated logo and NCHELP references. 9

Creating an authorized SSL certificate

Creating an authorized SSL certificate Creating an authorized SSL certificate for MeetingSphere Meeting Center Server MeetingSphere Meeting Center Server requires an authorized SSL certificate by which its Meeting center is identified, and

More information

C O N F IGURIN G EN HA N C ED SEC U RITY O PTIONS F O R REMOTE C O N TROL

C O N F IGURIN G EN HA N C ED SEC U RITY O PTIONS F O R REMOTE C O N TROL C O N F IGURIN G EN HA N C ED SEC U RITY O PTIONS F O R REMOTE C O N TROL Avalanche Remote Control 4.1.3 can be configured to use AES encryption between the device and the server, and SSL encryption between

More information

GlobalForms SSL Installation Tech Brief

GlobalForms SSL Installation Tech Brief 127 Church Street, New Haven, CT 06510 O: (203) 789-0889 E: sales@square-9.com www.square-9.com GlobalForms SSL Installation Guide The following guide will give an overview of how to generate and install

More information

FileAudit Plus. Steps for Enabling SSL: The following steps will help you in the installation of SSL certificate in FileAudit Plus

FileAudit Plus. Steps for Enabling SSL: The following steps will help you in the installation of SSL certificate in FileAudit Plus Steps for Enabling SSL: The following steps will help you in the installation of SSL certificate in Steps for Enabling SSL: The following steps will help you in the installation of SSL certificate in : Step

More information

Server software page. Certificate Signing Request (CSR) Generation. Software

Server software page. Certificate Signing Request (CSR) Generation. Software Server software page Certificate Signing Request (CSR) Generation Software Apache (mod_ssl and OpenSSL)... 2 cpanel and WHM... 3 Microsoft Exchange 2007... 8 Microsoft Exchange 2010... 9 F5 BigIP... 13

More information

Tomcat SSL Certificate Deployment Guide (generate CSR by customer)

Tomcat SSL Certificate Deployment Guide (generate CSR by customer) Tomcat SSL Certificate Deployment Guide (generate CSR by customer) 沃通电子认证服务有限公司 WoSignCA Limited Content 1.Generate the CSR by customer... 3 1.1 Generate the private key files... 3 1.2 Generate CSR file...

More information

Public Key Enabling Oracle Weblogic Server

Public Key Enabling Oracle Weblogic Server DoD Public Key Enablement (PKE) Reference Guide Public Key Enabling Oracle Weblogic Server Contact: dodpke@mail.mil URL: http://iase.disa.mil/pki-pke URL: http://iase.disa.smil.mil/pki-pke Public Key Enabling

More information

SafeNet KMIP and Google Drive Integration Guide

SafeNet KMIP and Google Drive Integration Guide SafeNet KMIP and Google Drive Integration Guide Documentation Version: 20130802 Table of Contents CHAPTER 1 GOOGLE DRIVE......................................... 2 Introduction...............................................................

More information

Meteor. Tim Cameron, NCHELP. John Gill, Texas Guaranteed. NCHELP Summer Institute July 14-17, 2002

Meteor. Tim Cameron, NCHELP. John Gill, Texas Guaranteed. NCHELP Summer Institute July 14-17, 2002 Meteor Tim Cameron, NCHELP John Gill, Texas Guaranteed NCHELP Summer Institute July 14-17, 2002 1 Overview and Current Status 2 How does Meteor Work? 3 Meteor uses the concepts of Access Providers and

More information

Please select your version

Please select your version Installation Guide Please select your version Installation Instructions for Tomcat using PKCS#7 format Installation Instructions for Tomcat using X.509 format Installation Instructions for Tomcat using

More information

SSL Configuration Oracle Banking Liquidity Management Release [April] [2017]

SSL Configuration Oracle Banking Liquidity Management Release [April] [2017] SSL Configuration Oracle Banking Liquidity Management Release 12.4.0.0.0 [April] [2017] Table of Contents 1. CONFIGURING SSL ON ORACLE WEBLOGIC... 1-1 1.1 INTRODUCTION... 1-1 1.2 SETTING UP SSL ON ORACLE

More information

OpenAM Single Sign-On

OpenAM Single Sign-On Single Sign-On Setup Task List, page 2 Single Sign-On Setup Preparation, page 4 Single Sign-On Setup and Management Tasks, page 6 Configuration and Administration of IM and Presence Service on Cisco Unified

More information

IEA 2048 Bit Key Support for CSR on IEA Configuration Example

IEA 2048 Bit Key Support for CSR on IEA Configuration Example IEA 2048 Bit Key Support for CSR on IEA Configuration Example Document ID: 117964 Contributed by Kishore Yerramreddy, Cisco TAC Engineer. Jul 16, 2014 Contents Introduction Configure Generate a Certificate

More information

Cisco has more than 200 offices worldwide. Addresses, phone numbers, and fax numbers are listed on the Cisco website at

Cisco has more than 200 offices worldwide. Addresses, phone numbers, and fax numbers are listed on the Cisco website at Document Date: May 16, 2017 THE SPECIFICATIONS AND INFORMATION REGARDING THE PRODUCTS IN THIS MANUAL ARE SUBJECT TO CHANGE WITHOUT NOTICE. ALL STATEMENTS, INFORMATION, AND RECOMMENDATIONS IN THIS MANUAL

More information

Creating and Installing SSL Certificates (for Stealthwatch System v6.10)

Creating and Installing SSL Certificates (for Stealthwatch System v6.10) Creating and Installing SSL Certificates (for Stealthwatch System v6.10) Copyrights and Trademarks 2017 Cisco Systems, Inc. All rights reserved. NOTICE THE SPECIFICATIONS AND INFORMATION REGARDING THE

More information

Prepaid Online Vending System. XMLVend 2.1 Test Suite Setup Instructions

Prepaid Online Vending System. XMLVend 2.1 Test Suite Setup Instructions Prepaid Online Vending System XMLVend 2.1 Test Suite Setup Instructions Contents SOFTWARE REQUIRED... 5 SETUP JAVA JDK... 5 TOMCAT SETUP FOR XML... 6 INTERCEPTOR... 8 SETTING UP SSL... 9 SETTING UP THE

More information

SSL/TLS Certificate Generation

SSL/TLS Certificate Generation SSL/TLS Certificate Generation Last updated: 11/01/2016 Table of contents 1 INTRODUCTION...3 2 PROCEDURES...4 2.1 Creation and Installation...4 2.2 Conversion of an Existing Certificate Chain Available

More information

Access SharePoint using Basic Authentication and SSL (via Alternative Access URL) with SP 2016 (v 1.9)

Access SharePoint using Basic Authentication and SSL (via Alternative Access URL) with SP 2016 (v 1.9) Access SharePoint using Basic Authentication and SSL (via Alternative Access URL) with SP 2016 (v 9) This page is part of the installation guide for the Confluence SharePoint Connector. It tells you how

More information

Director and Certificate Authority Issuance

Director and Certificate Authority Issuance VMware vcloud Director and Certificate Authority Issuance Leveraging QuoVadis Certificate Authority with VMware vcloud Director TECHNICAL WHITE PAPER OCTOBER 2012 Table of Contents Introduction.... 3 Process

More information

McAfee Cloud Identity Manager Installation Guide For McAfee Cloud Identity Manager v3.1 August 2012

McAfee Cloud Identity Manager Installation Guide For McAfee Cloud Identity Manager v3.1 August 2012 McAfee Cloud Identity Manager Installation Guide For McAfee Cloud Identity Manager v3.1 August 2012 Order Number: 326712-005US COPYRIGHT Copyright 2012 McAfee, Inc. Do not copy without permission. TRADEMARK

More information

SSL/TLS Certificate Generation

SSL/TLS Certificate Generation SSL/TLS Certificate Generation Target: Lightstreamer Server v. 7.0 or greater Last updated: 08/03/2018 Table of contents 1 INTRODUCTION...3 2 PROCEDURES...4 2.1 Creation and Installation...4 2.2 Conversion

More information

Quick and Easy Solutions With Free Java Libraries

Quick and Easy Solutions With Free Java Libraries Quick and Easy Solutions With Free Java Libraries By Shaun Haney he BBj API is a toolkit full of solutions for everyday business T needs. Businesses of varying sizes may have the need to integrate charts

More information

Configuring IBM Rational Synergy to use HTTPS Protocol

Configuring IBM Rational Synergy to use HTTPS Protocol Technical Note Configuring IBM Rational Synergy to use HTTPS Protocol November 20, 2013 This edition applies to IBM Rational Synergy version 7.1, and to all subsequent releases and modifications until

More information

SSL/TLS Certificate Generation

SSL/TLS Certificate Generation SSL/TLS Certificate Generation Target: Lightstreamer Server v. 7.0 or greater Last updated: 16/02/2018 Table of contents 1 INTRODUCTION...3 2 PROCEDURES...4 2.1 Creation and Installation...4 2.2 Conversion

More information

OpenAM Single Sign-On

OpenAM Single Sign-On Single Sign-On Setup Task List, on page 1 Single Sign-On Setup Preparation, on page 3 Single Sign-On Setup and Management Tasks, on page 5 Single Sign-On Setup Task List The following figure provides the

More information

PKI Cert Creation via Good Control: Reference Implementation

PKI Cert Creation via Good Control: Reference Implementation PKI Cert Creation via Good Control: Reference Implementation Legal Notice Copyright 2016 BlackBerry Limited. All rights reserved. All use is subject to license terms posted at http://us.blackberry.com/legal/legal.html.

More information

Keytool and Certificate Management

Keytool and Certificate Management Keytool and Certificate Management A guide to utilizing keytool to assist with Certificates for emedny SOAP 2/16/2013 TABLE OF CONTENTS TABLE OF CONTENTS 1 Introduction... 3 2 Creating a Certificate Signing

More information

DSE Setup Guide for Oracle Databases

DSE Setup Guide for Oracle Databases DSE Setup Guide for Oracle Databases I. State Steps (Pre-DSE Installation and Setup): States will have to complete the following steps before installing and setting up DSE. 1. Create a new schema in the

More information

servlets and Java JSP murach s (Chapter 2) TRAINING & REFERENCE Mike Murach & Associates Andrea Steelman Joel Murach

servlets and Java JSP murach s (Chapter 2) TRAINING & REFERENCE Mike Murach & Associates Andrea Steelman Joel Murach Chapter 4 How to develop JavaServer Pages 97 TRAINING & REFERENCE murach s Java servlets and (Chapter 2) JSP Andrea Steelman Joel Murach Mike Murach & Associates 2560 West Shaw Lane, Suite 101 Fresno,

More information

Cisco WCS Server Hardening

Cisco WCS Server Hardening APPENDIXD This appendix provides an instructional checklist for hardening a WCS server. Ideally, the goal of a hardened server is to leave it exposed on the Internet without any other form of protection.

More information

GoPrint Server Migration

GoPrint Server Migration GoPrint Server Migration The following steps walks you through migrating a current GoPrint system to a new Windows server focusing on migrating the current database as well as keeping the same server name.

More information

Prescription Monitoring Program Information Exchange. RxCheck State Routing Service. SRS Installation & Setup Guide

Prescription Monitoring Program Information Exchange. RxCheck State Routing Service. SRS Installation & Setup Guide Prescription Monitoring Program Information Exchange RxCheck State Routing Service SRS Installation & Setup Guide Delivery On: Version: July 2018 2.0 Prepared By: Sponsored By: IJIS Institute Tetrus Corp

More information

Open XML Gateway User Guide. CORISECIO GmbH - Uhlandstr Darmstadt - Germany -

Open XML Gateway User Guide. CORISECIO GmbH - Uhlandstr Darmstadt - Germany - Open XML Gateway User Guide Conventions Typographic representation: Screen text and KEYPAD Texts appearing on the screen, key pads like e.g. system messages, menu titles, - texts, or buttons are displayed

More information

Implementing HTTPS in Contract Management July 2011 Copyright Oracle Primavera Implementing HTTPS in Contract Management Copyright 1996, 2011, Oracle and/or its affiliates. All rights reserved. The Programs

More information

Licensing Installation Instructions for WebLM 4.6

Licensing Installation Instructions for WebLM 4.6 Licensing Installation Instructions for WebLM 4.6 TABLE OF CONTENTS 1 Release Details... 2 1.1 Files... 2 1.1.1 WebLM Server... 2 1.1.1.1 WebLM.war... 2 1.1.2 Documentation... 2 1.1.2.1 Licensing Installation

More information

JIRA 6.x Administration Cookbook

JIRA 6.x Administration Cookbook JIRA 6.x Administration Cookbook Patrick Li Chapter No. 1 "JIRA Server Administration" In this package, you will find: A Biography of the author of the book A preview chapter from the book, Chapter NO.1

More information

Synchronizer Quick Installation Guide

Synchronizer Quick Installation Guide Synchronizer Quick Installation Guide Version 5.7 September 2015 1 Synchronizer Installation This document provides simplified instructions for installing Synchronizer. Synchronizer performs all the administrative

More information

Weblogic Configuration Oracle FLEXCUBE Investor Servicing Release [October] [2015]

Weblogic Configuration Oracle FLEXCUBE Investor Servicing Release [October] [2015] Weblogic Configuration Oracle FLEXCUBE Investor Servicing Release 12.1.0.0.0 [October] [2015] Table of Contents 1. CONFIGURING SSL ON ORACLE WEBLOGIC... 1-1 1.1 INTRODUCTION... 1-1 1.2 SETTING UP SSL ON

More information

Weblogic Configuration Oracle FLEXCUBE Universal Banking Release [May] [2017]

Weblogic Configuration Oracle FLEXCUBE Universal Banking Release [May] [2017] Weblogic Configuration Oracle FLEXCUBE Universal Banking Release 12.4.0.0.0 [May] [2017] Table of Contents 1. CONFIGURING SSL ON ORACLE WEBLOGIC... 1-1 1.1 INTRODUCTION... 1-1 1.2 SETTING UP SSL ON ORACLE

More information

Let's Encrypt - Free SSL certificates for the masses. Pete Helgren Bible Study Fellowship International San Antonio, TX

Let's Encrypt - Free SSL certificates for the masses. Pete Helgren Bible Study Fellowship International San Antonio, TX Let's Encrypt - Free SSL certificates for the masses Pete Helgren Bible Study Fellowship International San Antonio, TX Agenda Overview of data security Encoding and Encryption SSL and TLS Certficate options

More information

IWeb. Installation Guide. v5.16.5

IWeb. Installation Guide. v5.16.5 IWeb Installation Guide v5.16.5 Connect with Us on Social Media Copyrights and Trademarks 2016 by Scientific Technologies Corporation (STC). All rights reserved. This documentation describes the following

More information

Configuring the RTP Server

Configuring the RTP Server Configuring the RTP Server To configure the RTP Server you can click on the little cog in the lower right hand corner of the banner area at the top of the window (If the RTP Server is running you will

More information

FortiNAC. Analytics SSL Certificates. Version: 5.x Date: 8/28/2018. Rev: D

FortiNAC. Analytics SSL Certificates. Version: 5.x Date: 8/28/2018. Rev: D FortiNAC Analytics SSL Certificates Version: 5.x Date: 8/28/2018 Rev: D 1 FORTINET DOCUMENT LIBRARY http://docs.fortinet.com FORTINET VIDEO GUIDE http://video.fortinet.com FORTINET KNOWLEDGE BASE http://kb.fortinet.com

More information

AutoVue Integration SDK & Sample Integration for Filesys DMS

AutoVue Integration SDK & Sample Integration for Filesys DMS AutoVue Integration SDK & Sample Integration for Filesys DMS Installation Guide AutoVue Integration SDK Contents INTRODUCTION...1 SYSTEM REQUIREMENTS...2 INSTALLATION PREREQUISITES...3 Download the Eclipse

More information

Symantec PKI Enterprise Gateway Deployment Guide. v8.15

Symantec PKI Enterprise Gateway Deployment Guide. v8.15 Symantec PKI Enterprise Gateway Deployment Guide v8.15 Legal Notice Copyright 2015 Symantec Corporation. All rights reserved. Symantec, the Symantec Logo, the Checkmark Logo and are trademarks or registered

More information

TIM TAM Integration. Planning to install the Tivoli Access Manager Combo Adapter

TIM TAM Integration. Planning to install the Tivoli Access Manager Combo Adapter TIM TAM Integration For TIM TAM Integration, TAM Combo Adapter is required. The installation and configuration details of TAM Combo Adapter is described below. Planning to install the Tivoli Access Manager

More information

Using Certificates with HP Network Automation

Using Certificates with HP Network Automation Using Certificates with HP Network Automation HP Network Automation / October 2010 This document provides an overview of how certificates are used within HP Network Automation (NA), including information

More information

Perceptive SOAPBridge Connector

Perceptive SOAPBridge Connector Perceptive SOAPBridge Connector Installation and Setup Guide Version: 1.0.x Written by: Product Knowledge, R&D Date: June 2017 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International,

More information

ADSelfService Plus: Guide to Install SSL Certificate. 1 P a g e

ADSelfService Plus: Guide to Install SSL Certificate. 1 P a g e ADSelfService Plus: Guide to Install SSL Certificate 1 P a g e Contents Document Summary:... 3 ADSelfService Plus Overview:... 3 Why do you need SSL Certification?... 3 Steps for Enabling SSL:... 4 Step

More information

Configuring Oracle Java CAPS for SSL Support

Configuring Oracle Java CAPS for SSL Support Configuring Oracle Java CAPS for SSL Support Part No: 821 2544 March 2011 Copyright 2008, 2011, Oracle and/or its affiliates. All rights reserved. License Restrictions Warranty/Consequential Damages Disclaimer

More information

Securing U2 Soap Server

Securing U2 Soap Server Securing U2 Soap Server Introduction To enable SSL on the Client(Consumer-to-U2SS side), we need a U2 soap server Certificate. There are three possible methods to obtain the Server Certificate: 1. Use

More information

FUEGO 5.5 WORK PORTAL. (Using Tomcat 5) Fernando Dobladez

FUEGO 5.5 WORK PORTAL. (Using Tomcat 5) Fernando Dobladez FUEGO 5.5 WORK PORTAL SINGLE-SIGN-ON WITH A WINDOWS DOMAIN (Using Tomcat 5) Fernando Dobladez ferd@fuego.com December 30, 2005 3 IIS CONFIGURATION Abstract This document describes a way of configuring

More information

Unified Management Portal

Unified Management Portal Unified Management Portal Secure Sockets Layer Implementation Guide 6.0 Document Revision History Document Version Date Changes Beta 05/01/2012 Beta release. 1.0 08/01/2012 Initial release. 1.1 09/15/2012

More information

E-Forms: UFS software installation overview

E-Forms: UFS software installation overview Norfolk Connect Partnership Project (2003/04) IT Support Documentation E-Forms PROJECT DOCUMENTATION E-Forms: UFS software installation overview Norfolk Connect Partnership Project 2003/04 Release: Final

More information

Intelligence On Demand. Enterprise

Intelligence On Demand. Enterprise Intelligence On Demand e Enterprise t Installation of Elixir Repertoire Server 8.x on Unix platform TABLE OF CONTENTS 1 Pre-requisites... 2 1.1 Java (JVM) information... 2 2 Installation... 2 2.1Adding

More information

FUSION REGISTRY COMMUNITY EDITION SETUP GUIDE VERSION 9. Setup Guide. This guide explains how to install and configure the Fusion Registry.

FUSION REGISTRY COMMUNITY EDITION SETUP GUIDE VERSION 9. Setup Guide. This guide explains how to install and configure the Fusion Registry. FUSION REGISTRY COMMUNITY EDITION VERSION 9 Setup Guide This guide explains how to install and configure the Fusion Registry. FUSION REGISTRY COMMUNITY EDITION SETUP GUIDE Fusion Registry: 9.2.x Document

More information

Avaya Callback Assist Application Notes for HTTPS Configuration

Avaya Callback Assist Application Notes for HTTPS Configuration Avaya Callback Assist Application Notes for HTTPS Configuration Release 4.4.1.0 August 2016 2015-2016 Avaya Inc. All Rights Reserved. Notice While reasonable efforts have been made to ensure that the information

More information

VIRTUAL GPU LICENSE SERVER VERSION , , AND 5.1.0

VIRTUAL GPU LICENSE SERVER VERSION , , AND 5.1.0 VIRTUAL GPU LICENSE SERVER VERSION 2018.10, 2018.06, AND 5.1.0 DU-07754-001 _v7.0 through 7.2 March 2019 User Guide TABLE OF CONTENTS Chapter 1. Introduction to the NVIDIA vgpu Software License Server...

More information

Installing and Configuring the JBOSS Application Server for IBM Cognos 8

Installing and Configuring the JBOSS Application Server for IBM Cognos 8 Proven Practice Installing and Configuring the JBOSS Application Server for IBM Cognos 8 Product(s): IBM Cognos 8.4, JBOSS Application Server Area of Interest: Infrastructure DOC ID: AS21 Version 8.4.0.0

More information

Teamcenter 10.1 Systems Engineering and Requirements Management. Systems Architect/ Requirements Management Server Installation Manual for Windows

Teamcenter 10.1 Systems Engineering and Requirements Management. Systems Architect/ Requirements Management Server Installation Manual for Windows SIEMENS Teamcenter 10.1 Systems Engineering and Requirements Management Systems Architect/ Requirements Management Server Installation Manual for Windows REQ00010 S Manual History Manual Revision Teamcenter

More information

Installing an SSL certificate on your server

Installing an SSL certificate on your server Installing an SSL certificate on your server Contents Introduction... 2 Preparing your certificate... 2 Installing your Certificate... 3 IIS 8... 3 IIS 7... 7 Apache... 10 Plesk 12... 11 Plesk Onyx...

More information

Configuring Java CAPS for SSL Support

Configuring Java CAPS for SSL Support Configuring Java CAPS for SSL Support Part No: 820 3503 11 June 2010 Copyright 2008, 2010, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under

More information

MIDP 2.0: End-To-End Sockets API Example. Version 1.0; February 22, Enterprise

MIDP 2.0: End-To-End Sockets API Example. Version 1.0; February 22, Enterprise F O R U M N O K I A MIDP 2.0: End-To-End Sockets API Example Version 1.0; February 22, 2006 Enterprise Copyright 2006 Nokia Corporation. All rights reserved. Nokia and Nokia Connecting People are registered

More information

Fineract-platform Installation on Windows

Fineract-platform Installation on Windows Fineract-platform Installation on Windows Prerequisite Software's On this page: Note:- Below are mandatory prerequisite software's with mentioned versions only JAVA DEVELOPMENT KIT >> VERSION 1.8.0_65

More information

HPE AutoPass License Server

HPE AutoPass License Server HPE AutoPass License Server Software Version: 9.2 Windows, Linux and CentOS operating systems User Guide Document Release Date: April 2016 Software Release Date: April 2016 Page 2 of 130 Legal Notices

More information

Configure IBM Rational Synergy with 3 rd Party LDAP Server. Release

Configure IBM Rational Synergy with 3 rd Party LDAP Server. Release Configure IBM Rational Synergy with 3 rd Party LDAP Server. Release 7.2.1.7 Author: Rooble Babu Madeckal March 29, 2018 This edition applies to IBM Rational Synergy version 7.2.1.7, and to all subsequent

More information

OpenL Tablets OpenL Tablets BRMS

OpenL Tablets OpenL Tablets BRMS OpenL Tablets BRMS Document number: OpenL_Inst_G_5.x_1.0 Revised: 07-12-2012 OpenL Tablets Documentation is licensed under a Creative Commons Attribution 3.0 United States License. 2004-2012 OpenL Tablets.

More information

Enabling Microsoft Outlook Calendar Notifications for Meetings Scheduled from the Cisco Unified MeetingPlace End-User Web Interface

Enabling Microsoft Outlook Calendar Notifications for Meetings Scheduled from the Cisco Unified MeetingPlace End-User Web Interface Enabling Microsoft Outlook Calendar Notifications for Meetings Scheduled from the Cisco Unified MeetingPlace End-User Web Interface Release 7.1 Revised: March 5, 2013 1:53 pm This document describes the

More information

ThingWorx Relational Databases Connectors Extension User Guide

ThingWorx Relational Databases Connectors Extension User Guide ThingWorx Relational Databases Connectors Extension User Guide Version 1.0 Software Change Log... 2 Introduction and Installation... 2 About the Relational Databases Connectors Extension... 2 Installing

More information

Corporate Infrastructure Solutions for Information Systems (LUX) ECAS Mockup Server Installation Guide

Corporate Infrastructure Solutions for Information Systems (LUX) ECAS Mockup Server Installation Guide EUROPEAN COMMISSION DIRECTORATE-GENERAL INFORMATICS Directorate A - Corporate IT Solutions & Services Corporate Infrastructure Solutions for Information Systems (LUX) ECAS Mockup Server Installation Guide

More information

Pentaho Server SAML Authentication with Hybrid Authorization

Pentaho Server SAML Authentication with Hybrid Authorization Pentaho Server SAML Authentication with Hybrid Authorization This page intentionally left blank. Contents Overview... 1 Before You Begin... 1 Terms You Should Know... 1 Other Prerequisites... 2 Install

More information

OneClick. Administration Guide. Document 5166

OneClick. Administration Guide. Document 5166 OneClick Administration Guide Document 5166 Notice This documentation (the "Documentation") and related computer software program (the "Software") (hereinafter collectively referred to as the "Product")

More information

Oracle Insurance Policy Administration Configuration of SAML 1.1 Between OIPA and OIDC

Oracle Insurance Policy Administration Configuration of SAML 1.1 Between OIPA and OIDC Oracle Insurance Policy Administration Configuration of SAML 1.1 Between OIPA and OIDC Version 10.1.0.0 Documentation Part Number: E55027-01 June, 2014 Copyright 2009, 2014, Oracle and/or its affiliates.

More information

Messenger. Installation and Configuration Guide

Messenger. Installation and Configuration Guide Messenger Installation and Configuration Guide Manual Version 2.1 January 9, 2004 Content FURTHER INFORMATION AND SUPPORT... 4 1 INTRODUCTION... 5 1.1 ABOUT PONTON X/P...5 1.2 ARCHITECTURE OVERVIEW...6

More information

eroaming platform Secure Connection Guide

eroaming platform Secure Connection Guide eroaming platform Secure Connection Guide Contents 1. Revisions overview... 3 2. Abbrevations... 4 3. Preconditions... 5 3.1. OpenSSL... 5 3.2. Requirements for your PKCS10 CSR... 5 3.3. Java Keytool...

More information

TM1 9.5 Quick Installation and Upgrade Guide. Nature of Document: Tip or Technique Product(s): TM1 9.5 Area of Interest: Upgrade/Migration

TM1 9.5 Quick Installation and Upgrade Guide. Nature of Document: Tip or Technique Product(s): TM1 9.5 Area of Interest: Upgrade/Migration TM1 9.5 Quick Installation and Upgrade Guide Nature of Document: Tip or Technique Product(s): TM1 9.5 Area of Interest: Upgrade/Migration 2 Copyright and Trademarks Licensed Materials - Property of IBM.

More information

Setting Up the Development Environment

Setting Up the Development Environment CHAPTER 5 Setting Up the Development Environment This chapter tells you how to prepare your development environment for building a ZK Ajax web application. You should follow these steps to set up an environment

More information

Wildcard Certificates

Wildcard Certificates Wildcard Certificates Importing PKCS#12 and.pfx files Important: GoPrint requires the certificate chain password to be trustno1 When importing certificates into the Java Keystore generated on another certificate

More information

Getting Started with the VQE Startup Configuration Utility

Getting Started with the VQE Startup Configuration Utility CHAPTER 2 Getting Started with the VQE Startup Configuration Utility This chapter explains how to use the Cisco VQE Startup Configuration Utility to perform the initial configuration tasks needed to get

More information

Certificate Properties File Realm

Certificate Properties File Realm Certificate Properties File Realm {scrollbar} This realm type allows you to configure Web applications to authenticate users against it. To get to that point, you will need to first configure Geronimo

More information

Openbravo Oracle quick-start. installation guide

Openbravo Oracle quick-start. installation guide Openbravo Oracle quick-start installation guide 4rd January 2007 Revision 1.0.5 Visit us at www.openbravo.com Table of Contents I. Introduction...3 II. Requirements...4 III. License...5 IV. Operating Environment

More information

EUSurvey OSS Installation Guide

EUSurvey OSS Installation Guide Prerequisites... 2 Tools... 2 Java 7 SDK... 2 MySQL 5.6 DB and Client (Workbench)... 4 Tomcat 7... 8 Spring Tool Suite... 11 Knowledge... 12 Control System Services... 12 Prepare the Database... 14 Create

More information

Contents Overview... 5 Downloading Primavera Gateway... 5 Primavera Gateway On-Premises Installation Prerequisites... 6

Contents Overview... 5 Downloading Primavera Gateway... 5 Primavera Gateway On-Premises Installation Prerequisites... 6 Gateway Installation and Configuration Guide for On-Premises Version 17 September 2017 Contents Overview... 5 Downloading Primavera Gateway... 5 Primavera Gateway On-Premises Installation Prerequisites...

More information

Teamcenter 11.1 Systems Engineering and Requirements Management. Systems Architect/ Requirements Management Server Installation Manual for Windows

Teamcenter 11.1 Systems Engineering and Requirements Management. Systems Architect/ Requirements Management Server Installation Manual for Windows SIEMENS Teamcenter 11.1 Systems Engineering and Requirements Management Systems Architect/ Requirements Management Server Installation Manual for Windows REQ00010 T REQ00010 T (02-026840-801) Server Installation

More information

Proven Practice Installing TM1 9.5 in Apache Tomcat Product(s): TM1 9.5 Area of Interest: Install Config

Proven Practice Installing TM1 9.5 in Apache Tomcat Product(s): TM1 9.5 Area of Interest: Install Config Proven Practice Installing TM1 9.5 in Apache Tomcat Product(s): TM1 9.5 Area of Interest: Install Config 2 Copyright and Trademarks Licensed Materials - Property of IBM. Copyright IBM Corp. 2009 IBM, the

More information

ModelBus User Guide. Version: 0.83 corresponding to ModelBus Release Date: 12 th September Web:

ModelBus User Guide. Version: 0.83 corresponding to ModelBus Release Date: 12 th September Web: Version: 0.83 corresponding to ModelBus Release 1.9.9 Date: 12 th September 2014 Web: www.modelbus.org Email: info (at) modelbus (dot) org This document has been created by the ModelBus group at Fraunhofer

More information

Configuring SAML-based Single Sign-on for Informatica Web Applications

Configuring SAML-based Single Sign-on for Informatica Web Applications Configuring SAML-based Single Sign-on for Informatica Web Applications Copyright Informatica LLC 2017. Informatica LLC. Informatica, the Informatica logo, Informatica Big Data Management, and Informatica

More information

Artix Orchestration Installation Guide. Version 4.2, March 2007

Artix Orchestration Installation Guide. Version 4.2, March 2007 Artix Orchestration Installation Guide Version 4.2, March 2007 IONA Technologies PLC and/or its subsidiaries may have patents, patent applications, trademarks, copyrights, or other intellectual property

More information

JPA - INSTALLATION. Java version "1.7.0_60" Java TM SE Run Time Environment build b19

JPA - INSTALLATION. Java version 1.7.0_60 Java TM SE Run Time Environment build b19 http://www.tutorialspoint.com/jpa/jpa_installation.htm JPA - INSTALLATION Copyright tutorialspoint.com This chapter takes you through the process of setting up JPA on Windows and Linux based systems. JPA

More information

Import Data Connection from an SAP Universe

Import Data Connection from an SAP Universe Import Data Connection from an SAP Universe SAP Analytics Cloud allows you to connect to SAP Universe and import your data. NOTE: It is recommended that the SAP Cloud Platform Cloud Connector (SAP CP CC)

More information

Web Access Management Token Translator. Version 2.0. User Guide

Web Access Management Token Translator. Version 2.0. User Guide Web Access Management Token Translator Version 2.0 User Guide 2014 Ping Identity Corporation. All rights reserved. PingFederate Web Access Management Token Translator User Guide Version 2.0 August, 2014

More information

Tutorial: Developing a Simple Hello World Portlet

Tutorial: Developing a Simple Hello World Portlet Venkata Sri Vatsav Reddy Konreddy Tutorial: Developing a Simple Hello World Portlet CIS 764 This Tutorial helps to create and deploy a simple Portlet. This tutorial uses Apache Pluto Server, a freeware

More information

Hyperion Application Builder for.net. Readme. Release

Hyperion Application Builder for.net. Readme. Release Hyperion Application Builder for.net Release 11.1.1.1 Readme Hyperion Application Builder for.net... 1 Readme... 1 Purpose... 2 New Features... 2 Embedded JAPI Mode... 2 Non Unique Member Names... 2 Support

More information

Perceptive TransForm E-Forms Manager

Perceptive TransForm E-Forms Manager Perceptive TransForm E-Forms Manager Installation and Setup Guide Version: 8.x Date: February 2017 2016-2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International Inc., registered

More information

SonicWALL Global Management System Installation Guide Standard Edition

SonicWALL Global Management System Installation Guide Standard Edition SonicWALL Global Management System Installation Guide Standard Edition Version 2.3 Copyright Information 2002 SonicWALL, Inc. All rights reserved. Under the copyright laws, this manual or the software

More information

Best Practices for Security Certificates w/ Connect

Best Practices for Security Certificates w/ Connect Application Note AN17038 MT AppNote 17038 (AN 17038) September 2017 Best Practices for Security Certificates w/ Connect Description: This Application Note describes the process and best practices for using

More information

Obtaining a Google Maps API Key. v1.0. By GoNorthWest. 15 December 2011

Obtaining a Google Maps API Key. v1.0. By GoNorthWest. 15 December 2011 Obtaining a Google Maps API Key v1.0 By GoNorthWest 15 December 2011 If you are creating an Android application that uses maps in it (which is a very cool feature to have!), you re going to need a Google

More information

1Integrate for ArcGIS Installation Guide. Server Edition

1Integrate for ArcGIS Installation Guide. Server Edition 1Integrate for ArcGIS Installation Guide Server Edition Product version: v 2.1 Document version: v 1.9 Document date: 03/08/2018 Copyright 2018 1Spatial plc and its affiliates. All rights reserved. Other

More information

VMware vcloud Architecture Toolkit Implementation Examples. Version 3.1 January 2013

VMware vcloud Architecture Toolkit Implementation Examples. Version 3.1 January 2013 VMware vcloud Architecture Toolkit Version 3.1 January 2013 This product is protected by U.S. and international copyright and intellectual property laws. This product is covered by one or more patents

More information

Server Installation Guide

Server Installation Guide Server Installation Guide Server Installation Guide Legal notice Copyright 2018 LAVASTORM ANALYTICS, INC. ALL RIGHTS RESERVED. THIS DOCUMENT OR PARTS HEREOF MAY NOT BE REPRODUCED OR DISTRIBUTED IN ANY

More information