S CHEDULER U SER M ANUAL

Size: px
Start display at page:

Download "S CHEDULER U SER M ANUAL"

Transcription

1 S CHEDULER U SER M ANUAL WP2 Document Filename: Work package: Partner(s): Lead Partner: KWF-WP2-D2-UIBK-v1.0-.doc WP2 UIBK UIBK Document classification: PUBLIC Abstract: This document is a user manual of the K-WfGrid Scheduler which is a service responsible for scheduling of scientific workflows based on Petri Net representation. The manual describes the steps which should be performed in order to install and configure the service, selecting between different available scheduling algorithms two basic algorithms and three advanced algorithms based on performance data. It describes also from the user s perspective the available service interfaces a Web Service interface, a Java API interface, and a Java servlet interface. PUBLIC 1 / 16

2 Delivery Slip Name Partner Date Signature From Marek Wieczorek UIBK 20/09/2006 Verified by Piotr Nowakowski CYFRONET 08/10/2006 Approved by Steffen Unger FIRST 08/10/2006 Document Log Version Date Summary of changes Author /11/2005 First version Marek Wieczorek /01/2006 Corrections after an internal review. Marek Wieczorek /08/2006 Manual for the final version of the product. Marek Wieczorek /09/2006 Corrections after an internal review. Marek Wieczorek /10/2006 QA check Piotr Nowakowski PUBLIC 2 / 16

3 CONTENTS COPYRIGHT NOTICE INTRODUCTION ABBREVIATIONS AND ACRONYMS REFERENCES AND SOURCE CODE PRODUCT USAGE RUNNING THE PRODUCT Operating Requirements Local hardware requirements Local software requirements Grid infrastructure requirements Step-by-Step User Setup BASIC OPERATION ADVANCED FEATURES KNOWN PROBLEMS INTERFACE REFERENCE GUIDE USING THE SCHEDULER AS A WEB SERVICE USING THE SCHEDULER AS A JAVA LIBRARY SCHEDULER JAVA API USER GUIDE EXCEPTION HANDLING SCHEDULER CONFIGURATION SERVLET TROUBLESHOOTING Q&A CONTACT INFORMATION AND CREDITS THE EDG LICENSE AGREEMENT PUBLIC 3 / 16

4 COPYRIGHT NOTICE Copyright (c) 2005 by UIBK. All rights reserved. Use of this product is subject to the terms and licenses stated in the EDG license agreement. Please refer to Section 5 for details. This research is partly funded by the European Commission Project K-WfGrid. PUBLIC 4 / 16

5 1. INTRODUCTION The K-WfGrid project provides a complete application execution and composition environment for the Grid. The application model adopted in the environment is the scientific workflow based on the Petri Net notation which is a successful representation used to describe the behavior of distributed systems. The workflow description language used in K-WfGrid is called GWorkflowDL. Workflows can be described on different abstraction levels (represented by different colors), of which only the lowest green level allows for execution. The Web Service technology is used in K-WfGrid as the representation describing activity interfaces. On the lowest abstraction level, every workflow activity (every workflow transition, using the Petri Net notation) is described by a web service interface, as a web service operation. For processing and execution of the workflows is responsible a service called Grid Workflow Execution Service (GWES). GWES can process the workflows which are on the lowest abstraction level. For transformation between different levels of abstraction are responsible other services of the K-WfGrid, called Workflow Conversion Tool (WCT), Automatic Application Builder (AAB), and the Scheduler. Dependences between different components of the K-WfGrid environment are depicted in Figure 1. Figure 1 K-WGrid environment The Scheduler is a component of the Grid Application Control layer of K-WfGrid. It determines which candidate web service operations (hereafter referred to also as service instances ) are selected in order to be used in the current workflow execution. The goal is to consider non-functional properties of the web services to choose between functionally equivalent instances of the same services, and to make the workflow ready for execution. Using the K-WfGrid terminology, the Scheduler converts socalled blue transitions (which are assigned to alternative service candidates) to green transitions (assigned to single service instances). PUBLIC 5 / 16

6 All decisions made by the Scheduler attempt to optimize execution performance, by trying to distinguish between semantically equivalent choices. Main features of the Scheduler are as follows: dynamic workflow scheduling, the use of dynamic performance, the use of knowledge-based performance predictions. The developer manual for the Scheduler is provided in a separate document (see References) ABBREVIATIONS AND ACRONYMS AAB Automatic Application Builder GWES Grid Workflow Execution Service GWorkflowDL Grid Workflow Description Language KAA Knowledge Assimilation Agent WCT Workflow Composition Tool 1.2. REFERENCES AND SOURCE CODE Further online information about the Scheduler is available at the following links: Scheduler Java Docs: Scheduler CVS (password protected): Scheduler Developer Manual: KWF-WP2-D2-UIBK-v1.0-.doc PUBLIC 6 / 16

7 2. PRODUCT USAGE The Scheduler is implemented as a software package which can be accessed both as a web service and as a Java library. The user specifies workflows to be scheduled, and the Scheduler creates workflow execution schedules for a real Grid environment. The user can customize the Scheduler by specifying the scheduling algorithm to be used. The detailed instructions how to use the Scheduler are available in the current section RUNNING THE PRODUCT Operating Requirements Local hardware requirements The Scheduler can be executed on any machine with Java Virtual Machine installed (version 1.5 or higher) Local software requirements The Scheduler requires Java Virtual Machine (version 1.5 or higher) installed on the local machine. It depends on the Castor data binding framework (version 0.9.7), Jaxen XPath Engine (version 1.1), JDOM (version 1.0) and Apache Axis (version 1.3) Grid infrastructure requirements Performance-driven scheduling requires the Monitoring Service (WP3) to be installed on each Grid site. Similarly, the prediction-based scheduling requires the KAA service (WP5) to be available. The Monitoring Service instances deployed on individual Grid sites are localized based on the information stored in GOM. The URL of the KAA service must be specified by the user, either in the properties file (scheduler.properties) or via the Scheduler Configuration Servlet Step-by-Step User Setup 1. Get the sources from CVS: export CVSROOT=:pserver:<username>@cvs.ui.sav.sk:/home/cvs cvs login cvs co kwfgrid/scheduler 2. Customize scheduler.properties file: cd <scheduler_root>/src/java/resources <edit> scheduler.properties - Specify the default scheduling algorithm: scheduling_algorithm = [easy random performancedriven predictiondriven predictionandperformancedriven] easy basic algorithm, selecting always the first service instance candidate, random - basic algorithm, selecting service instance candidates in a random way, performancedriven scheduling algorithm based on dynamic performance guidance (supported by the Monitoring Service, WP3), predictiondriven scheduling algorithm based on performance prediction (supported by the KAA service, WP5), PUBLIC 7 / 16

