Signicat Connector for Java Version 2.6. Document version 3

Size: px
Start display at page:

Download "Signicat Connector for Java Version 2.6. Document version 3"

Transcription

1 Signicat Connector for Java Version 2.6 Document version 3

2

3 About this document Purpose Target This document is a guideline for using Signicat Connector for Java. Signicat Connector for Java is a client library for integrating with the services at signicat.com. The document is written for technical personell. It may be used for integrating your own software with the services at signicat.com. Readers should have general knowledge about web application implementation with Java using JSP and servlets. General knowledge about web service implementation is also required to use the signature services. Page 0

4 Overview What is contained in the package The library is delivered as a zip file. You may unpack the file in any folder on your own machine. The zip file contains: Example applications and example code Utility libraries Third party libraries JavaDoc Developers should use the client kit when they integrate their own software with signicat.com. It should also be available runtime unless the configuration files and libraries are made available for the application by other means. This is described in the configuration chapter. Compatibility The library is designed to be compatible with as many platforms as possible. However, the connector library is using a number of third party libraries. You may have to make special adjustments if your platform is not compatible with some of the third party libraries, or if your platform is already using other versions of these libraries. Signicat can give assistance in such circumstances. The library requires Java 1.5 or better. Se the chapter Classpath for more information. Page 1

5 Installation Get access to the library The Signicat Connector for Java zip file may be downloaded from Signicat. Your main contact at Signicat will give you access to the latest version. You may contact Signicat at at any time or at in office hours. Unpack the zip file Unpack the zip file to a folder on your hard drive. You may unpack the zip file in any folder. The libraries and example application will have to be copied into your own application before you can run the code. Page 2

6 Example applications The distribution contains two example applications. It is recommended that you deploy them and take a look at the content. We believe that this is the easiest approach to understanding how the services at signicat.com work and how you should connect to them. Installing the example applications The zip file contains two folders named "signicat/example/login" and "signicat/example/signature". Both are complete web applications that may be deployed in Tomcat. You may use other application servers, but you may have to add additional files to the WEB-INF folder if your application server requires this. You may deploy the applications by using the Tomcat Manager application, or by dropping the folders named login and signature into the Tomcat webapps folder. The example application is configured to connect to signicat.com at This is a test environment, which may be used by anyone for testing the services. The application should work without any changes in the configuration files. Inspecting the applications It is recommended that you start your investigation of the connector by deploying the applications and take a look at how it works. They should be available on the url " and " The port number may be different if you have changed the default port in tomcat. Both example applications are described in detail below. Page 3

7 Login example application The login example demonstrates how the connector can be used to connect to Signicat's login service. It demonstrates in a clear and compact way the process of protecting an application. You will probably include this code into a general filter or in a library in your own application. The code may also be used if you want to integrate the authentication services at signicat.com with your own framework. It could be convenient to use this code if you have developed our own plugin or component for protecting the web pages in your own application. Overview The login scenario has three major steps. 1. The application checks if the user has a valid session 2. The application redirects the user to test.signicat.com if a session does not exist 3. The user is returned and the application validates the login information from Signicat. You should start by looking at the file protected.jsp. This file demonstrates all three steps in a single file. You should open this file now. We will walk you trough the code step by step. 1) Check if the user has a valid session The code actually starts with some debug logging and a test where we check if "assertion!= null". This will be explained later. You should scroll down below that until you find this code: String user = (String) session.getattribute("user"); if (user == null && errormessage == null) {... redirects the user to test.signicat.com... } This is a very simple session mechanism. We simply create a session attribute named "user" when the user logs in. We assume that the user is logged in if this attribute is present. This attribute will never be present the first time the user runs this file, and the code in the if-statement will run. Page 4

8 2) Redirect to test.signicat.com The user is redirected to test.signicat.com if a valid session does not exist. String user = (String) session.getattribute("user"); if (user == null && errormessage == null) { response.sendredirect(" ); return; } The url has three important parameters. The "method" parameter specifies the e-id that should be used to log in. The "profile" parameter specifies the graphical profile. The "target" parameter specifies where the user should return when he has logged in (or if he aborts the login). The last part of the url path is "shared". This is the service account. Signicat's customers have unique service accounts. The "shared" account is simply a shared account used for testing. 2) The user returns Signicat will authenticate the user using the specified e-id, graphical profile and service account. The user is then returned back to the url specified in the target parameter. The user returns with a parameter named "SAMLResponse". This parameter contains a base 64 encoded xml that describes exactly how the authentication was done and the result. Your application must test if this parameter is present and take some action if it is. String assertion = request.getparameter("samlresponse"); if (assertion!= null && assertion.length() > 0) {... checks the assertion and creates a login session... } The code has so far been quite simple. You have checked if the user already is logged in and redirected him to Signicat. You did not use any functionality from the connector library for this. Parsing and verifying the SAMLResponse is however a more complex task. The library provides a single class with a single method for this. You must first create an instance of the class SamlFacade. This is a two step process where you first create an instance of SamlFacadeFactory and uses this to create the SamlFacade. The reason why you cannot simply use "new SamlFacade" is that the SamlFacade needs to be created in its own classloader. The SamlFacadeFactory does this. Page 5

9 SamlFacadeFactory factory = new SamlFacadeFactory(configuration); SamlFacade samlfacade = factory.createsamlfacade(); The SamlFacadeFactory takes a configuration object as first parameter in its constructor. The configuration parameters was described above. You may now use the samlfacade object to parse and validate the SAMLResponse. attributes = samlfacade.readassertion(assertion, new URL(request.getRequestURL().toString())); String user = (String)attributes.get("saml.subject.nameidentifier.name"); The readassertion method will throw an exception if there is anything wrong. If not, it will return an attribute list with all information that Signicat could collect about the user. The users identity is usually stored in the attribute named "saml.subject.nameidentifier.name", but you should inspect all attributes to find the exact information that you are interested in. Page 6

10 Signature The signature example application demonstrates how you may use the services at signicat.com to let the end user digitally sign a document. Overview A signature scenario has four major steps. 1. The application creates a document that should be signed 2. The application creates a document order by calling a web service at Signicat. The document order includes the document. 3. The application redirects the user to test.signicat.com 4. The user is returned and the application downloades the signed document from Signicat The code is located in two files: preprocessing.jsp has the code for step 1-3 postprocessing.jsp has the code for step 4 You will notice that the application contains a number of libraries from Apache Axis. The example application uses Apache Axis to connect to the web service at signicat.com. You may use a different web service framework. The distribution contains the relevant wsdl file for this. You do not need to include the Axis libraries in your application if you use a different web service library. We will walk you trough the code step by step. 1) Create the document You must create a document that can be signed. The document should be in either plain ascii text (that is, simply a string) or a pdf document. In this example, a pdf document is base 64 encoded and stored in the file pdf-definition.incl to avoid cluttering the code with functionality for creating or uploading a document. Your code should of course have some other functionality for this. <%@ include file="pdf-definition.incl"%> Page 7

11 2) Create a document order The file starts with a long block of code that defines some configuration properties. You will probably use a more sophisticated solution for this. The properties are used later when we create the web service request. Almost all the code in the file until the "service.send" statement at about line 140 is about preparing the web service call. The api for the web service is documented in a separate document. This web service request will contain the following important information: The document that is to be signed The identity of the signer The e-id that should be used The graphical profile that should be used The url where the user should be sent back after he has signed You must also define a "task id" for each signer. The task id can be anything as long as it is unique for each task in the document order. In this example we only have one signer and one task, so we simply set the task id to "1". The next task is to actually send the web service request. DocumentActionResponse docactionresponse=service.send(docactionreq); conf.setproperty("requestid", docactionresponse.getrequestid()); The web service responds with two important attributes: 1. A unique request id 2. A short lived single sign on token The request id identifies the document order and should be stored. You will need this for every subsequent web service request that references this document order. The single sign on token must be used immediately to redirect the end user to Signicat. The token is only valid in 30 seconds. If you for some reason should need to send the end user to Signicat at any later time, you may create a new token by calling a specific web service method for this. Page 8

12 3) Redirect the user to Signicat You should now redirect the user to Signicat with the single sign on token. You must provide three parameters: 1. The request id 2. The task id (this is simply "1" for this example) 3. The single sign on token String serviceurlwithparameters = conf.getproperty("serviceurl"); serviceurlwithparameters += "?request_id=" + docactionresponse.getrequestid(); serviceurlwithparameters += "&task_id=" + "1"; serviceurlwithparameters += "&documentartifact=" + docactionresponse.getartifact(); response.sendredirect(serviceurlwithparameters); 4) The user returns We specified in the document order that the user should be sent back to the url where the "postprocessing.jsp" file is mounted. The code in the postprocessing.jsp file has one major mission. It makes a web service call to Signicat to fetch the signed document. The web service call takes the request id as input and returns the status for the document order. StatusResponse statusresponse = service.getstatus(statusrequest); You should inspect the statusresponse object to see the information that is available here. The most important, and the only information that you realy need to check, is: The status for the request. This should be "COMPLETED" The signed document If the status is COMPLETED, then the document is correctly signed and you may store the signed document to a safe place. Page 9

13 Configuration Configuration for login The library needs a small set of configuration entries. You may configure the application by defining a set of properties in a Property object. This property object must be used when you create an instance of SamlFacadeFactory. The code in protected.jsp demonstrates how this should be done: Properties configuration = new Properties(); configuration.setproperty("debug","false"); configuration.setproperty("asserting.party.certificate.subject.dn", "CN=test.signicat.com/std, OU=Signicat, O=Signicat, L=Trondheim, ST=Norway, C=NO"); SamlFacadeFactory factory = new SamlFacadeFactory(configuration); Property Description asserting.party.certificate.subject.dn Mandatory. The distinguished name of the trusted certificate. This is different in test and production. debug trustkeystore.file trustkeystore.password time.skew logclassname classpath Optional. "true" or "false". Affects log level only. Optional. Path to a keystore with a trusted certificate. This overrides the internal root certificate. Only use this if requested by Signicat support. Optional. Password for keystore specified in trustkeystore.file. Optional. A known difference between the system clock on the server and the client in seconds. A positive value should be used if the system clock on your server is earlier than the Signicat server system clock. A standard time skew of 2 seconds is default to allow for a small difference in system clocks. Optional. Class name of class implementing the com.signicat.services.client.context.scclientlog interface. Implement this interface if you want to redirect the log messages to your own log framework. See JavaDoc. Page 10

14 Configuration for signature All configuration in the signature application is done when creating the signature order request. The preprocessing.jsp file contains a properties object with a set of configuration entries. These configuration entries is included in the web service request further down in the same file. Page 11