8 predictionandperformancedriven scheduling algorithm based on performance prediction and dynamic performance guidance (supported by the Monitoring Service, WP3, and the KAA service, WP5). The default scheduling algorithm can be changed via the Scheduler Configuration Servlet. It can be also specified for each scheduled workflow separately, by setting a special property scheduler.refinement.method for the workflow to one of the values mentioned above (easy, random, performancedriven, predictiondriven, predictionandperformancedriven). - Enable/disable groupid consistency mode. In the groupid consistency mode, the Scheduler tries to fulfill a common requirement to schedule operations of the same web service to the same physical resource. group_id_consistency = [true false] - Specify URLs of the KAA service: kaa_service = <kaa_service_url> 3. Compile and deploy the Scheduler: export CATALINA_HOME=<tomcat_home> export SCHEDULER_HOME=<scheduler_root> cd $SCHEDULER_HOME ant deploy The scheduler is now compiled and deployed as an Axis web service. 4. Configure the Scheduler Configuration Servlet: The Scheduler deployed as a web service can be configured and monitored by the Scheduler Configuration Servlet. The servlet should be configured in the servlet container: cd $CATALINA_HOME/webapps/axis/WEB-INF vim web.xml <servlet> <servlet-name>schedulerconfigurationservlet</servlet-name> <display-name>scheduler Configuration Servlet</display-name> <servlet-class> net.kwfgrid.scheduler.servlet.schedulerconfigurationservlet </servlet-class> </servlet> <servlet-mapping> <servlet-name>schedulerconfigurationservlet</servlet-name> <url-pattern>/scheduler/schedulerstatusservlet</url-pattern> </servlet-mapping> 2.2. BASIC OPERATION The Scheduler makes workflows ready-for-execution, by selecting the service instances which should be used in the execution. According to the terminology used in K-WfGrid, the Scheduler converts between the following 2 abstraction levels of workflows: Workflow of Service Candidates (Blue): Consists of lists of Web Service candidates which match the Web Service classes. PUBLIC 8 / 16

9 Workflow of Service Instances (Green): Consists of concrete instances of Web Service operations (selected from the lists of candidates). Blue workflows are processed by the Scheduler using different implemented scheduling algorithms, and green workflows are created accordingly. This functionality is used by the GWES which is responsible for coordination of the whole workflow processing, and which executes the green workflows created by the Scheduler. The operation of the Scheduler can be monitored by using the Scheduler Configuration Servlet. In Figure 4 we can see a part of a CTM workflow converted from blue to green by the Scheduler. Relevant messages concerning the operation of the Scheduler are logged into the system (see Figure 2). Figure 2 K-WfGrid portal: logged Scheduler messages 2.3. ADVANCED FEATURES Implementing a common user requirement, the Scheduler can work in a special groupid consistency mode. Working in this mode, the Scheduler tries to schedule the operations of the same web service to the same resource. The Scheduler checks if the workflow transition currently under consideration is assigned to instances of a web service which have already been considered during the given workflow scheduling process. If this is the case, and if a special instancegroupid property is set to the same value both for the current transition and for the relevant transition scheduled before, the Scheduler tries to assign to the current transition an instance of the same physical service deployment as the one selected before. For example, let us consider two transitions A and B of the same workflow, for both of which instancegroupid property is set to the same value (e.g., a ). Transition A is scheduled earlier and assigned to a service operation of a service s deployed on resource grid01. In that case when scheduling transition B, the Scheduler will also try to assign it to an operation of the service s deployed on the resource grid01. If such an assignment is not possible, then the Scheduler will perform a normal mode scheduling, ignoring the groupid consistency KNOWN PROBLEMS The performance-based and the prediction-based algorithms depend on the Monitoring Service, and the prediction-based and the prediction-and-performance-based algorithms depend on the KAA service. If any of the required services is not available or incorrectly configured, the corresponding algorithms may not work properly. PUBLIC 9 / 16

10 3. INTERFACE REFERENCE GUIDE The Scheduler can be accessed in two different ways: either as a web service, or as a Java library. A simple client application is provided together with the scheduler software package, which allows the user to schedule workflow using one of the two possible ways. In the current section, we describe shortly how to use the example client. We also describe the Java API of the Scheduler, and provide an introduction to the Scheduler Configuration Servlet USING THE SCHEDULER AS A WEB SERVICE The Scheduler can be accessed as a standard Axis web service. Script run-scheduler.sh provided with the source code of the scheduler can be applied to schedule workflows using a scheduler service deployed in a web service container: cd <scheduler_root>/scripts./run-scheduler.sh \ <scheduler_root>/src/test/resources/<workflow_xml> \ <scheduler_service_url> The program reads XML workflow specification from the input file, schedules the workflow using the service deployed on <scheduler_service_url>, and prints out the XML of the scheduled workflow to the standard output. The source code of the example client is available in class net.kwfgrid.scheduler.client.schedulerclient USING THE SCHEDULER AS A JAVA LIBRARY Script run-scheduler.sh can also be applied to use the Scheduler as a standard Java library. To this end, the syntax should be as follows: cd <scheduler_root>/scripts./run-scheduler.sh \ <scheduler_root>/src/test/resources/<workflow_xml> -nows 3.3. SCHEDULER JAVA API USER GUIDE The Scheduler provides a Java API which can be accessed directly on the source code level. All Java classes are grouped in package net.kwfgrid.scheduler and in its subpackages. 1. Change the default URL of the KAA service (optional): The default URL of the KAA service specified in scheduling.properties file can be redefined on the source code level. import net.kwfgrid.scheduler.kaainterface.kaabasedscheduling; KAABasedScheduling.setKAA_URI(<kaa_service_url>); 2. Change the default scheduling algorithm (optional): The default scheduling algorithm defined in scheduling.properties file can be redefined on the source code level. One of the following lines can be applied in the code: import net.kwfgrid.scheduler.scheduler; import net.kwfgrid.scheduler.schedulingmethod; PUBLIC 10 / 16

11 easy algorithm: Scheduler.setDefaultSchedulingMethodName( SchedulingMethod.EASY_SCHEDULING_PROPERTY_NAME ); random algorithm: Scheduler.setDefaultSchedulingMethodName( SchedulingMethod.RANDOM_SCHEDULING_PROPERTY_NAME ); performance-driven algorithm: Scheduler.setDefaultSchedulingMethodName( SchedulingMethod.PERFORMANCE_DRIVEN_SCHEDULING_PROPERTY_NAME ); prediction-based algorithm: Scheduler.setDefaultSchedulingMethodName( SchedulingMethod.PREDICTION_DRIVEN_SCHEDULING_PROPERTY_NAME ); prediction-and-performance-based algorithm: Scheduler.setDefaultSchedulingMethodName( SchedulingMethod. PREDICTION_AND_PERFORMANCE_DRIVEN_SCHEDULING_PROPERTY_NAME ); 3. Initialize an instance of the scheduler: Scheduler scheduler = new Scheduler(); 4. Schedule workflows: import net.kwfgrid.gworkflowdl.structure.workflow; Workflow[] scheduledworkflowxmls = scheduler.schedule(new Workflow[]{<workflow_1>,,<workflow_n>}); 3.3 EXCEPTION HANDLING There are several possible cases when an exception can occur during the scheduling. In particular: the workflow being scheduled may be malformed (e.g., a URL can be incorrect), the Monitoring Service may be not available, the KAA service may be not available. Once detected, all exceptions are handled within the Scheduler. The result of most of the exceptions is usually preventing the Scheduler from receiving the data necessary for performing an advanced scheduling algorithm (performance-driven, prediction-driven or prediction-and-performance-driven). Handling the exceptions, the Scheduler applies basic algorithm easy instead of the advance algorithm. PUBLIC 11 / 16

12 4. SCHEDULER CONFIGURATION SERVLET The Scheduler Configuration Servlet (see Figure 3-Figure 4) is designed to customize scheduler services deployed on the Grid, and to monitor the scheduling operations performed by the services. The servlet is integrated with the K-WfGrid portal, and has two views which show the status of the scheduler on the general level (main view, see Figure 3), and on the level of an individual workflow (workflow view, see Figure 4). By using the main view (see Figure 3), the user can configure the scheduler service, by changing the default scheduling algorithm, or changing the default URL of the KAA service (used in the predictionbased and in the prediction-and-performance-based algorithms). The user can also see the history of the scheduling operations performed by the service. Figure 3 Scheduler Configuration Servlet: main view By clicking on any workflow scheduled by the service, the user enters the workflow view which shows the details of the given scheduling operation (see Figure 3). The view shows the transitions of the original blue workflow, and the transitions of the green workflow created by the Scheduler. It shows also the details of the scheduling, including the algorithm used to schedule the whole workflow, and the scheduling decision for each processed transition. PUBLIC 12 / 16

13 Figure 4 Scheduler Configuration Servlet: workflow view PUBLIC 13 / 16

14 5. TROUBLESHOOTING Q&A Q: I can schedule workflows with both of the basic scheduling algorithms (easy and random), but I cannot do it with any (some) of the advanced algorithms (performance-based, prediction-based, prediction-and-performance-based). A: The basic algorithms do not depend on any other service of the K-WfGrid, so they should work always when the Scheduler is configured properly. The advanced algorithms depend on some other services (on the Monitoring Service and the KAA service), so they may not work when one of these services is not available or not configured properly. If you cannot use the prediction-based-algorithm or the prediction-and-performance-based algorithm, you should check if the URL of the KAA service is properly configured. If you have problems with the prediction-based algorithm or with the prediction-and-performance-based algorithm, the Monitoring Service may not be available on some Grid sites, and you should use another algorithm. PUBLIC 14 / 16