15 Classpath The Signicat Client Library is using a number of different libraries. The standard solution is to deploy all libraries in the same classpath as you are using for your own application. Just copy all jar files from the relevant lib folder in the distribution to your standard classpath. Separate classloader An alternate solution is to let the connector use a special classloader. This will separate the classes used by the client library from the classes used by the other applications on the same platform. This may break policy constraints for your web cointainer, and may not work in all environments. To use the special classloader: Create a directory in your runtime environment for the jar-files. Copy all jar-files from the relevant lib-folder in the distribution. Set the configuration parameter named "classpath" to the path to this directory. Copy the signicat-client-lib-x.x.x.jar file (where x.x.x is the version of the jar file) to your standard classpath. NB! This file should not be present in the folder you created with the other jar-files. Page 12

Signicat Connector for Java Version 4.x. Document version 1

Signicat Connector for Java Version 4.x. Document version 1 Signicat Connector for Java Version 4.x Document version 1 About this document Purpose Target This document is a guideline for using Signicat Connector for Java. Signicat Connector for Java is a client

More information

SSO Plugin. Integrating Business Objects with BMC ITSM and HP Service Manager. J System Solutions. Version 5.

SSO Plugin. Integrating Business Objects with BMC ITSM and HP Service Manager. J System Solutions.   Version 5. SSO Plugin Integrating Business Objects with BMC ITSM and HP Service Manager J System Solutions Version 5.0 JSS SSO Plugin Integrating Business Objects with BMC ITSM and HP Service Manager Introduction...

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

CMIS CONNECTOR MODULE DOCUMENTATION DIGITAL EXPERIENCE MANAGER 7.2

CMIS CONNECTOR MODULE DOCUMENTATION DIGITAL EXPERIENCE MANAGER 7.2 CMIS CONNECTOR MODULE DOCUMENTATION SUMMARY 1 OVERVIEW... 4 1.1 About CMIS... 4 1.2 About this module... 4 1.3 Module features... 5 1.4 Implementation notes... 6 2 CONFIGURATION... 6 2.1 Installation...

More information

Session 8. Reading and Reference. en.wikipedia.org/wiki/list_of_http_headers. en.wikipedia.org/wiki/http_status_codes

Session 8. Reading and Reference. en.wikipedia.org/wiki/list_of_http_headers. en.wikipedia.org/wiki/http_status_codes Session 8 Deployment Descriptor 1 Reading Reading and Reference en.wikipedia.org/wiki/http Reference http headers en.wikipedia.org/wiki/list_of_http_headers http status codes en.wikipedia.org/wiki/_status_codes

More information

SDK Developer s Guide

SDK Developer s Guide SDK Developer s Guide 2005-2012 Ping Identity Corporation. All rights reserved. PingFederate SDK Developer s Guide Version 6.10 October, 2012 Ping Identity Corporation 1001 17 th Street, Suite 100 Denver,

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

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

Quick Connection Guide

Quick Connection Guide ServiceNow Connector Version 1.0 Quick Connection Guide 2015 Ping Identity Corporation. All rights reserved. PingFederate ServiceNow Connector Quick Connection Guide Version 1.0 August, 2015 Ping Identity

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

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

2 Oracle WebLogic Overview Prerequisites Baseline Architecture...6

2 Oracle WebLogic Overview Prerequisites Baseline Architecture...6 Table of Contents 1 Oracle Access Manager Integration...1 1.1 Overview...1 1.2 Prerequisites...1 1.3 Deployment...1 1.4 Integration...1 1.5 Authentication Process...1 2 Oracle WebLogic...2 3 Overview...3

More information

McMaster Service-Based ehealth Integration Environment (MACSeie) Installation Guide July 24, 2009

McMaster Service-Based ehealth Integration Environment (MACSeie) Installation Guide July 24, 2009 McMaster Service-Based ehealth Integration Environment (MACSeie) Installation Guide July 24, 2009 Richard Lyn lynrf@mcmaster.ca Jianwei Yang yangj29@mcmaster.ca Document Revision History Rev. Level Date

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

Getting Started with Cisco UCS Director Open Automation

Getting Started with Cisco UCS Director Open Automation Getting Started with Cisco UCS Director Open Automation Cisco UCS Director Open Automation, page 1 Upgrading Your Connector to the Current Release, page 5 Modules, page 5 Cisco UCS Director Open Automation

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

Session 9. Deployment Descriptor Http. Reading and Reference. en.wikipedia.org/wiki/http. en.wikipedia.org/wiki/list_of_http_headers

Session 9. Deployment Descriptor Http. Reading and Reference. en.wikipedia.org/wiki/http. en.wikipedia.org/wiki/list_of_http_headers Session 9 Deployment Descriptor Http 1 Reading Reading and Reference en.wikipedia.org/wiki/http Reference http headers en.wikipedia.org/wiki/list_of_http_headers http status codes en.wikipedia.org/wiki/http_status_codes

More information

Overview of Web Services API

Overview of Web Services API CHAPTER 1 The Cisco IP Interoperability and Collaboration System (IPICS) 4.0(x) application programming interface (API) provides a web services-based API that enables the management and control of various

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

BEAAquaLogic. Service Bus. Interoperability With EJB Transport

BEAAquaLogic. Service Bus. Interoperability With EJB Transport BEAAquaLogic Service Bus Interoperability With EJB Transport Version 3.0 Revised: February 2008 Contents EJB Transport Introduction...........................................................1-1 Invoking

More information

Entrust Identification Server 7.0. Entrust Entitlements Server 7.0. Administration Guide. Document issue: 1.0. Date: June 2003