15 6. CONTACT INFORMATION AND CREDITS Contact person: Marek Wieczorek, ( PUBLIC 15 / 16

16 7. THE EDG LICENSE AGREEMENT Copyright (c) 2004 K-WfGrid. All rights reserved. This software includes voluntary contributions made to K-WfGrid. For more information on K- WfGrid, please see Installation, use, reproduction, display, modification and redistribution of this software, with or without modification, in source and binary forms, are permitted. Any exercise of rights under this license by you or your sub-licensees is subject to the following conditions: 1. Redistributions of this software, with or without modification, must reproduce the above copyright notice and the above license statement as well as this list of conditions, in the software, the user documentation and any other materials provided with the software. 2. The user documentation, if any, included with a redistribution, must include the following notice: This product includes software developed by K-WfGrid ( Alternatively, if that is where third-party acknowledgments normally appear, this acknowledgment must be reproduced in the software itself. 3. The names K-WfGrid and Knowledge Workflow Grid may not be used to endorse or promote software, or products derived therefrom, except with prior written permission by steffen.unger@first.fraunhofer.de. 4. You are under no obligation to provide anyone with any bug fixes, patches, upgrades or other modifications, enhancements or derivatives of the features, functionality or performance of this software that you may develop. However, if you publish or distribute your modifications, enhancements or derivative works without contemporaneously requiring users to enter into a separate written license agreement, then you are deemed to have granted participants in K-WfGrid a worldwide, non-exclusive, royalty-free, perpetual license to install, use, reproduce, display, modify, redistribute and sub-license your modifications, enhancements or derivative works, whether in binary or source code form, under the license conditions stated in this list of conditions. 5. DISCLAIMER THIS SOFTWARE IS PROVIDED BY K-WfGrid AND CONTRIBUTORS AS IS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, OF SATISFACTORY QUALITY, AND FITNESS FOR A PARTICULAR PURPOSE OR USE ARE DISCLAIMED. K-WfGrid AND CONTRIBUTORS MAKE NO REPRESENTATION THAT THE SOFTWARE, MODIFICATIONS, ENHANCEMENTS OR DERIVATIVE WORKS THEREOF, WILL NOT INFRINGE ANY PATENT, COPYRIGHT, TRADE SECRET OR OTHER PROPRIETARY RIGHT. 6. LIMITATION OF LIABILITY K-WfGrid AND CONTRIBUTORS SHALL HAVE NO LIABILITY TO LICENSEE OR OTHER PERSONS FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, LOSS OF USE, DATA OR PROFITS, OR BUSINESS INTERRUPTION, HOWEVER CAUSED AND ON ANY THEORY OF CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR OTHERWISE, ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. PUBLIC 16 / 16

Open Source Used In Cisco Instant Connect for ios Devices 4.9(1)

Open Source Used In Cisco Instant Connect for ios Devices 4.9(1) Open Source Used In Cisco Instant Connect for ios Devices 4.9(1) Cisco Systems, Inc. www.cisco.com Cisco has more than 200 offices worldwide. Addresses, phone numbers, and fax numbers are listed on the

More information

Open Source Used In Cisco IronPort Email Encryption SDK 6.9.2 014

Open Source Used In Cisco IronPort Email Encryption SDK 6.9.2 014 Open Source Used In Cisco IronPort Email Encryption SDK 6.9.2 014 This document contains the licenses and notices for open source software used in this product. With respect to the free/open source software

More information

P ERFORMANCE M ONITORING AND A NALYSIS S ERVICES - S TABLE S OFTWARE

P ERFORMANCE M ONITORING AND A NALYSIS S ERVICES - S TABLE S OFTWARE P ERFORMANCE M ONITORING AND A NALYSIS S ERVICES - S TABLE S OFTWARE WP3 Document Filename: Work package: Partner(s): Lead Partner: v1.0-.doc WP3 UIBK, CYFRONET, FIRST UIBK Document classification: PUBLIC

More information

BMC Remedy Action Request System 7.0 Open Source License Agreements

BMC Remedy Action Request System 7.0 Open Source License Agreements March 2006 BMC Remedy Action Request System 7.0 Open Source License Agreements Copyright 1991 2005 BMC Software, Inc. All rights reserved. BMC, the BMC logo, all other BMC product or service names, BMC

More information

Enterprise Manager to Enterprise Console upgrade guide. Sophos Enterprise Manager version 4.7 Sophos Enterprise Console version 4.7.

Enterprise Manager to Enterprise Console upgrade guide. Sophos Enterprise Manager version 4.7 Sophos Enterprise Console version 4.7. Enterprise Manager to Enterprise Console upgrade guide Sophos Enterprise Manager version 4.7 Sophos Enterprise Console version 4.7.1 Document date: July 2011 Contents 1 About this guide...3 2 What are

More information

Azure Multi-Factor Authentication. KEMP LoadMaster and Azure Multi- Factor Authentication. Technical Note

Azure Multi-Factor Authentication. KEMP LoadMaster and Azure Multi- Factor Authentication. Technical Note KEMP LoadMaster and Azure Multi- Factor Authentication Technical Note VERSION: 1.0 UPDATED: APRIL 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies

More information

Open Source Used In LDSF 1.7.2

Open Source Used In LDSF 1.7.2 Open Source Used In LDSF 1.7.2 This document contains the licenses and notices for open source software used in this product. With respect to the free/open source software listed in this document, if you

More information

Open Source Software used in the product

Open Source Software used in the product Open Source Software used in the product The software in this product contains parts licensed under various Open Source licenses. Please refer to the below list for further information on the software

More information

Boost Libraries Boost Software License Version 1.0

Boost Libraries Boost Software License Version 1.0 Citrix AppDNA Listing of Open Source Components The following is a listing of open source licensed software which may accompany AppDNA. Each of the components listed below may be redistributed under the

More information

Fuse MQ Enterprise Broker Administration Tutorials

Fuse MQ Enterprise Broker Administration Tutorials Fuse MQ Enterprise Broker Administration Tutorials Version 7.0 April 2012 Integration Everywhere Broker Administration Tutorials Version 7.0 Updated: 14 Sep 2012 Copyright 2011 FuseSource Corp. All rights

More information

DICOM Printing Function User's Guide C610 DM / C711 DM / C831 DM / C910 DM ES6410 DM / ES7411 DM / ES8431 DM / ES9410 DM

DICOM Printing Function User's Guide C610 DM / C711 DM / C831 DM / C910 DM ES6410 DM / ES7411 DM / ES8431 DM / ES9410 DM OKI DICOM Embedded Printer DICOM Printing Function User's Guide C610 DM / C711 DM / C831 DM / C910 DM ES6410 DM / ES7411 DM / ES8431 DM / ES9410 DM Important note: This manual describes all the functionalities

More information

Installing the Shrew Soft VPN Client

Installing the Shrew Soft VPN Client Windows Install Installing the Shrew Soft VPN Client ShrewVPNWindows201003-01 Global Technology Associates 3505 Lake Lynda Drive Suite 109 Orlando, FL 32817 Tel: +1.407.380.0220 Fax. +1.407.380.6080 Email:

More information

Open Source Used In Cisco TelePresence TC Console TC7.1

Open Source Used In Cisco TelePresence TC Console TC7.1 Open Source Used In Cisco TelePresence TC Console TC7.1 Cisco Systems, Inc. www.cisco.com Cisco has more than 200 offices worldwide. Addresses, phone numbers, and fax numbers are listed on the Cisco website

More information

RSA Data Security, Inc. Portions derived from the RSA Data Security, Inc. MD5 Message-Digest Algorithm.

RSA Data Security, Inc. Portions derived from the RSA Data Security, Inc. MD5 Message-Digest Algorithm. Adobe Reader for ios, Android, and Adobe Reader Touch for Windows may contain one or more of the following Third Party Software Notices and/or Additional Terms and Conditions RSA Data Security, Inc. Portions

More information

RSA Two Factor Authentication

RSA Two Factor Authentication RSA Two Factor Authentication VERSION: 1.0 UPDATED: MARCH 2014 Copyright 2002-2014 KEMP Technologies, Inc. All Rights Reserved. Page 1 / 16 Copyright Notices Copyright 2002-2014 KEMP Technologies, Inc..

More information

Stone Edge Integration Guide

Stone Edge Integration Guide Stone Edge Integration Guide Revised May 25, 2007 Modular Merchant: Terms of Service Modular Merchant Developed by Stepping Stone Media, LLC 30 East Broadway STE 210 Eugene, OR 97401 www.modularmerchant.com

More information

[MD5 Message Digests] derived from the RSA Data Security, Inc. MD5 Message Digest Algorithm

[MD5 Message Digests] derived from the RSA Data Security, Inc. MD5 Message Digest Algorithm [MD5 Message Digests] derived from the RSA Data Security, Inc. MD5 Message Digest Algorithm [RegExp] Copyright (c) 1986, 1993, 1995 by University of Toronto. Written by Henry Spencer. THIS IS AN ALTERED

More information

Microsoft SharePoint

Microsoft SharePoint Microsoft SharePoint VERSION: 1.1 UPDATED: JULY 2014 Copyright 2002-2014 KEMP Technologies, Inc. All Rights Reserved. Page 1 / 13 Copyright Notices Copyright 2002-2014 KEMP Technologies, Inc.. All rights

More information

Oracle Endeca Information Discovery Integrator

Oracle Endeca Information Discovery Integrator Oracle Endeca Information Discovery Integrator Third-Party Version 3.1.1 December 2013 Copyright and disclaimer Copyright 2003, 2014, Oracle and/or its affiliates. All rights reserved. Oracle and Java

More information

BlackBerry Enterprise Server Resource Kit BlackBerry Analysis, Monitoring, and Troubleshooting Tools Version: 5.0 Service Pack: 2.

BlackBerry Enterprise Server Resource Kit BlackBerry Analysis, Monitoring, and Troubleshooting Tools Version: 5.0 Service Pack: 2. BlackBerry Enterprise Server Resource Kit BlackBerry Analysis, Monitoring, and Troubleshooting Tools Version: 5.0 Service Pack: 2 Release Notes Published: 2010-06-04 SWD-1155103-0604111944-001 Contents

More information

RockWare Click-Wrap Software License Agreement ( License )

RockWare Click-Wrap Software License Agreement ( License ) RockWare, Inc. ( RockWare ) 2221 East Street, Suite 101 Golden CO 80401 USA RockWare Click-Wrap Software License Agreement ( License ) IMPORTANT - READ ALL OF THE TERMS AND CONDITIONS IN THIS LICENSE CAREFULLY

More information

Apache Software Foundation This product includes software developed by the Apache Software Foundation (http://www.apache.org)

Apache Software Foundation This product includes software developed by the Apache Software Foundation (http://www.apache.org) Apache Software Foundation This product includes software developed by the Apache Software Foundation (http://www.apache.org) FutureScale, Inc. PureMVC PureMVC AS3 Utility Startup Manager Copyright (c)

More information

System Center Virtual Machine Manager 2012 R2 Plug-In. Feature Description

System Center Virtual Machine Manager 2012 R2 Plug-In. Feature Description System Center Virtual Machine Manager 2012 R2 Plug-In Feature Description VERSION: 6.0 UPDATED: MARCH 2016 Copyright Notices Copyright 2002-2016 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies

More information

PeopleSoft Red Paper Series. E-Learning. By: Gregory Sandford, Benjamin Harr, Leo Popov May 2006

PeopleSoft Red Paper Series. E-Learning. By: Gregory Sandford, Benjamin Harr, Leo Popov May 2006 PeopleSoft Red Paper Series E-Learning By: Gregory Sandford, Benjamin Harr, Leo Popov May 2006 E-Learning Copyright 2006, Oracle. All rights reserved. The Programs (which include both the software and

More information

RSA Two Factor Authentication. Feature Description

RSA Two Factor Authentication. Feature Description RSA Two Factor Authentication Feature Description VERSION: 3.0 UPDATED: SEPTEMBER 2015 Copyright Notices Copyright 2002 2015 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP

More information

Scan to SharePoint. Administrator's Guide

Scan to SharePoint. Administrator's Guide Scan to SharePoint Administrator's Guide August 2015 www.lexmark.com Contents 2 Contents Overview... 4 Deployment readiness checklist...5 Configuring the SharePoint server settings...7 Enabling authentication

More information

BlackBerry Business Cloud Services. Version: 6.1.7. Release Notes

BlackBerry Business Cloud Services. Version: 6.1.7. Release Notes BlackBerry Business Cloud Services Version: 6.1.7 Release Notes Published: 2015-04-02 SWD-20150402141754388 Contents 1 Related resources...4 2 What's new in BlackBerry Business Cloud Services 6.1.7...

More information

PointCentral Subscription Agreement v.9.2

PointCentral Subscription Agreement v.9.2 PointCentral Subscription Agreement v.9.2 READ THIS SUBSCRIPTION AGREEMENT ( AGREEMENT ) CAREFULLY BEFORE INSTALLING THIS SOFTWARE. THIS AGREEMENT, BETWEEN CALYX TECHNOLOGY, INC., DBA CALYX SOFTWARE (

More information

Sophos Anti-Virus for Linux startup guide. Product version: 9

Sophos Anti-Virus for Linux startup guide. Product version: 9 Sophos Anti-Virus for Linux startup guide Product version: 9 Document date: December 2013 Contents 1 About this guide...3 2 System requirements...3 3 About Sophos Anti-Virus for Linux...3 4 Installing

More information

Sophos Enterprise Console quick startup guide. Product version: 5.1 Document date: June 2012

Sophos Enterprise Console quick startup guide. Product version: 5.1 Document date: June 2012 Sophos Enterprise Console quick startup guide Product version: 5.1 Document date: June 2012 Contents 1 About this guide...3 2 What do I install?...3 3 What are the key steps?...3 4 Check the system requirements...4

More information

Open Source Used In Meeting integration for Jabber 9.6

Open Source Used In Meeting integration for Jabber 9.6 Open Source Used In Meeting integration for Jabber 9.6 Cisco Systems, Inc. www.cisco.com Cisco has more than 200 offices worldwide. Addresses, phone numbers, and fax numbers are listed on the Cisco website

More information

CITRIX SYSTEMS, INC. SOFTWARE LICENSE AGREEMENT

CITRIX SYSTEMS, INC. SOFTWARE LICENSE AGREEMENT CITRIX SYSTEMS, INC. SOFTWARE LICENSE AGREEMENT PLEASE READ THIS SOFTWARE LICENSE AGREEMENT CAREFULLY BEFORE DOWNLOADING, INSTALLING OR USING CITRIX OR CITRIX-SUPPLIED SOFTWARE. BY DOWNLOADING OR INSTALLING

More information

Portions derived from the RSA Data Security, Inc. MD5 Message-Digest Algorithm.

Portions derived from the RSA Data Security, Inc. MD5 Message-Digest Algorithm. Portions derived from the RSA Data Security, Inc. MD5 Message-Digest Algorithm. The Apache Software License, Version 1.1 Copyright (c) 1999-2001 The Apache Software Foundation. All rights reserved. 3.

More information

FortiAuthenticator Agent for Microsoft IIS/OWA. Install Guide

FortiAuthenticator Agent for Microsoft IIS/OWA. Install Guide FortiAuthenticator Agent for Microsoft IIS/OWA Install Guide FortiAuthenticator Agent for Microsoft IIS/OWA Install Guide February 5, 2015 Revision 1 Copyright 2015 Fortinet, Inc. All rights reserved.

More information

SOFTWARE SOFTWARE ACKNOWLEDGEMENTS. SecuriSync. SecuriSync

SOFTWARE SOFTWARE ACKNOWLEDGEMENTS. SecuriSync. SecuriSync SOFTWARE SOFTWARE ACKNOWLEDGEMENTS ACKNOWLEDGEMENTS SecuriSync SecuriSync The Intermedia Technologies Company Ltd. ( Intermedia ) software referenced in this notice is distributed with certain third party

More information

Using SNMP with OnGuard

Using SNMP with OnGuard Advanced Installation Topics Chapter 8: Using SNMP with OnGuard SNMP (Simple Network Management Protocol) is used primarily for managing and monitoring devices on a network. This is achieved through the

More information

C-DAC Medical Informatics Software Development Kit End User License Agreement

C-DAC Medical Informatics Software Development Kit End User License Agreement C-DAC Medical Informatics Software Development Kit End User License Agreement BY DOWNLOADING AND INSTALLING, COPYING OR OTHERWISE USING THE CENTRE FOR DEVELOPMENT OF ADVANCED COMPUTING ( C-DAC ) MEDICAL

More information

AGILE RISK MANAGEMENT LLC MASTER SOFTWARE LICENSE AGREEMENT

AGILE RISK MANAGEMENT LLC MASTER SOFTWARE LICENSE AGREEMENT AGILE RISK MANAGEMENT LLC MASTER SOFTWARE LICENSE AGREEMENT TERMS AND CONDITIONS 1. Scope of Agreement; Definitions. This Agreement covers the license and permitted use of the Agile Risk Management LLC

More information

DATA CENTER ACCESS POLICY AND GUIDELINES

DATA CENTER ACCESS POLICY AND GUIDELINES DATA CENTER ACCESS POLICY AND GUIDELINES Information Security Team DePaul University 1 East Jackson Boulevard Chicago, Illinois 60604 https:/infosec.depaul.edu/ 13th December 2002 Copyright Notice Copyright

More information

Open Source Used In Cisco D9865 Satellite Receiver Software Version 2.20

Open Source Used In Cisco D9865 Satellite Receiver Software Version 2.20 Open Source Used In Cisco D9865 Satellite Receiver Software Version 2.20 Cisco Systems, Inc. www.cisco.com Cisco has more than 200 offices worldwide. Addresses, phone numbers, and fax numbers are listed

More information

Oracle Binary Code License Agreement for the Java SE Platform Products and JavaFX

Oracle Binary Code License Agreement for the Java SE Platform Products and JavaFX Oracle Binary Code License Agreement for the Java SE Platform Products and JavaFX ORACLE AMERICA, INC. ("ORACLE"), FOR AND ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND AFFILIATES UNDER COMMON CONTROL,

More information

Digger Solutions. Intranet Open Source. Administrator s Guide

Digger Solutions. Intranet Open Source. Administrator s Guide Digger Solutions Intranet Open Source Administrator s Guide Hello and welcome to your new Intranet! Welcome to Digger Solutions Intranet Open Source. If you have any questions please review the product

More information

Hyper V Windows 2012 and 8. Virtual LoadMaster for Microsoft Hyper V on Windows Server 2012, 2012 R2 and Windows 8. Installation Guide

Hyper V Windows 2012 and 8. Virtual LoadMaster for Microsoft Hyper V on Windows Server 2012, 2012 R2 and Windows 8. Installation Guide Virtual LoadMaster for Microsoft Hyper V on Windows Server 2012, 2012 R2 and Windows 8 Installation Guide VERSION: 3.0 UPDATED: SEPTEMBER 2015 Copyright Notices Copyright 2002 2015 KEMP Technologies, Inc..

More information

Setup Reset Password Portal. CloudAnywhere. Auteur Emmanuel Dreux edreux@cloudiway.com +33 4 26 78 17 58 + 33 6 47 81 26 70

Setup Reset Password Portal. CloudAnywhere. Auteur Emmanuel Dreux edreux@cloudiway.com +33 4 26 78 17 58 + 33 6 47 81 26 70 Setup Reset Password Portal CloudAnywhere Auteur Emmanuel Dreux edreux@cloudiway.com +33 4 26 78 17 58 + 33 6 47 81 26 70 http://www.cloudiway.com Setup RPP, CloudAnywhere, Version 156 Rédacteur Emmanuel

More information

RTI Monitor. Release Notes

RTI Monitor. Release Notes RTI Monitor Release Notes Version 5.1.0 2013 Real-Time Innovations, Inc. All rights reserved. Printed in U.S.A. First printing. December 2013. Trademarks Real-Time Innovations, RTI, and Connext are trademarks

More information

Open Source Used In T28.12CP2 Client Component (Chat, Poll, QA, FT, FB, Notes, RP)

Open Source Used In T28.12CP2 Client Component (Chat, Poll, QA, FT, FB, Notes, RP) Open Source Used In T28.12CP2 Client Component (Chat, Poll, QA, FT, FB, Notes, RP) Cisco Systems, Inc. www.cisco.com Cisco has more than 200 offices worldwide. Addresses, phone numbers, and fax numbers

More information

Adobe Connect Collaboration SDK Third Party Notices and/or Additional Terms and Conditions

Adobe Connect Collaboration SDK Third Party Notices and/or Additional Terms and Conditions Adobe Connect Collaboration SDK Third Party Notices and/or Additional Terms and Conditions The contents of this file are subject to the Netscape Public License Version 1.1 (the "License"); you may not

More information

XBRL INTERNATIONAL INTELLECTUAL PROPERTY RIGHTS POLICY. As approved on 2009-06-22, effective 2009-08-01

XBRL INTERNATIONAL INTELLECTUAL PROPERTY RIGHTS POLICY. As approved on 2009-06-22, effective 2009-08-01 1. IPR Generally 1.1 Purpose XBRL INTERNATIONAL INTELLECTUAL PROPERTY RIGHTS POLICY As approved on 2009-06-22, effective 2009-08-01 XBRL International ("XBRLI") has adopted this Intellectual Property Rights

More information

Integrated Citrix Servers

Integrated Citrix Servers Installation Guide Supplement for use with Integrated Citrix Servers Websense Web Security Websense Web Filter v7.5 1996-2010, Websense, Inc. 10240 Sorrento Valley Rd., San Diego, CA 92121, USA All rights

More information

1.1 Authorized User means an employee of Customer who has been issued a User ID in accordance with Section 3.2(a).

1.1 Authorized User means an employee of Customer who has been issued a User ID in accordance with Section 3.2(a). RealPrence Cloud Video Meeting Services POLYCOM, INC., VIDEO-AS-A-SERVICE TERMS OF SERVICE This Video-as-a-Service Terms of Service (the Agreement ) govern the access to and use of the VaaS by each person

More information

Adobe DNG Flat Field Plug-in (1.0) Software Notices and/or Additional Terms and Conditions

Adobe DNG Flat Field Plug-in (1.0) Software Notices and/or Additional Terms and Conditions Adobe DNG Flat Field Plug-in (1.0) Software Notices and/or Additional Terms and Conditions This page and/or pages linked from this page contain Third Party Software Notices and/or Additional Terms and

More information

Release Notes for CounterPath Bria Android Tablet Edition Version 2.3.5

Release Notes for CounterPath Bria Android Tablet Edition Version 2.3.5 CounterPath Corporation Suite 300, Bentall One Centre 505 Burrard Street Box 95 Vancouver BC V7X 1M3 Canada V6B1R8 Telephone: +1.604.320.3344 www.counterpath.com Release Notes for CounterPath Bria Android

More information

BlackBerry Enterprise Server. BlackBerry Administration Service Roles and Permissions Version: 5.0 Service Pack: 4.

BlackBerry Enterprise Server. BlackBerry Administration Service Roles and Permissions Version: 5.0 Service Pack: 4. BlackBerry Enterprise Server BlackBerry Administration Service Roles and Permissions Version: 5.0 Service Pack: 4 Reference Guide Published: 2013-03-28 SWD-20130328143914668 Contents 1 Administrative s

More information

How to Deploy Models using Statistica SVB Nodes

How to Deploy Models using Statistica SVB Nodes How to Deploy Models using Statistica SVB Nodes Abstract Dell Statistica is an analytics software package that offers data preparation, statistics, data mining and predictive analytics, machine learning,

More information

Realex Payments Gateway Extension with 3D Secure for Magento. User Guide to Installation and Configuration. StudioForty9 www.studioforty9.

Realex Payments Gateway Extension with 3D Secure for Magento. User Guide to Installation and Configuration. StudioForty9 www.studioforty9. Realex Payments Gateway Extension with 3D Secure for Magento User Guide to Installation and Configuration StudioForty9 www.studioforty9.com User Guide: Table of Contents 3 How to Install the Realex Module

More information

HSS Specific Terms HSS SOFTWARE LICENSE AGREEMENT

HSS Specific Terms HSS SOFTWARE LICENSE AGREEMENT HSS Specific Terms HSS SOFTWARE LICENSE AGREEMENT 1. LICENSE 2. TERMINATION Subject to the terms and conditions of this HSS Software License Agreement (the Agreement ), HSS hereby grants to Client (herein

More information

Universal File Mover Status Monitor Installation and Operation Manual

Universal File Mover Status Monitor Installation and Operation Manual Universal File Mover Status Monitor Installation and Operation Manual Capitalware Inc. Unit 11, 1673 Richmond Street, PMB524 London, Ontario N6G2N3 Canada sales@capitalware.com http://www.capitalware.com

More information

Paychex Accounting Online Terms of Use

Paychex Accounting Online Terms of Use Paychex Accounting Online Terms of Use Paychex recommends that Client read the Terms of Use prior to using the Paychex Accounting Online Software ( Software ). If Client does not accept and agree with

More information

WEBSITE TERMS & CONDITIONS. Last updated March 27, 2015

WEBSITE TERMS & CONDITIONS. Last updated March 27, 2015 WEBSITE TERMS & CONDITIONS Last updated March 27, 2015 1. Introduction and Acceptance of Terms & Conditions Running Away Enterprises, LLC, a Delaware limited liability company d/b/a Enmotive ( us, we,

More information

Dell One Identity Cloud Access Manager 8.0 - How to Configure vworkspace Integration

Dell One Identity Cloud Access Manager 8.0 - How to Configure vworkspace Integration Dell One Identity Cloud Access Manager 8.0 - How to Configure vworkspace Integration February 2015 This guide describes how to configure Dell One Identity Cloud Access Manager to communicate with a Dell

More information

How To Use Hp Bsm Integration For Bmbsm (Bms) On A Pc Or Macbook (Bmb) With A Microsoft Powerbook (Mmb) On An Ipa (Bsm) With An Ipam

How To Use Hp Bsm Integration For Bmbsm (Bms) On A Pc Or Macbook (Bmb) With A Microsoft Powerbook (Mmb) On An Ipa (Bsm) With An Ipam Software License and Support Terms IMPORTANT! UPON DOWNLOADING OF THE SOFTWARE, USE OF THE SOFTWARE IS SUBJECT TO THE ComTrade SOFTWARE LICENSE AND SUPPORT TERMS AND CONDITIONS ( TERMS ) SET FORTH BELOW.

More information

BlackBerry Enterprise Server Express. Version: 5.0 Service Pack: 4. Update Guide

BlackBerry Enterprise Server Express. Version: 5.0 Service Pack: 4. Update Guide BlackBerry Enterprise Server Express Version: 5.0 Service Pack: 4 Update Guide Published: 2012-08-31 SWD-20120831100948745 Contents 1 About this guide... 4 2 Overview: BlackBerry Enterprise Server Express...

More information

SN 132 SNAPstick QUICK START GUIDE

SN 132 SNAPstick QUICK START GUIDE QUICK START GUIDE SN 132 SNAPstick 2008-2015 Synapse, All Rights Reserved. All Synapse products are patent pending. Synapse, the Synapse logo, SNAP, and Portal are all registered trademarks of Synapse

More information

Adobe Connect Add-in for Microsoft Outlook Third Party Software Notices and/or Additional Terms and Conditions

Adobe Connect Add-in for Microsoft Outlook Third Party Software Notices and/or Additional Terms and Conditions Adobe Connect Add-in for Microsoft Outlook Third Party Software Notices and/or Additional Terms and Conditions Massachusetts Institute of Technology (MIT) Copyright 1991, 1998 by the Massachusetts Institute

More information

Open Source Used In Cisco WebEx Media Server 1.5

Open Source Used In Cisco WebEx Media Server 1.5 Open Source Used In Cisco WebEx Media Server 1.5 Cisco Systems, Inc. www.cisco.com Cisco has more than 200 offices worldwide. Addresses, phone numbers, and fax numbers are listed on the Cisco website at

More information

HIGHSEC eid App Administration User Manual

HIGHSEC eid App Administration User Manual HIGHSEC eid App Administration User Manual Contents 1 Introduction... 3 2 Application overview... 3 3 Managing HIGHSEC eid App... 3 3.1 Deleting card pairings... 4 4 Inspecting smart card contents... 5

More information

R&S TSMW Radio Network Analyzer Open Source Acknowledgment

R&S TSMW Radio Network Analyzer Open Source Acknowledgment Radio Network Analyzer Open Source Acknowledgment (;Úà@2) 1176.8216.02 03 Test & Measurement Open Source Acknowledgment Contents Contents 1 Introduction... 3 1.1 Disclaimer... 3 1.2 How to obtain the source

More information

Log Insight Manager. Deployment Guide

Log Insight Manager. Deployment Guide Log Insight Manager Deployment Guide VERSION: 3.0 UPDATED: OCTOBER 2015 Copyright Notices Copyright 2002-2015 KEMP Technologies, Inc.. All rights reserved.. KEMP Technologies and the KEMP Technologies

More information

Third Party Terms. Third Party License(s) of Terracotta Ehcache Opensource (TOE) Version 3.0 2016-04-13 21:00

Third Party Terms. Third Party License(s) of Terracotta Ehcache Opensource (TOE) Version 3.0 2016-04-13 21:00 Third Party Terms 2016-04-13 21:00 Third Party License(s) of Terracotta Ehcache Opensource (TOE) Version 3.0 VERSIONS OF THE THIRD PARTY COMPONENTS MAY BE UTILIZED, EMBEDDED, BUNDLED OR OTHERWISE INCLUDED

More information

Security whitepaper. CloudAnywhere. http://www.cloudiway.com

Security whitepaper. CloudAnywhere. http://www.cloudiway.com Security whitepaper CloudAnywhere http://www.cloudiway.com @Copyright 2011 CLOUDIWAY. All right reserved. Use of any CLOUDIWAY solution is governed by the license agreement included in your original contract.

More information

Compatibility Matrix BES12. September 16, 2015

Compatibility Matrix BES12. September 16, 2015 Compatibility Matrix BES12 September 16, 2015 Published: 2015-09-16 SWD-20150916153710116 Contents Introduction... 4 Legend...5 BES12 server... 6 Operating system...6 Database server...6 Browser... 8 Mobile

More information

EGENIX.COM COMMERCIAL LICENSE AGREEMENT

EGENIX.COM COMMERCIAL LICENSE AGREEMENT EGENIX.COM COMMERCIAL LICENSE AGREEMENT Version 1.1.0 1. Introduction This License Agreement is between egenix.com Software, Skills and Services GmbH ( egenix.com ), having an office at Pastor-Loeh-Str.

More information

1. Install the SOAP Toolkit 3.0 on your computer. This is freely available from msdn.microsoft.com.

1. Install the SOAP Toolkit 3.0 on your computer. This is freely available from msdn.microsoft.com. MyDelivery Source Code Version 0.9.31 June 2010 The MyDelivery source code was created by the United States National Library of Medicine except for portions that were privately created and permission granted

More information

PAW Web Filter Version 0.30 (release) This Software is Open Source. http://paw project.sourceforge.net

PAW Web Filter Version 0.30 (release) This Software is Open Source. http://paw project.sourceforge.net PAW Web Filter Version 0.30 (release) This Software is Open Source http://paw project.sourceforge.net Contents PAW Manual Introduction What is PAW Browser settings PAW Server Starting the server PAW GUI

More information

Advanced Planning PDP Client for Microsoft Excel 1.3 Install PeopleBook

Advanced Planning PDP Client for Microsoft Excel 1.3 Install PeopleBook Advanced Planning PDP Client for Microsoft Excel 1.3 Install PeopleBook January 2004 PeopleSoft Advanced Planning PDP Client for Microsoft Excel 1.3 Installation PeopleBook SKU APSPDPCLP0312 Contributors:

More information

BlackBerry Mobile Voice System - BlackBerry MVS Client

BlackBerry Mobile Voice System - BlackBerry MVS Client BlackBerry Mobile Voice System - BlackBerry MVS Client BlackBerry Device Software 5.0 User Guide Version: 5.2 SWD-1249531-0316085151-001 Contents Basics... 2 About the BlackBerry MVS Client... 2... 3 basics...

More information

Extension Module (XMOD): SiteMap Generator

Extension Module (XMOD): SiteMap Generator Extension Module (XMOD): SiteMap Generator 1999-Present Kryptronic, Inc. All rights reserved worldwide. Kryptronic, the Kryptronic logo and all Kryptronic software names and logos are trademarks of Kryptronic,

More information

AMERICAN INSTITUTES FOR RESEARCH OPEN SOURCE SOFTWARE LICENSE

AMERICAN INSTITUTES FOR RESEARCH OPEN SOURCE SOFTWARE LICENSE AMERICAN INSTITUTES FOR RESEARCH OPEN SOURCE SOFTWARE LICENSE 1. DEFINITIONS. 1.1. "Contributor" means each individual or entity that creates or contributes to the creation of Modifications. 1.2. "Contributor

More information

How To Use The Programs Of Ancient.Org

How To Use The Programs Of Ancient.Org Oracle s PeopleSoft Enterprise Campus Solutions 9.0 Feature Pack 2: Electronic Payment Integration November 2009 Campus Solutions 9.0 Feature Pack 2: Electronic Payment Integration Copyright 2009, Oracle.

More information

CA DLP. Release Notes for Advanced Encryption. r12.0

CA DLP. Release Notes for Advanced Encryption. r12.0 CA DLP Release Notes for Advanced Encryption r12.0 This documentation and any related computer software help programs (hereinafter referred to as the "Documentation") are for your informational purposes

More information

Open Source Licenses

Open Source Licenses Open Source Licenses The following are open source licenses associated with Hitachi Data Systems Products. The materials below are provided AS IS, without warranty of any kind, including, but not limited

More information

CA Workload Automation Agent for Web Services

CA Workload Automation Agent for Web Services CA Workload Automation Agent for Web Services Release Notes r11.3.3 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

RECITALS. Original Contributor has developed Specifications and Source Code implementations of certain Technology; and

RECITALS. Original Contributor has developed Specifications and Source Code implementations of certain Technology; and ORACLE COMMUNITY SOURCE LICENSE Version 2.8 (formerly the Sun Community Source License; Rev. Date February 18, 2011) Java Platform, Micro Edition Connected Limited Device Configuration 1.1 RECITALS Original

More information

TATUKGIS SOFWARE LICENSE AGREEMENT

TATUKGIS SOFWARE LICENSE AGREEMENT TATUKGIS SOFWARE LICENSE AGREEMENT READ THE FOLLOWING TERMS AND CONDITIONS CAREFULLY BEFORE INSTALLING THE TATUKGIS, SOFTWARE PROVIDED WITH THIS AGREEMENT (THE SOFTWARE ). USE OF THE SOFTWARE CONSTITUTES

More information

Installation Guide Supplement

Installation Guide Supplement Installation Guide Supplement for use with Microsoft ISA Server and Forefront TMG Websense Web Security Websense Web Filter v7.5 1996 2010, Websense Inc. All rights reserved. 10240 Sorrento Valley Rd.,

More information

NetSuite End User License Agreement for Mobile Applications

NetSuite End User License Agreement for Mobile Applications Last Revision: October 30, 2015 NetSuite End User License Agreement for Mobile Applications This NetSuite End User License Agreement for Mobile Applications, including without limitation, all attachments

More information

These TERMS AND CONDICTIONS (this Agreement ) are agreed to between InfluencersAtWork,

These TERMS AND CONDICTIONS (this Agreement ) are agreed to between InfluencersAtWork, TERMS AND CONDITIONS INFLUENCERS AT WORK These TERMS AND CONDICTIONS (this Agreement ) are agreed to between InfluencersAtWork, Ltd. ( InfluencerAtWork ) and you, or if you represent a company or other

More information

Flask-SSO Documentation

Flask-SSO Documentation Flask-SSO Documentation Release 0.3.0 CERN July 30, 2015 Contents 1 Contents 3 1.1 Installation................................................ 3 1.2 Quickstart................................................

More information

AccuTerm 7 Cloud Edition Connection Designer Help. Copyright 2010-2014 Zumasys, Inc.

AccuTerm 7 Cloud Edition Connection Designer Help. Copyright 2010-2014 Zumasys, Inc. AccuTerm 7 Cloud Edition Connection Designer Help Contents 3 Table of Contents Foreword 0 Part I AccuTerm 7 Cloud Edition 4 1 Description... 4 2 Usage... Guidelines 5 3 Connection... Designer 6 4 Internet...

More information

ORACLE CRM ON DEMAND DEVELOPMENT ADDENDUM TO THE ORACLE PARTNERNETWORK AGREEMENT

ORACLE CRM ON DEMAND DEVELOPMENT ADDENDUM TO THE ORACLE PARTNERNETWORK AGREEMENT ORACLE CRM ON DEMAND DEVELOPMENT ADDENDUM TO THE ORACLE PARTNERNETWORK AGREEMENT This Oracle CRM On Demand Development Addendum (the " CRM On Demand Addendum ") is between you ( Developer ) and the Oracle

More information

Third Party Software Used In PLEK500 (Utility for Win) v1.x.xx.xxx

Third Party Software Used In PLEK500 (Utility for Win) v1.x.xx.xxx Third Party Software Used In PLEK500 (Utility for Win) v1.x.xx.xxx March 2013 This document contains the licenses and notices for open source software used in this product. With respect to the free/open

More information

Release Notes for CounterPath X-Lite 4 for Windows Version 4.8

Release Notes for CounterPath X-Lite 4 for Windows Version 4.8 CounterPath Corporation Suite 300, Bentall One Centre 505 Burrard Street Box 95 Vancouver BC V7X 1M3 Canada Telephone: +1.604.320.3344 www.counterpath.com Release Notes for CounterPath X-Lite 4 for Windows

More information

Extension Module (XMOD): Batch Order Management (BOM)

Extension Module (XMOD): Batch Order Management (BOM) Extension Module (XMOD): Batch Order Management (BOM) 1999-Present Kryptronic, Inc. All rights reserved worldwide. Kryptronic, the Kryptronic logo and all Kryptronic software names and logos are trademarks

More information

BIND Tuning EULA. Kentico Themes License

BIND Tuning EULA. Kentico Themes License BIND Tuning EULA Kentico Themes License This documentation was developed by, and is property of Bind Lda, Portugal. 2012 Bind Lda support@bind.pt 252 099 068 for future updates follow us twitter.com/bindskins

More information

Adobe LeanPrint Dashboard Software Notices and/or Additional Terms and Conditions

Adobe LeanPrint Dashboard Software Notices and/or Additional Terms and Conditions Adobe LeanPrint Dashboard Software Notices and/or Additional Terms and Conditions This page and/or pages linked from this page contain Third Party Software Notices and/or additional Terms and Conditions

More information

BlackBerry Web Desktop Manager. Version: 5.0 Service Pack: 4. User Guide

BlackBerry Web Desktop Manager. Version: 5.0 Service Pack: 4. User Guide BlackBerry Web Desktop Manager Version: 5.0 Service Pack: 4 User Guide Published: 2012-10-03 SWD-20121003174218242 Contents 1 Basics... 5 Log in to the BlackBerry Web Desktop Manager... 5 Connect your

More information

Release Notes. BlackBerry Web Services. Version 12.1

Release Notes. BlackBerry Web Services. Version 12.1 Release Notes BlackBerry Web Services Version 12.1 Published: 2015-02-25 SWD-20150225105429677 Contents New features in BES12... 4 12.1... 4 Unsupported as of 12.1... 6 Fixed issues...9 Known issues...

More information

SAMPLE SOFTWARE LICENSE AGREEMENT (Review Copy)

SAMPLE SOFTWARE LICENSE AGREEMENT (Review Copy) SAMPLE SOFTWARE LICENSE AGREEMENT (Review Copy) THIS AGREEMENT is entered into as of XXXX ("Effective Date") by and between NIELSEN ENGINEERING & RESEARCH, INC. (NEAR), with offices at 605 Ellis Street,

More information

Website Hosting Agreement

Website Hosting Agreement Website Hosting Agreement 6 oak grove avenue This Hosting Contract governs your purchase and use, in any manner, of all Web site hosting services, including the Shared Hosting Services, (collectively,

More information

BlackBerry Mobile Conferencing

BlackBerry Mobile Conferencing BlackBerry Mobile Conferencing BlackBerry Device Software 5.0 User Guide Version: 3.0 SWD-1908281-0130021643-001 Contents Conference call basics... 2 About BlackBerry Mobile Conferencing... 2 Join a conference

More information