Entrust Identification Server 7.0. Entrust Entitlements Server 7.0. Administration Guide. Document issue: 1.0. Date: June 2003 Identification Server 7.0 Entitlements Server 7.0 Administration Guide Document issue: 1.0 Date: June 2003 2003. All rights reserved. is a trademark or a registered trademark of, Inc. in certain countries.

More information

EUSurvey Installation Guide

EUSurvey Installation Guide EUSurvey Installation Guide Guide to a successful installation of EUSurvey May 20 th, 2015 Version 1.2 (version family) 1 Content 1. Overview... 3 2. Prerequisites... 3 Tools... 4 Java SDK... 4 MySQL Database

More information

CodeCharge Studio Java Deployment Guide Table of contents

CodeCharge Studio Java Deployment Guide Table of contents CodeCharge Studio Java Deployment Guide Table of contents CodeCharge Studio requirements for Java deployment... 2 Class Path requirements (compilation-time and run-time)... 3 Tomcat 4.0 deployment... 4

More information

API Knowledge Coding Guide Version 7.2

API Knowledge Coding Guide Version 7.2 API Knowledge Coding Guide Version 7.2 You will be presented with documentation blocks extracted from API reference documentation (Javadocs and the like). For each block, you will be also presented with

More information

SDK Developer s Guide

SDK Developer s Guide SDK Developer s Guide 2005-2013 Ping Identity Corporation. All rights reserved. PingFederate SDK Developer s Guide Version 7.1 August, 2013 Ping Identity Corporation 1001 17 th Street, Suite 100 Denver,

More information

JBoss SOAP Web Services User Guide. Version: M5

JBoss SOAP Web Services User Guide. Version: M5 JBoss SOAP Web Services User Guide Version: 3.3.0.M5 1. JBoss SOAP Web Services Runtime and Tools support Overview... 1 1.1. Key Features of JBossWS... 1 2. Creating a Simple Web Service... 3 2.1. Generation...

More information

BusinessObjects XI Integration Kit for SAP

BusinessObjects XI Integration Kit for SAP BusinessObjects XI Integration Kit for SAP Troubleshooting Deployment of the Enterprise XI SAP Java InfoView Overview Contents The intent of this document is to walk you through possible troubleshooting

More information

Cisco CVP VoiceXML 3.1. Installation Guide

Cisco CVP VoiceXML 3.1. Installation Guide Cisco CVP VoiceXML 3.1 CISCO CVP VOICEXML 3.1 Publication date: October 2005 Copyright (C) 2001-2005 Audium Corporation. All rights reserved. Distributed by Cisco Systems, Inc. under license from Audium

More information

CLIQ Platform Documentation Implementation Packages

CLIQ Platform Documentation Implementation Packages CLIQ Platform Documentation Implementation Packages Release 2.2.0 CLIQ Platform Documentation Implementation Packages 1 Release History Release Description Date Changes 1.0.0 Initial Version 30 Jan 2004

More information

Getting Started Guide

Getting Started Guide BlackBerry Web Services for Enterprise Administration For Java developers Version: 1.0 Getting Started Guide Published: 2013-01-28 SWD-20130128151511069 Contents 1 Overview: BlackBerry Web Services...

More information

Java SAML Consumer Value-Added Module (VAM) Deployment Guide

Java SAML Consumer Value-Added Module (VAM) Deployment Guide Java SAML Consumer Value-Added Module (VAM) Deployment Guide Copyright Information 2018. SecureAuth is a copyright of SecureAuth Corporation. SecureAuth s IdP software, appliances, and other products and

More information

SSO Authentication with ADFS SAML 2.0. Ephesoft Transact Documentation

SSO Authentication with ADFS SAML 2.0. Ephesoft Transact Documentation SSO Authentication with ADFS SAML 2.0 Ephesoft Transact Documentation Table of Contents Configure Ephesoft Transact... 1 Configure ADFS Server... 3 Export Certificate from ADFS Server... 7 Configure Ephesoft

More information

VAM. Java SAML Consumer Value- Added Module (VAM) Deployment Guide

VAM. Java SAML Consumer Value- Added Module (VAM) Deployment Guide VAM Java SAML Consumer Value- Added Module (VAM) Deployment Guide Copyright Information 2018. SecureAuth is a registered trademark of SecureAuth Corporation. SecureAuth s IdP software, appliances, and

More information

Internet Technologies. Lab Introduction

Internet Technologies. Lab Introduction Internet Technologies Lab1 2011 Introduction Overview What will we do in the labs? Project Requirements Examples Evaluation Tools How to reach us? Cavada Dario: cavada@ectrlsolutions.com Mehdi Elahi: mehdi.elahi@stud-inf.unibz.it

More information

Voltage SecureData Enterprise SQL to XML Integration Guide

Voltage SecureData Enterprise SQL to XML Integration Guide Voltage SecureData Enterprise SQL to XML Integration Guide Jason Paul Kazarian jason.kazarian@microfocus.com (408) 844-4563 2/18 SQL to XML Integration Guide Copyright 2018, Micro Focus. All rights reserved.

More information

Writing Servlets and JSPs p. 1 Writing a Servlet p. 1 Writing a JSP p. 7 Compiling a Servlet p. 10 Packaging Servlets and JSPs p.

Writing Servlets and JSPs p. 1 Writing a Servlet p. 1 Writing a JSP p. 7 Compiling a Servlet p. 10 Packaging Servlets and JSPs p. Preface p. xiii Writing Servlets and JSPs p. 1 Writing a Servlet p. 1 Writing a JSP p. 7 Compiling a Servlet p. 10 Packaging Servlets and JSPs p. 11 Creating the Deployment Descriptor p. 14 Deploying Servlets

More information

Agent Interaction SDK Java Developer Guide. About the Code Examples

Agent Interaction SDK Java Developer Guide. About the Code Examples Agent Interaction SDK Java Developer Guide About the Code Examples 2/25/2018 Contents 1 About the Code Examples 1.1 Setup for Development 1.2 Application Development Design 1.3 Application Essentials Agent

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

CS506 today quiz solved by eagle_eye and naeem latif.mcs. All are sloved 99% but b carefull before submitting ur own quiz tc Remember us in ur prayerz

CS506 today quiz solved by eagle_eye and naeem latif.mcs. All are sloved 99% but b carefull before submitting ur own quiz tc Remember us in ur prayerz CS506 today quiz solved by eagle_eye and naeem latif.mcs All are sloved 99% but b carefull before submitting ur own quiz tc Remember us in ur prayerz Question # 1 of 10 ( Start time: 04:33:36 PM ) Total

More information

Teamcenter Global Services Customization Guide. Publication Number PLM00091 J

Teamcenter Global Services Customization Guide. Publication Number PLM00091 J Teamcenter 10.1 Global Services Customization Guide Publication Number PLM00091 J Proprietary and restricted rights notice This software and related documentation are proprietary to Siemens Product Lifecycle

More information

7.1. RELEASE-NOTES-2.0-M1.TXT

7.1. RELEASE-NOTES-2.0-M1.TXT 7.1. RELEASE-NOTES-2.0-M1.TXT 7. RELEASE-NOTES-2.0.1.TXT 7.2. RELEASE-NOTES-2.0-M2.TXT Release Notes -- Apache Geronimo -- Version 2.0 - Milestone 1 Geronimo URLs ------------- Home Page: http://geronimo.apache.org/

More information

Web-based File Upload and Download System

Web-based File Upload and Download System COMP4905 Honor Project Web-based File Upload and Download System Author: Yongmei Liu Student number: 100292721 Supervisor: Dr. Tony White 1 Abstract This project gives solutions of how to upload documents

More information

Effacts 4 Installation Guide

Effacts 4 Installation Guide Effacts 4 Installation Guide Contents 1. Introduction... 2 2. Prerequisites... 3 Server... 3 Database... 3 Document Location... 3 Data files... 3 Sending emails... 3 Downloading the software... 3 3. Upgrading

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

Map Intelligence Installation Guide

Map Intelligence Installation Guide Map Intelligence Installation Guide ii CONTENTS GETTING STARTED...4 Before Beginning the Installation... 4 Database Connectivity... 6 Map and Server Settings for Google Maps... 6 INSTALLING MAP INTELLIGENCE

More information

Entrust Connector (econnector) Venafi Trust Protection Platform

Entrust Connector (econnector) Venafi Trust Protection Platform Entrust Connector (econnector) For Venafi Trust Protection Platform Installation and Configuration Guide Version 1.0.5 DATE: 17 November 2017 VERSION: 1.0.5 Copyright 2017. All rights reserved Table of

More information

.NET Integration Kit. Version User Guide

.NET Integration Kit. Version User Guide .NET Integration Kit Version 2.5.1 User Guide 2012 Ping Identity Corporation. All rights reserved. PingFederate.NET Integration Kit User Guide Version 2.5.1 December, 2012 Ping Identity Corporation 1001

More information

xcelerated Integration Services (xis) xcp 2.3 Sample Application

xcelerated Integration Services (xis) xcp 2.3 Sample Application xcelerated Integration Services (xis) xcp 2.3 Sample Application Deployment Guide Abstract Outline of the deployment steps and demonstration scenario for the xis sample application. September 2016 - Version

More information

This tutorial will teach you how to use Java Servlets to develop your web based applications in simple and easy steps.

This tutorial will teach you how to use Java Servlets to develop your web based applications in simple and easy steps. About the Tutorial Servlets provide a component-based, platform-independent method for building Webbased applications, without the performance limitations of CGI programs. Servlets have access to the entire

More information

Developing and Deploying vsphere Solutions, vservices, and ESX Agents. 17 APR 2018 vsphere Web Services SDK 6.7 vcenter Server 6.7 VMware ESXi 6.

Developing and Deploying vsphere Solutions, vservices, and ESX Agents. 17 APR 2018 vsphere Web Services SDK 6.7 vcenter Server 6.7 VMware ESXi 6. Developing and Deploying vsphere Solutions, vservices, and ESX Agents 17 APR 2018 vsphere Web Services SDK 6.7 vcenter Server 6.7 VMware ESXi 6.7 You can find the most up-to-date technical documentation

More information

RadBlue s S2S Quick Start Package (RQS) Developer s Guide. Version 0.1

RadBlue s S2S Quick Start Package (RQS) Developer s Guide. Version 0.1 RadBlue s S2S Quick Start Package (RQS) Developer s Guide Version 0.1 www.radblue.com April 17, 2007 Trademarks and Copyright Copyright 2007 Radical Blue Gaming, Inc. (RadBlue). All rights reserved. All

More information

IBM Workplace Collaboration Services API Toolkit

IBM Workplace Collaboration Services API Toolkit IBM Workplace Collaboration Services API Toolkit Version 2.5 User s Guide G210-1958-00 IBM Workplace Collaboration Services API Toolkit Version 2.5 User s Guide G210-1958-00 Note Before using this information

More information

CHAPTER 6. Java Project Configuration

CHAPTER 6. Java Project Configuration CHAPTER 6 Java Project Configuration Eclipse includes features such as Content Assist and code templates that enhance rapid development and others that accelerate your navigation and learning of unfamiliar

More information

Developing and Deploying vsphere Solutions, vservices, and ESX Agents

Developing and Deploying vsphere Solutions, vservices, and ESX Agents Developing and Deploying vsphere Solutions, vservices, and ESX Agents Modified on 27 JUL 2017 vsphere Web Services SDK 6.5 vcenter Server 6.5 VMware ESXi 6.5 Developing and Deploying vsphere Solutions,

More information

KonaKart Portlet Installation for Liferay. 2 nd January DS Data Systems (UK) Ltd., 9 Little Meadow Loughton, Milton Keynes Bucks MK5 8EH UK

KonaKart Portlet Installation for Liferay. 2 nd January DS Data Systems (UK) Ltd., 9 Little Meadow Loughton, Milton Keynes Bucks MK5 8EH UK KonaKart Portlet Installation for Liferay 2 nd January 2018 DS Data Systems (UK) Ltd., 9 Little Meadow Loughton, Milton Keynes Bucks MK5 8EH UK 1 Table of Contents KonaKart Portlets... 3 Supported Versions

More information

REV. NO. CHANGES DATE. 000 New Document 5 May 2014

REV. NO. CHANGES DATE. 000 New Document 5 May 2014 DOCUMENT HISTORY REV. NO. CHANGES DATE 000 New Document 5 May 2014 PROPRIETARY INFORMATION The information contained in this document is the property of Global Vision, Inc. Information contained in this

More information

How to Publish Any NetBeans Web App

How to Publish Any NetBeans Web App How to Publish Any NetBeans Web App (apps with Java Classes and/or database access) 1. OVERVIEW... 2 2. LOCATE YOUR NETBEANS PROJECT LOCALLY... 2 3. CONNECT TO CIS-LINUX2 USING SECURE FILE TRANSFER CLIENT

More information

Troubleshooting Single Sign-On

Troubleshooting Single Sign-On Security Trust Error Message, on page 1 "Invalid Profile Credentials" Message, on page 2 "Module Name Is Invalid" Message, on page 2 "Invalid OpenAM Access Manager (Openam) Server URL" Message, on page

More information

COURSE DETAILS: CORE AND ADVANCE JAVA Core Java

COURSE DETAILS: CORE AND ADVANCE JAVA Core Java COURSE DETAILS: CORE AND ADVANCE JAVA Core Java 1. Object Oriented Concept Object Oriented Programming & its Concepts Classes and Objects Aggregation and Composition Static and Dynamic Binding Abstract

More information

App Studio 4.1 Deployment Guide

App Studio 4.1 Deployment Guide App Studio 4.1 Deployment Guide 2019-03-25 Table of Contents Deployment Guide............................................................................................. 1 Enable social and collaborative

More information

Box Connector. Version 2.0. User Guide

Box Connector. Version 2.0. User Guide Box Connector Version 2.0 User Guide 2016 Ping Identity Corporation. All rights reserved. PingFederate Box Connector User Guide Version 2.0 March, 2016 Ping Identity Corporation 1001 17th Street, Suite

More information

Troubleshooting Single Sign-On

Troubleshooting Single Sign-On Security Trust Error Message, page 1 "Invalid Profile Credentials" Message, page 2 "Module Name Is Invalid" Message, page 2 "Invalid OpenAM Access Manager (Openam) Server URL" Message, page 2 Web Browser

More information

Integration Guide. PingFederate SAML Integration Guide (SP-Initiated Workflow)

Integration Guide. PingFederate SAML Integration Guide (SP-Initiated Workflow) Integration Guide PingFederate SAML Integration Guide (SP-Initiated Workflow) Copyright Information 2018. SecureAuth is a registered trademark of SecureAuth Corporation. SecureAuth s IdP software, appliances,

More information

Oracle Service Bus. Interoperability with EJB Transport 10g Release 3 (10.3) October 2008

Oracle Service Bus. Interoperability with EJB Transport 10g Release 3 (10.3) October 2008 Oracle Service Bus Interoperability with EJB Transport 10g Release 3 (10.3) October 2008 Oracle Service Bus Interoperability with EJB Transport, 10g Release 3 (10.3) Copyright 2007, 2008, Oracle and/or

More information

Application Development in JAVA. Data Types, Variable, Comments & Operators. Part I: Core Java (J2SE) Getting Started

Application Development in JAVA. Data Types, Variable, Comments & Operators. Part I: Core Java (J2SE) Getting Started Application Development in JAVA Duration Lecture: Specialization x Hours Core Java (J2SE) & Advance Java (J2EE) Detailed Module Part I: Core Java (J2SE) Getting Started What is Java all about? Features

More information

COPYRIGHTED MATERIAL

COPYRIGHTED MATERIAL Introduction xxiii Chapter 1: Apache Tomcat 1 Humble Beginnings: The Apache Project 2 The Apache Software Foundation 3 Tomcat 3 Distributing Tomcat: The Apache License 4 Comparison with Other Licenses

More information

Web Application Architecture (based J2EE 1.4 Tutorial)

Web Application Architecture (based J2EE 1.4 Tutorial) Web Application Architecture (based J2EE 1.4 Tutorial) Dr. Kanda Runapongsa (krunapon@kku.ac.th) Department of Computer Engineering Khon Kaen University 1 Agenda Web application, components and container

More information

SAS AppDev Studio TM 3.4 Eclipse Plug-ins. Migration Guide

SAS AppDev Studio TM 3.4 Eclipse Plug-ins. Migration Guide SAS AppDev Studio TM 3.4 Eclipse Plug-ins Migration Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2009. SAS AppDev Studio TM 3.4 Eclipse Plug-ins: Migration

More information

J2EE Development. Course Detail: Audience. Duration. Course Abstract. Course Objectives. Course Topics. Class Format.

J2EE Development. Course Detail: Audience. Duration. Course Abstract. Course Objectives. Course Topics. Class Format. J2EE Development Detail: Audience www.peaksolutions.com/ittraining Java developers, web page designers and other professionals that will be designing, developing and implementing web applications using

More information

RSA SecurID Ready Implementation Guide. Last Modified: December 13, 2013

RSA SecurID Ready Implementation Guide. Last Modified: December 13, 2013 Ping Identity RSA SecurID Ready Implementation Guide Partner Information Last Modified: December 13, 2013 Product Information Partner Name Ping Identity Web Site www.pingidentity.com Product Name PingFederate

More information

Java Relying Party API v1.0 Programmer s Guide

Java Relying Party API v1.0 Programmer s Guide Java Relying Party API v1.0 Programmer s Guide 4 June 2018 Authors: Peter Höbel peter.hoebel@open-xchange.com Vittorio Bertola vittorio.bertola@open-xchange.com This document is copyrighted by the ID4me

More information

Perceptive Experience Content Apps

Perceptive Experience Content Apps Perceptive Experience Content Apps Installation and Setup Guide Written by: Product Knowledge, R&D Date: Thursday, September 15, 2016 2014-2016 Lexmark International Technology, S.A. All rights reserved.

More information

Monitoring Apache Tomcat Servers With Nagios XI

Monitoring Apache Tomcat Servers With Nagios XI Purpose This document describes how to add custom Apache Tomcat plugins and checks, namely check_tomcatsessions, to your server. Implementing Apache Tomcat plugins within will allow you the to monitor

More information

CoreBlox Integration Kit. Version 2.2. User Guide

CoreBlox Integration Kit. Version 2.2. User Guide CoreBlox Integration Kit Version 2.2 User Guide 2015 Ping Identity Corporation. All rights reserved. PingFederate CoreBlox Integration Kit User Guide Version 2.2 November, 2015 Ping Identity Corporation

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

Baidu Map Widget Installation & Extension User Guide

Baidu Map Widget Installation & Extension User Guide Baidu Map Widget Installation & Extension User Guide Version 1.0b July 2015 Table of Contents 1. Introduction and Installation... 1 2. Baidu Map Extension: Configuration and Use... 5 3. Compatibility...

More information

Advanced Java Programming

Advanced Java Programming Advanced Java Programming Length: 4 days Description: This course presents several advanced topics of the Java programming language, including Servlets, Object Serialization and Enterprise JavaBeans. In

More information

JBoss WS User Guide. Version: GA

JBoss WS User Guide. Version: GA JBoss WS User Guide Version: 1.0.1.GA 1. JBossWS Runtime Overview... 1 2. Creating a Web Service using JBossWS runtime... 3 2.1. Creating a Dynamic Web project... 3 2.2. Configure JBoss Web Service facet

More information

StreamServe Persuasion SP4 StreamStudio

StreamServe Persuasion SP4 StreamStudio StreamServe Persuasion SP4 StreamStudio Administrator s guide Rev A StreamServe Persuasion SP4 StreamStudio Administrator s guide Rev A 2001-2009 STREAMSERVE, INC. ALL RIGHTS RESERVED United States patent

More information

GIS Deployment Guide. Introducing GIS

GIS Deployment Guide. Introducing GIS GIS Deployment Guide Introducing GIS 7/13/2018 Contents 1 Introducing GIS 1.1 About the Genesys Integration Server 1.2 GIS Architecture 1.3 System Requirements 1.4 GIS Use-Case Scenario 1.5 Licensing 1.6

More information

JAVA COURSES. Empowering Innovation. DN InfoTech Pvt. Ltd. H-151, Sector 63, Noida, UP

JAVA COURSES. Empowering Innovation. DN InfoTech Pvt. Ltd. H-151, Sector 63, Noida, UP 2013 Empowering Innovation DN InfoTech Pvt. Ltd. H-151, Sector 63, Noida, UP contact@dninfotech.com www.dninfotech.com 1 JAVA 500: Core JAVA Java Programming Overview Applications Compiler Class Libraries

More information

Technosoft HR Recruitment Workflow Developers Manual

Technosoft HR Recruitment Workflow Developers Manual Technosoft HR Recruitment Workflow Developers Manual Abstract This document outlines the technical aspects, deployment and customization of Technosoft HR BPM application. Technosoft Technical Team Table

More information

DocVerify Document Library Tutorial.

DocVerify Document Library Tutorial. DocVerify Document Library Tutorial www.docverify.com Table of Contents Step 1 Create a New PDF Document OR Existing PDF:... 4 Step 2 Click Add New :... 4 Step 3 Add New Library Document Button:... 5 Step

More information

Zendesk Connector. Version 2.0. User Guide

Zendesk Connector. Version 2.0. User Guide Zendesk Connector Version 2.0 User Guide 2015 Ping Identity Corporation. All rights reserved. PingFederate Zendesk Connector Quick Connection Guide Version 2.0 November, 2015 Ping Identity Corporation

More information

IBM Workplace Software Development Kit

IBM Workplace Software Development Kit IBM Workplace Software Development Kit Version 2.6 User s Guide G210-2363-00 IBM Workplace Software Development Kit Version 2.6 User s Guide G210-2363-00 Note Before using this information and the product

More information

Reflection for the Web Installation Guide. version 12.3 SP1

Reflection for the Web Installation Guide. version 12.3 SP1 Reflection for the Web Installation Guide version 12.3 SP1 Legal Notice For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions, U.S. Government rights,

More information

CS506 Web Design & Development Final Term Solved MCQs with Reference

CS506 Web Design & Development Final Term Solved MCQs with Reference with Reference I am student in MCS (Virtual University of Pakistan). All the MCQs are solved by me. I followed the Moaaz pattern in Writing and Layout this document. Because many students are familiar

More information

API Developer Notes. A Galileo Web Services Java Connection Class Using Axis. 29 June Version 1.3

API Developer Notes. A Galileo Web Services Java Connection Class Using Axis. 29 June Version 1.3 API Developer Notes A Galileo Web Services Java Connection Class Using Axis 29 June 2012 Version 1.3 THE INFORMATION CONTAINED IN THIS DOCUMENT IS CONFIDENTIAL AND PROPRIETARY TO TRAVELPORT Copyright Copyright

More information

IBM Security Identity Governance and Intelligence. SDI-based IBM Security Privileged Identity Manager adapter Installation and Configuration Guide IBM

IBM Security Identity Governance and Intelligence. SDI-based IBM Security Privileged Identity Manager adapter Installation and Configuration Guide IBM IBM Security Identity Governance and Intelligence SDI-based IBM Security Privileged Identity Manager adapter Installation and Configuration Guide IBM IBM Security Identity Governance and Intelligence

More information

DOC // JAVA TOMCAT WEB SERVICES TUTORIAL EBOOK

DOC // JAVA TOMCAT WEB SERVICES TUTORIAL EBOOK 26 April, 2018 DOC // JAVA TOMCAT WEB SERVICES TUTORIAL EBOOK Document Filetype: PDF 343.68 KB 0 DOC // JAVA TOMCAT WEB SERVICES TUTORIAL EBOOK This tutorial shows you to create and deploy a simple standalone

More information

Microsoft ADFS Configuration

Microsoft ADFS Configuration Microsoft ADFS Configuration Side 1 af 12 1 Information 1.1 ADFS KMD Secure ISMS supports ADFS for integration with Microsoft Active Directory by implementing WS-Federation and SAML 2. The integration

More information

C-JDBC Tutorial A quick start

C-JDBC Tutorial A quick start C-JDBC Tutorial A quick start Authors: Nicolas Modrzyk (Nicolas.Modrzyk@inrialpes.fr) Emmanuel Cecchet (Emmanuel.Cecchet@inrialpes.fr) Version Date 0.4 04/11/05 Table of Contents Introduction...3 Getting

More information

Installing Access Manager Agent for Microsoft SharePoint 2007

Installing Access Manager Agent for Microsoft SharePoint 2007 Installing Access Manager Agent for Microsoft SharePoint 2007 Author: Jeff Nester Sun Microsystems Jeff.Nester@sun.com Date: 7/17/2008 Version 1.0 Description: Paraphrased version of the Sun Java System

More information

WA2031 WebSphere Application Server 8.0 Administration on Windows. Student Labs. Web Age Solutions Inc. Copyright 2012 Web Age Solutions Inc.

WA2031 WebSphere Application Server 8.0 Administration on Windows. Student Labs. Web Age Solutions Inc. Copyright 2012 Web Age Solutions Inc. WA2031 WebSphere Application Server 8.0 Administration on Windows Student Labs Web Age Solutions Inc. Copyright 2012 Web Age Solutions Inc. 1 Table of Contents Directory Paths Used in Labs...3 Lab Notes...4

More information

Meteor Quick Setup Guide Version 1.11

Meteor Quick Setup Guide Version 1.11 Steps for Setting Up Meteor 1. Download the Meteor Software from the Meteor page: www.meteornetwork.org in the User Documentation section 2. Install Java SDK (See Appendix A for instructions) o Add [Java

More information

Setting Up Resources in VMware Identity Manager (On Premises) Modified on 30 AUG 2017 VMware AirWatch 9.1.1

Setting Up Resources in VMware Identity Manager (On Premises) Modified on 30 AUG 2017 VMware AirWatch 9.1.1 Setting Up Resources in VMware Identity Manager (On Premises) Modified on 30 AUG 2017 VMware AirWatch 9.1.1 Setting Up Resources in VMware Identity Manager (On Premises) You can find the most up-to-date

More information

Introduction to application management

Introduction to application management Introduction to application management To deploy web and mobile applications, add the application from the Centrify App Catalog, modify the application settings, and assign roles to the application to

More information

Frequently Asked Questions

Frequently Asked Questions Frequently Asked Questions This PowerTools FAQ answers many frequently asked questions regarding the functionality of the various parts of the PowerTools suite. The questions are organized in the following

More information

Perceptive Data Transfer

Perceptive Data Transfer Perceptive Data Transfer Installation and Setup Guide Version: 6.5.x Written by: Product Knowledge, R&D Date: May 2017 2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International,

More information

WebEx Connector. Version 2.0. User Guide

WebEx Connector. Version 2.0. User Guide WebEx Connector Version 2.0 User Guide 2016 Ping Identity Corporation. All rights reserved. PingFederate WebEx Connector User Guide Version 2.0 May, 2016 Ping Identity Corporation 1001 17th Street, Suite

More information