KC Data Integration Web Service Developer Guide

Size: px
Start display at page:

Download "KC Data Integration Web Service Developer Guide"

Transcription

1 KC Data Integration Web Service Developer Guide

2 Kewill Copyright Notice Copyright 2016 by Kewill Inc. All rights reserved. This document is the property of Kewill and the information contained herein is confidential. This document, either in whole or in part, must not be reproduced or disclosed to others or used for purposes other than that for which it has been supplied without Kewill s prior written permission, or, if any part hereof is furnished by virtue of a contract with a third party, as expressly authorized under that contract. This edition applies to the current version of the Kewill product and to all subsequent releases and modifications until otherwise indicated. Kewill reserves the right to make improvements and/or changes in the product(s) and/or programs(s) described in these publications at any time. No part of this document may be reproduced or transmitted in any form or by means without the prior written permission of Kewill Limited or one its subsidiaries. If there are any problems encountered in the documentation, please report them to Kewill in writing. Kewill does not warrant that this document is error-free. Third-party Copyright and Trademark Notice Kewill Customs U.S. is legally licensed to operate in conjunction with the following third-party hardware and software: Adobe Acrobat Copyright 2016 Adobe Systems Incorporated. All rights reserved. Apache Tomcat Copyright , The Apache Software Foundation, Licensed under the Apache License, Version 2.0. Citrix Citrix product names referenced herein are trademarks of Citrix Systems, Inc., and/or one of its subsidiaries, and may be registered in the United States Patent and Trademark Office and in other countries. Hewlett Packard (HP) -- Copyright 2010 Hewlett-Packard Development Company, L.P. IBM MQ Server Copyright International Business Machines Corporation All rights reserved. IBM Tivoli Workload Scheduler (Load Leveler) Copyright International Business Machines Corporation All rights reserved. Intel Copyright Intel Corporation. All rights reserved. Intel Corporation, 2200 Mission College Blvd., Santa Clara, CA , USA. Java Software Development Kit (JDK)/Java Runtime Environment (JRE) Copyright Sun Microsystems, Inc., 901 San Antonio Road, Palo Alto, California, 94303, U.S.A. All Rights Reserved. Linux Linux Foundation in accordance with Linux Foundation trademark policy. Mozilla Firefox Mozilla Firefox is a registered trademark of the Mozilla Foundation. Oracle Trademark and Copyright 2004, 2016, Oracle and/or its affiliates. All rights reserved. PuTTY (SSH/TelnEt Client) PuTTY is copyright , Simon Tatham et al. TSS Server Copyright 2011 Trusted Security Solutions, Inc Orchard Lake Dr., Charlotte, NC All rights reserved.

3 1. Overview This guide describes how to integrate with KC Data Integration Web Services (shortened as KC Service in this guide). It is written for the application developer who uses web services to design and deploy applications enabled by Kewill. It describes how to get started with application development and how to use the Application Programming Interface (API). Customers can use KC Service to transfer their master data and other data to Kewill Customs. The service can be consumed directly or by using an FTP process. 2. Authentication Whether a customer consumes KC Service directly or by using an FTP process, the user account information should be provided for authentication. The user account is a Kewill Customs user with the ALLOW_KC_DATA_INEGRATION property set to Y. To configure a user (or user group), open Security Administration in Kewill Customs (menu path: Tools > Security Admin). Add the ALLOW_KC_DATA_INEGRATION property on the Security tab and set it to Y. See image below. After configuring a user, log in to Kewill Customs with that user profile to activate that user. pg. 1

4 3. Predefinitions 3.1 Category The category defines the objects that can be transferred. The table below lists all of the available categories. Category Description Allowed sub actions Allowed Partial Update Company Company/Broker Control file All Yes Mid Manufacturer ID All Yes Message Message All Yes FdaProduct FDA Product Codes All Yes Carrier Carrier Codes All Yes Charge Charge All Yes Parts Parts tree All Yes Customer Customer tree All Yes Shipment Shipment Read NA Vendor Vendor tree All Yes Profile Charge Profiles All Yes DistrictPort District Port All Yes HarmonizedTariff Tariff All Yes EdiShipment EDI Shipment Create, Update, CreateUpdate Full Update 3.2 Action The predefined action for KC service is KC. 3.3 Sub Action The predefined Sub Actions are: Read Allow customers to get objects from Kewill Customs. Currently, the service provides the Read sub action only for the primary key. Reading by other fields will be extended in a future release. Create Add one or multiple records in Kewill Customs. Update Update one or multiple records in Kewill Customs. Full Update requires providing all of the fields. We recommend using a Read sub action first, and then changing the fields that you want to update. Partial update allows you to update specific fields by providing field values and all of the primary keys in a hierarchy. pg. 2

5 Notes: o o 0 and empty string are specific. These two values in Update will be skipped. The existence check is performed against the root level entity only. If the primary keys in sub trees do not exist, the sub trees will be added. CreateUpdate This is a combination of Create and Update. Note: The only sub action for the Shipment category is Read. The Read sub action is not available for the EDI Shipment category. 4. Consume Web Service Directly 4.1 Import WSDL file To develop a web service client, we can use the wsimport tool to import the WSDL file and generate files to access KC Service. Suppose the WSDL file location is The source code will be generated under folder: c:\myclient\src\ The command will be: C:\>wsimport s c:\myclient\src\ -keep The generated package is com.kewill.icustoms.service.core As an alternative, if the WSDL file and xsd file are in place, you can use the following command to import: C:\wsdl>wsimport kcservice.wsdl s c:\myclient\src\ -keep Note: The wsimport version must be or newer. 4.2 Consume Web Service Create KC Service client. The following is an example of web service client. When WSDL is imported, the client is generated as KcServiceService.java. You can use this directly or create another by copy and paste. pg. 3

6 package com.kewill.icustoms.adaptertest.client; import java.net.malformedurlexception; import java.net.url; import java.util.logging.logger; import javax.xml.namespace.qname; import javax.xml.ws.service; import javax.xml.ws.webendpoint; import javax.xml.ws.webserviceclient; import javax.xml.ws.webservicefeature; import = "KcServiceService", targetnamespace = " wsdllocation = " public class KcClient extends Service { private final static URL KCSERVICESERVICE_WSDL_LOCATION; private final static Logger logger = Logger.getLogger(com.kewill.icustoms.service.core.KcServiceService.class.getNa me()); static { URL url = null; try { URL baseurl; baseurl = com.kewill.icustoms.service.core.kcserviceservice.class.getresource("."); url = new URL(baseUrl, " hostname:8080/kcadapter/service/kcservice?wsdl"); catch (MalformedURLException e) { logger.warning("failed to create URL for the wsdl Location: ' hostname:8080/kcadapter/service/kcservice?wsdl', retrying as a local file"); logger.warning(e.getmessage()); KCSERVICESERVICE_WSDL_LOCATION = url; public KcClient(URL wsdllocation, QName servicename) { super(wsdllocation, servicename); public KcClient() { super(kcserviceservice_wsdl_location, new QName(" " KcServiceService")); /** pg. 4

7 * * returns KcService = "KcServicePort") public KcService getkcserviceport() { return super.getport(new QName(" "KcServicePort"), KcService.class); /** * features * A list of {@link javax.xml.ws.webservicefeature to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values. * returns KcService = "KcServicePort") public KcService getkcserviceport(webservicefeature... features) { return super.getport(new QName(" "KcServicePort"), KcService.class, features); Consuming Example The following example shows the process of adding an FDA Product into Kewill Customs. package com.kewill.icustoms.adaptertest.client; import java.text.simpledateformat; import java.util.date; import com.kewill.icustoms.service.core.fdaproductentity; import com.kewill.icustoms.service.core.kcdata; import com.kewill.icustoms.service.core.kcservice; import com.kewill.icustoms.service.core.request; import com.kewill.icustoms.service.core.requests; import com.kewill.icustoms.service.core.responses; public class KcClientMain { public static void main(string[] args) { try { Requests requests = createrequests(); KcClient kcclient = new KcClient(); KcService kcservice = kcclient.getkcserviceport(); pg. 5

8 Responses responses = kcservice.process(requests); if (responses.getresponse().size() > 0) { if (responses.getresponse().get(0).issuccess()) { // do success else { //do fail catch (Exception e) { //do exception handling private static Requests createrequests() { Requests requests = new Requests(); //Authentication requests.setuserid("userid"); requests.setpassword("password"); //request Request request = new Request(); //action, category and subaction request.setaction("kc"); request.setcategory("fdaproduct"); request.setsubaction("create"); //kcdata KcData kcdata = new KcData(); //FdaProduct KcData.FdaProducts fdaproducts = new KcData.FdaProducts(); FdaProductEntity fdaproduct = newfdaproduct(); fdaproducts.getfdaproduct().add(fdaproduct); kcdata.setfdaproducts(fdaproducts); request.setkcdata(kcdata); requests.getrequest().add(request); return requests; private static FdaProductEntity newfdaproduct() { pg. 6

9 FdaProductEntity fdaproduct = new FdaProductEntity(); Date dnow = new Date(); SimpleDateFormat fdate = new SimpleDateFormat("yyyyMMdd"); SimpleDateFormat ftime = new SimpleDateFormat("hhmm"); fdaproduct.setproductcode("32bve88"); fdaproduct.setproductdesc("product Description"); fdaproduct.setmodifiedby("obama"); fdaproduct.setdateupdated(integer.valueof(fdate.format(dnow))); fdaproduct.settimeupdated(integer.valueof(ftime.format(dnow))); fdaproduct.setdatelastaccessed(integer.valueof(fdate.format(dnow))); fdaproduct.setfdapriornoticereq(""); return fdaproduct; Note: Although we can put all of the categories into one xml file by adding different requests, one xml file per category is preferred. pg. 7

10 5. FTP Process 5.1 Process Config FTP Server Config KC to enable kcserviceintegrationhandler Create Request XML file Change the extension from xml to txt Drop the txt file to FTP inbound folder When drop is complete, change the extension from txt to xml The schedule will pick up the xml file and process When complete, a response xml file will be created in outbound folder pg. 8

11 5.2 FTP Server Folders Folder Name /inbound/ /outbound/ /backup/ /process/ Comment The folder where the xml file should be placed. The folder where response xml files will be placed. The folder where backups of all of the processed files are saved. The working folder. 5.3 Configuration in Kewill Customs Enable KcServiceIntegrationHandler. Open the Schedule Maintenance screen in KC (menu path: SupportSS-SGSchedule). Find the KcServiceIntegrationHandler Schedule ID then select the Enable check box for it. See image below Set Up FTP parameter On the Schedule Maintenance screen, click the Parameters button to open the Schedule Parameter Maintenance screen. Edit the parameters to match the FTP folder setup. Please note: Kewill recommends using PFTP (Passive FTP protocol) if you are experiencing issues communicating with the FTP server. Type pftp instead of ftp for the upload_location parameter value as shown highlighted below. pg. 9

12 Also, you must include the home directory at the end of the upload_location parameter value as shown below (in the example below, folder/ is the home directory of the FTP login account) Confirm that the KcServiceIntegrationHandler is up and running Open the Admin Utility in KC (Tools menu) then select the Scheduler tab. Make sure KcServiceIntegrationHandler is running. If not, click the Start button to start it. pg. 10

13 5.4 Request XML file The schema of the request xml is defined in request.xsd. The following is an example of a request xml. <?xml version="1.0" encoding="utf-8" standalone="yes"?> <requests> <password>?</password> <!--1 or more repetitions:--> <request> <action>?</action> <category>?</category> <kcdata> <fdaproducts> <!--Zero or more repetitions:--> <fdaproduct> <!--Optional:--> <datelastaccessed>?</datelastaccessed> <!--Optional:--> <datelastaccesseddt>?</datelastaccesseddt> <!--Optional:--> <dateupdated>?</dateupdated> <!--Optional:--> <dateupdateddt>?</dateupdateddt> <!--Optional:--> <fdapriornoticereq>?</fdapriornoticereq> <!--Optional:--> <modifiedby>?</modifiedby> <!--Optional:--> <productdesc>?</productdesc> <!--Optional:--> <timeupdated>?</timeupdated> <!--Optional:--> <productcode>?</productcode> </fdaproduct> </fdaproducts> </kcdata> <subaction>?</subaction> </request> <userid>?</userid> </requests> pg. 11

14 Please refer to the previous sections for Action, Sub Action, and Category definitions. The xsd file for each category is available from Kewill. Notes: Except for the request.xsd and response.xsd, all of the other xsd files define only complex types. Request.xsd has single-element requests and response.xsd has single-element responses. Although we can put all of the categories into one xml file by adding different requests, one xml file per category is preferred. 5.5 Example Read FDA Product (the primary key is product code) <?xml version="1.0" encoding="utf-8" standalone="yes"?> <requests> <password>password</password> <!--1 or more repetitions:--> <request> <action>kc</action> <category>fdaproduct</category> <kcdata> <fdaproducts> <!--Zero or more repetitions:--> <fdaproduct> <productcode>02aab03</productcode> </fdaproduct> </fdaproducts> </kcdata> <subaction>read</subaction> </request> <userid>userid</userid> </requests> pg. 12

15 5.5.2 Create a FDA Product <?xml version="1.0" encoding="utf-8" standalone="yes"?> <requests> <password>password</password> <!--1 or more repetitions:--> <request> <action>kc</action> <category>fdaproduct</category> <kcdata> <fdaproducts> <fdaproduct> <datelastaccessed> </datelastaccessed> <dateupdated> </dateupdated> <fdapriornoticereq/> <modifiedby>customs</modifiedby> <productdesc>test product desc</productdesc> <timeupdated>1623</timeupdated> <productcode>02aabaa</productcode> </fdaproduct> </fdaproducts> </kcdata> <subaction>create</subaction> </request> <userid> USERID</userID> </requests> Update specific fields The following example performs two updates: 1) Update modifiedby of the Part to tom. 2) Update commercialdesc of the CatTariffClassAux in seqno 1 to test description. <?xml version="1.0" encoding="utf-8" standalone="yes"?> <requests> <password>password</password> <request> <action>kc</action> <category>parts</category> pg. 13

16 <kcdata> <parts> <part> <modifiedby>tom</modifiedby> <id> <custno>erica</custno> <dateeffective> </dateeffective> <partno>08sign8888</partno> </id> <CatTariffClassAuxList> <CatTariffClassAux> <commercialdesc>test description</commercialdesc> <custno>erica</custno> <dateeffective> t00:00:00-04:00</dateeffective> <partno>08sign8888</partno> <seqno>1</seqno> </CatTariffClassAux> </CatTariffClassAuxList> </part> </parts> </kcdata> <subaction>update</subaction> </request> <userid>userid</userid> </requests> Notes: In the database definition, the field dateeffective in CatTariffClassAux is a timestamp type, but dateeffective in Part (Cat_Ci_Line) is an integer. Different date formats are used in the example. Please check the xsd and make sure you are using the correct data type. 6. Understanding the Response 6.1 Understanding the Response Structure If the KC service is consumed directly, a response object will be returned. If the service is consumed by using an FTP process, a response.xml file will be generated in the outbound folder. Because the response.xml is the marshalled results of the response object, we will use the xml file to explain the response. The following is a typical response xml of a successful update. pg. 14

17 <responses> <response> <kcdata/> <Messages> <Message> <Code>E00008</Code> <Content>Successfully updated Customer.</Content> <Type>Informational</Type> </Message> </Messages> <Success>true</Success> </response> </responses> It has three main elements: Success: This is the overall status of the process and can be true or false. kcdata: If the overall status of the process is true, the kcdata is empty (no children). Otherwise, it includes all of the failed records and has the same structure as the request. Messages: If the overall status of the process is true, the message is informational. Otherwise, each message will give the reason why the corresponding record failed. In the following example, there are seven customer nodes and seven error messages. The first customer node corresponds to the first error message and so on.. pg. 15

18 6.2 Understanding the Message KC Service does not provide field-level validation. All of the error messages are retrieved from the database. These messages might be confusing. Example 1: The message is about the NOTE_CUST field in the CUST_NOTES node. It is saying that the actual data provided in the xml is 62 characters but that the maximum for the field is 60 characters. This is the first message. Opening the first Customer node, we can see that one of the data items supplied is indeed too long for the field. So shortening your data value is the solution for these errors. pg. 16

19 Example 2: In example 2, the error is stating that it cannot persist the CustAddressesPK which is a composite PK of custno and addressnoalpha as seen above. It indicates more than one addresses have been specified using the same combination of custno and addressnoalpha thus failing the PK unique constraint. Example 3: Example 3 shows the value is larger than the specified precision allowed for this column, but it does not tell us which column. Usually, this is a number field and you need to spend some time in finding it. 6.3 Including File Number in Response To return the file number in an EDI shipment Web Service response file, add the new element, <asyncedishipment> to the EdiShipment request and set its value to Y as shown below: <?xml version="1.0" encoding="utf-8" standalone="yes"?> <requests> <password>password</password> <request> <action>kc</action> <category>edishipment</category> pg. 17

20 <asyncedishipment>y</asyncedishipment> <kcdata> The <asyncedishipment> element applies only to the EdiShipment category. The value Y will return the fileno in the response file. Otherwise, the fileno will not be returned in the response file. See these scenarios: The <asyncedishipment> element is set to N or the element does not exist. After the Web Service loads the EDI to the database successfully, an entry in Dashboard Work Management is created. The Hand Free Scheduler and Hands Free Handler will pick up the work and load the EDI to the shipment. The dashboard record holds the loading status and file number. If the loading fails (for example, because of invalid custno or fatal validations), please check the status and follow the existing process for removing fatal validations. The <asyncedishipment> element is set to Y. After the Web Service loads the EDI to the database successfully, it calls the Hands Free process and tries to load the EDI to the shipment. If the process is a success, the fileno is included in the response file. If the process fails, the dashboard work id is returned in the error message. Check the dashboard record to find the reason for the failure. Update EDI If the loading of the EDI to the shipment fails, you can update the EDI via Web Service at any time. If it is a success, update will not be allowed. To perform the update, you need to purge the shipment in the KC user interface, wait for the background process to clear the edi_assigned_file field in the edi_shipment_header table, and then make an update. 7. Resources Schema, sample xml, and definition from Kewill pg. 18

Java Web Services SDK

Java Web Services SDK Java Web Services SDK Version 1.5.1 September 2005 This manual and accompanying electronic media are proprietary products of Optimal Payments Inc. They are to be used only by licensed users of the product.

More information

Oracle Enterprise Manager

Oracle Enterprise Manager Oracle Enterprise Manager Connectors Integration Guide Release 12.1.0.4 E25163-05 February 2015 Oracle Enterprise Manager Connectors Integration Guide, Release 12.1.0.4 E25163-05 Copyright 2015, Oracle

More information

HP Asset Manager. Software version: 5.20. Integration with software distribution and configuration management tools

HP Asset Manager. Software version: 5.20. Integration with software distribution and configuration management tools HP Asset Manager Software version: 5.20 Integration with software distribution and configuration management tools Document Release Date: 01 October 2009 Software Release Date: October 2009 Legal Notices

More information

Instant Chime for IBM Sametime For IBM Websphere and IBM DB2 Installation Guide

Instant Chime for IBM Sametime For IBM Websphere and IBM DB2 Installation Guide Instant Chime for IBM Sametime For IBM Websphere and IBM DB2 Installation Guide Fall 2014 Page 1 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 HP Business Availability Center Integration Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty The only

More information

Application Interface Services Server for Mobile Enterprise Applications Configuration Guide Tools Release 9.2

Application Interface Services Server for Mobile Enterprise Applications Configuration Guide Tools Release 9.2 [1]JD Edwards EnterpriseOne Application Interface Services Server for Mobile Enterprise Applications Configuration Guide Tools Release 9.2 E61545-01 October 2015 Describes the configuration of the Application

More information

Instant Chime for IBM Sametime Installation Guide for Apache Tomcat and Microsoft SQL

Instant Chime for IBM Sametime Installation Guide for Apache Tomcat and Microsoft SQL Instant Chime for IBM Sametime Installation Guide for Apache Tomcat and Microsoft SQL Spring 2015 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license

More information

Deploying Oracle Business Intelligence Publisher in J2EE Application Servers Release 10.1.3.2.0

Deploying Oracle Business Intelligence Publisher in J2EE Application Servers Release 10.1.3.2.0 Oracle Business Intelligence Publisher Deploying Oracle Business Intelligence Publisher in J2EE Application Servers Release 10.1.3.2.0 Part No. B32481-01 December 2006 Introduction Oracle BI Publisher

More information

SDK Code Examples Version 2.4.2

SDK Code Examples Version 2.4.2 Version 2.4.2 This edition of SDK Code Examples refers to version 2.4.2 of. This document created or updated on February 27, 2014. Please send your comments and suggestions to: Black Duck Software, Incorporated

More information

HP Business Service Management

HP Business Service Management HP Business Service Management for the Windows and Linux operating systems Software Version: 9.10 Business Process Insight Server Administration Guide Document Release Date: August 2011 Software Release

More information

HP Asset Manager. Implementing Single Sign On for Asset Manager Web 5.x. Legal Notices... 2. Introduction... 3. Using AM 5.20... 3

HP Asset Manager. Implementing Single Sign On for Asset Manager Web 5.x. Legal Notices... 2. Introduction... 3. Using AM 5.20... 3 HP Asset Manager Implementing Single Sign On for Asset Manager Web 5.x Legal Notices... 2 Introduction... 3 Using AM 5.20... 3 Using AM 5.12... 3 Design Blueprint... 3 Technical Design... 3 Requirements,

More information

CA Spectrum and CA Service Desk

CA Spectrum and CA Service Desk CA Spectrum and CA Service Desk Integration Guide CA Spectrum 9.4 / CA Service Desk r12 and later This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter

More information

CA Nimsoft Service Desk

CA Nimsoft Service Desk CA Nimsoft Service Desk Configure Outbound Web Services 7.13.7 Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject

More information

DEPLOYMENT ROADMAP March 2015

DEPLOYMENT ROADMAP March 2015 DEPLOYMENT ROADMAP March 2015 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software Evaluation Agreement and may

More information

SSL Configuration on WebSphere Oracle FLEXCUBE Universal Banking Release 12.0.2.0.0 [September] [2013] Part No. E49740-01

SSL Configuration on WebSphere Oracle FLEXCUBE Universal Banking Release 12.0.2.0.0 [September] [2013] Part No. E49740-01 SSL Configuration on WebSphere Oracle FLEXCUBE Universal Banking Release 12.0.2.0.0 [September] [2013] Part No. E49740-01 Table of Contents 1. CONFIGURING SSL ON WEBSPHERE... 1-1 1.1 INTRODUCTION... 1-1

More information

VMware vcenter Support Assistant 5.1.1

VMware vcenter Support Assistant 5.1.1 VMware vcenter.ga September 25, 2013 GA Last updated: September 24, 2013 Check for additions and updates to these release notes. RELEASE NOTES What s in the Release Notes The release notes cover the following

More information

OpenLDAP Oracle Enterprise Gateway Integration Guide

OpenLDAP Oracle Enterprise Gateway Integration Guide An Oracle White Paper June 2011 OpenLDAP Oracle Enterprise Gateway Integration Guide 1 / 29 Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

HP Business Availability Center

HP Business Availability Center HP Business Availability Center for the Windows and Solaris operating systems Software Version: 8.05 Business Process Monitor Administration Document Release Date:September 2010 Software Release Date:

More information

Remote Control 5.1.2. Tivoli Endpoint Manager - TRC User's Guide

Remote Control 5.1.2. Tivoli Endpoint Manager - TRC User's Guide Tivoli Remote Control 5.1.2 Tivoli Endpoint Manager - TRC User's Guide Tivoli Remote Control 5.1.2 Tivoli Endpoint Manager - TRC User's Guide Note Before using this information and the product it supports,

More information

Infor Warehouse Mobility for Infor ERP LN Installation Guide

Infor Warehouse Mobility for Infor ERP LN Installation Guide Infor Warehouse Mobility for Infor ERP LN Installation Guide Important Notices The material contained in this publication (including any supplementary information) constitutes and contains confidential

More information

RealPresence Platform Director

RealPresence Platform Director RealPresence CloudAXIS Suite Administrators Guide Software 1.3.1 GETTING STARTED GUIDE Software 2.0 June 2015 3725-66012-001B RealPresence Platform Director Polycom, Inc. 1 RealPresence Platform Director

More information

About Contract Management

About Contract Management Contract Management System Architecture Data Sheet June 2015 About Contract Management Oracle Primavera Contract Management is a multi-user, multi-project Web-based application that manages all aspects

More information

JD Edwards EnterpriseOne Tools. 1 Understanding JD Edwards EnterpriseOne Business Intelligence Integration. 1.1 Oracle Business Intelligence

JD Edwards EnterpriseOne Tools. 1 Understanding JD Edwards EnterpriseOne Business Intelligence Integration. 1.1 Oracle Business Intelligence JD Edwards EnterpriseOne Tools Embedded Business Intelligence for JD Edwards EnterpriseOne Release 8.98 Update 4 E21426-02 March 2011 This document provides instructions for using Form Design Aid to create

More information

bbc Developing Service Providers Adobe Flash Media Rights Management Server November 2008 Version 1.5

bbc Developing Service Providers Adobe Flash Media Rights Management Server November 2008 Version 1.5 bbc Developing Service Providers Adobe Flash Media Rights Management Server November 2008 Version 1.5 2008 Adobe Systems Incorporated. All rights reserved. Adobe Flash Media Rights Management Server 1.5

More information

IBM Security QRadar Vulnerability Manager Version 7.2.1. User Guide

IBM Security QRadar Vulnerability Manager Version 7.2.1. User Guide IBM Security QRadar Vulnerability Manager Version 7.2.1 User Guide Note Before using this information and the product that it supports, read the information in Notices on page 61. Copyright IBM Corporation

More information

Oracle Enterprise Single Sign-on Logon Manager How-To: Configuring ESSO-LM Event Logging with Microsoft SQL Server 2005 Release 11.1.1.2.

Oracle Enterprise Single Sign-on Logon Manager How-To: Configuring ESSO-LM Event Logging with Microsoft SQL Server 2005 Release 11.1.1.2. Oracle Enterprise Single Sign-on Logon Manager How-To: Configuring ESSO-LM Event Logging with Microsoft SQL Server 2005 Release 11.1.1.2.0 20413-01 December 2010 8B Oracle Enterprise Single Sign-on Logon

More information

Oracle WebLogic Server

Oracle WebLogic Server Oracle WebLogic Server Creating WebLogic Domains Using the Configuration Wizard 10g Release 3 (10.3) November 2008 Oracle WebLogic Server Oracle Workshop for WebLogic Oracle WebLogic Portal Oracle WebLogic

More information

Customizing Asset Manager for Managed Services Providers (MSP) Software Asset Management

Customizing Asset Manager for Managed Services Providers (MSP) Software Asset Management HP Asset Manager Customizing Asset Manager for Managed Services Providers (MSP) Software Asset Management How To Manage Generic Software Counters and Multiple Companies Legal Notices... 2 Introduction...

More information

IBM WebSphere Portal Reference Guide Release 9.2

IBM WebSphere Portal Reference Guide Release 9.2 [1]JD Edwards EnterpriseOne IBM WebSphere Portal Reference Guide Release 9.2 E53620-03 March 2016 Describes how to use this guide to supplement the use of the IBM WebSphere Portal with Oracle JD Edwards

More information

Overview of Web Services API

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

More information

JAMF Software Server Installation and Configuration Guide for OS X. Version 9.0

JAMF Software Server Installation and Configuration Guide for OS X. Version 9.0 JAMF Software Server Installation and Configuration Guide for OS X Version 9.0 JAMF Software, LLC 2013 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide

More information

Oracle FLEXCUBE Direct Banking Android Tab Client Installation Guide Release 12.0.3.0.0

Oracle FLEXCUBE Direct Banking Android Tab Client Installation Guide Release 12.0.3.0.0 Oracle FLEXCUBE Direct Banking Android Tab Client Installation Guide Release 12.0.3.0.0 Part No. E52543-01 April 2014 Oracle Financial Services Software Limited Oracle Park Off Western Express Highway

More information

WebSphere MQ Oracle Enterprise Gateway Integration Guide

WebSphere MQ Oracle Enterprise Gateway Integration Guide An Oracle White Paper June 2011 WebSphere MQ Oracle Enterprise Gateway Integration Guide 1 / 30 Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

HTTP Reverse Proxy Scenarios

HTTP Reverse Proxy Scenarios Sterling Secure Proxy HTTP Reverse Proxy Scenarios Version 3.4 Sterling Secure Proxy HTTP Reverse Proxy Scenarios Version 3.4 Note Before using this information and the product it supports, read the information

More information

QUICK START. GO-Global Cloud 4.1 SETTING UP A LINUX CLOUD SERVER AND HOST INSTALL THE CLOUD SERVER ON LINUX

QUICK START. GO-Global Cloud 4.1 SETTING UP A LINUX CLOUD SERVER AND HOST INSTALL THE CLOUD SERVER ON LINUX GO-Global Cloud 4.1 QUICK START SETTING UP A LINUX CLOUD SERVER AND HOST This guide provides instructions for setting up a cloud server and configuring a host so it can be accessed from the cloud server.

More information

IBM Rational Rhapsody Gateway Add On. CaliberRM Coupling Notes

IBM Rational Rhapsody Gateway Add On. CaliberRM Coupling Notes CaliberRM Coupling Notes Rhapsody IBM Rational Rhapsody Gateway Add On CaliberRM Coupling Notes License Agreement No part of this publication may be reproduced, transmitted, stored in a retrieval system,

More information

http://support.oracle.com/

http://support.oracle.com/ Contract Management System Architecture Data Sheet October 2012 Legal Notices Copyright 1997, 2012, Oracle and/or its affiliates. All rights reserved. Oracle and Java are registered trademarks of Oracle

More information

FioranoMQ 9. High Availability Guide

FioranoMQ 9. High Availability Guide FioranoMQ 9 High Availability Guide Copyright (c) 1999-2008, Fiorano Software Technologies Pvt. Ltd., Copyright (c) 2008-2009, Fiorano Software Pty. Ltd. All rights reserved. This software is the confidential

More information

JAMF Software Server Installation and Configuration Guide for OS X. Version 9.2

JAMF Software Server Installation and Configuration Guide for OS X. Version 9.2 JAMF Software Server Installation and Configuration Guide for OS X Version 9.2 JAMF Software, LLC 2013 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide

More information

ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE 3.6 PART NO. E17087-01

ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE 3.6 PART NO. E17087-01 ORACLE USER PRODUCTIVITY KIT USAGE TRACKING ADMINISTRATION & REPORTING RELEASE 3.6 PART NO. E17087-01 FEBRUARY 2010 COPYRIGHT Copyright 1998, 2009, Oracle and/or its affiliates. All rights reserved. Part

More information

SSL Configuration on Weblogic Oracle FLEXCUBE Universal Banking Release 12.0.87.01.0 [August] [2014]

SSL Configuration on Weblogic Oracle FLEXCUBE Universal Banking Release 12.0.87.01.0 [August] [2014] SSL Configuration on Weblogic Oracle FLEXCUBE Universal Banking Release 12.0.87.01.0 [August] [2014] Table of Contents 1. CONFIGURING SSL ON ORACLE WEBLOGIC... 1-1 1.1 INTRODUCTION... 1-1 1.2 SETTING UP

More information

Oracle WebLogic Server

Oracle WebLogic Server Oracle WebLogic Server Monitoring and Managing with the Java EE Management APIs 10g Release 3 (10.3) July 2008 Oracle WebLogic Server Monitoring and Managing with the Java EE Management APIs, 10g Release

More information

vcenter Chargeback User s Guide

vcenter Chargeback User s Guide vcenter Chargeback 1.6 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions

More information

Integration with Active Directory

Integration with Active Directory VMWARE TECHNICAL NOTE VMware ACE Integration with Active Directory This document explains how to set up Active Directory to use with VMware ACE. This document contains the following topics: About Active

More information

ODEX Enterprise. Introduction to ODEX Enterprise 3 for users of ODEX Enterprise 2

ODEX Enterprise. Introduction to ODEX Enterprise 3 for users of ODEX Enterprise 2 ODEX Enterprise Introduction to ODEX Enterprise 3 for users of ODEX Enterprise 2 Copyright Data Interchange Plc Peterborough, England, 2013. All rights reserved. No part of this document may be disclosed

More information

[1]Oracle Communications Billing and Revenue Management Web Services Manager Release 7.5 E16724-11

[1]Oracle Communications Billing and Revenue Management Web Services Manager Release 7.5 E16724-11 [1]Oracle Communications Billing and Revenue Management Web Services Manager Release 7.5 E16724-11 December 2015 Oracle Communications Billing and Revenue Management Web Services Manager, Release 7.5 E16724-11

More information

EventTracker: Configuring DLA Extension for AWStats Report AWStats Reports

EventTracker: Configuring DLA Extension for AWStats Report AWStats Reports EventTracker: Configuring DLA Extension for AWStats Report AWStats Reports Publication Date: Oct 18, 2011 EventTracker 8815 Centre Park Drive Columbia MD 21045 www.eventtracker.com About This Guide Abstract

More information

Adaptive Server Enterprise

Adaptive Server Enterprise Using Backup Server with IBM Tivoli Storage Manager Adaptive Server Enterprise 15.7 DOCUMENT ID: DC01176-01-1570-01 LAST REVISED: September 2011 Copyright 2011 by Sybase, Inc. All rights reserved. This

More information

P R O V I S I O N I N G O R A C L E H Y P E R I O N F I N A N C I A L M A N A G E M E N T

P R O V I S I O N I N G O R A C L E H Y P E R I O N F I N A N C I A L M A N A G E M E N T O R A C L E H Y P E R I O N F I N A N C I A L M A N A G E M E N T, F U S I O N E D I T I O N R E L E A S E 1 1. 1. 1.x P R O V I S I O N I N G O R A C L E H Y P E R I O N F I N A N C I A L M A N A G E

More information

Universal Content Management Version 10gR3. Security Providers Component Administration Guide

Universal Content Management Version 10gR3. Security Providers Component Administration Guide Universal Content Management Version 10gR3 Security Providers Component Administration Guide Copyright 2008 Oracle. All rights reserved. The Programs (which include both the software and documentation)

More information

Web Services Development Kit

Web Services Development Kit Rhythmyx Web Services Development Kit Version 6.5.2 Printed on 11 September, 2007 Copyright and Licensing Statement All intellectual property rights in the SOFTWARE and associated user documentation, implementation

More information

Feith Dashboard iq Server Version 8.1 Install Guide

Feith Dashboard iq Server Version 8.1 Install Guide Feith Dashboard iq Server Version 8.1 Install Guide Feith Dashboard iq Server Version 8.1 Install Guide Copyright 2013 Feith Systems and Software, Inc. All Rights Reserved. No part of this publication

More information

Installing and Configuring DB2 10, WebSphere Application Server v8 & Maximo Asset Management

Installing and Configuring DB2 10, WebSphere Application Server v8 & Maximo Asset Management IBM Tivoli Software Maximo Asset Management Installing and Configuring DB2 10, WebSphere Application Server v8 & Maximo Asset Management Document version 1.0 Rick McGovern Staff Software Engineer IBM Maximo

More information

DEVELOPING CONTRACT - DRIVEN WEB SERVICES USING JDEVELOPER. The purpose of this tutorial is to develop a java web service using a top-down approach.

DEVELOPING CONTRACT - DRIVEN WEB SERVICES USING JDEVELOPER. The purpose of this tutorial is to develop a java web service using a top-down approach. DEVELOPING CONTRACT - DRIVEN WEB SERVICES USING JDEVELOPER Purpose: The purpose of this tutorial is to develop a java web service using a top-down approach. Topics: This tutorial covers the following topics:

More information

Integrating Oracle Sales Cloud, Release 9 with JD Edwards EnterpriseOne release 9.1 Implementation Guide

Integrating Oracle Sales Cloud, Release 9 with JD Edwards EnterpriseOne release 9.1 Implementation Guide December 2014 Integrating Oracle Sales Cloud, Release 9 with JD Edwards EnterpriseOne release 9.1 Implementation Guide Doc version 1.0 Copyright 2005, 2014 Oracle and/or its affiliates. All rights reserved.

More information

TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link:

TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link: TSM for Windows Installation Instructions: Download the latest TSM Client Using the following link: ftp://ftp.software.ibm.com/storage/tivoli-storagemanagement/maintenance/client/v6r2/windows/x32/v623/

More information

Using Internet or Windows Explorer to Upload Your Site

Using Internet or Windows Explorer to Upload Your Site Using Internet or Windows Explorer to Upload Your Site This article briefly describes what an FTP client is and how to use Internet Explorer or Windows Explorer to upload your Web site to your hosting

More information

Oracle WebLogic Integration

Oracle WebLogic Integration Oracle WebLogic Integration Using the WebLogic Integration Administration Console 10g Release 3 (10.3.1) January 2010 Oracle WebLogic Intergation Using the Oracle WebLogic Integration Administration Console,

More information

Enhanced Connector Applications SupportPac VP01 for IBM WebSphere Business Events 3.0.0

Enhanced Connector Applications SupportPac VP01 for IBM WebSphere Business Events 3.0.0 Enhanced Connector Applications SupportPac VP01 for IBM WebSphere Business Events 3.0.0 Third edition (May 2012). Copyright International Business Machines Corporation 2012. US Government Users Restricted

More information

Request Manager Installation and Configuration Guide

Request Manager Installation and Configuration Guide Request Manager Installation and Configuration Guide vcloud Request Manager 1.0.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

HP NonStop SFTP API Reference Manual

HP NonStop SFTP API Reference Manual . HP NonStop SFTP API Reference Manual HP Part Number: 659755-003 Published: January 2014 Edition: HP NonStop SFTP API 1.4 G06.21 and subsequent G-series RVUs H06.07 and subsequent H-series RVUs J06.03

More information

Oracle Retail Customer Engagement Cloud Service (Relate) Release Notes Release 11.4. March 2015

Oracle Retail Customer Engagement Cloud Service (Relate) Release Notes Release 11.4. March 2015 Oracle Retail Customer Engagement Cloud Service (Relate) Release Notes Release 11.4 March 2015 Oracle Retail Customer Engagement Cloud Service (Relate), Release Notes, Release 11.4 Copyright 2015, Oracle

More information

JAMF Software Server Installation and Configuration Guide for Linux. Version 9.2

JAMF Software Server Installation and Configuration Guide for Linux. Version 9.2 JAMF Software Server Installation and Configuration Guide for Linux Version 9.2 JAMF Software, LLC 2013 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide

More information

Upgrading Your Web Server from ClientBase Browser Version 2.0 or Above to Version 2.1.1

Upgrading Your Web Server from ClientBase Browser Version 2.0 or Above to Version 2.1.1 Upgrading Your Web Server from ClientBase Browser Version 2.0 or Above to Version 2.1.1 Introduction Successful ClientBase Browser usage depends on proper hardware, setup and installation. This section

More information

CA Clarity Project & Portfolio Manager

CA Clarity Project & Portfolio Manager CA Clarity Project & Portfolio Manager Using CA Clarity PPM with Open Workbench and Microsoft Project v12.1.0 This documentation and any related computer software help programs (hereinafter referred to

More information

StreamServe Persuasion SP5 StreamStudio

StreamServe Persuasion SP5 StreamStudio StreamServe Persuasion SP5 StreamStudio Administrator s Guide Rev B StreamServe Persuasion SP5 StreamStudio Administrator s Guide Rev B OPEN TEXT CORPORATION ALL RIGHTS RESERVED United States and other

More information

Rhythmyx Rhythmyx Administration Manual

Rhythmyx Rhythmyx Administration Manual Rhythmyx Rhythmyx Administration Manual Version 6.7 Printed on 5 June, 2009 Copyright and Licensing Statement All intellectual property rights in the SOFTWARE and associated user documentation, implementation

More information

Oracle Retail Item Planning Configured for COE Installation Guide Release 13.0.2. December 2008

Oracle Retail Item Planning Configured for COE Installation Guide Release 13.0.2. December 2008 Oracle Retail Item Planning Configured for COE Installation Guide Release 13.0.2 December 2008 Oracle Retail Item Planning Configured for COE Installation Guide, Release 13.0.2 Copyright 2003, 2008, Oracle.

More information

Sage HRMS 2014 Sage Employee Self Service Tech Installation Guide for Windows 2003, 2008, and 2012. October 2013

Sage HRMS 2014 Sage Employee Self Service Tech Installation Guide for Windows 2003, 2008, and 2012. October 2013 Sage HRMS 2014 Sage Employee Self Service Tech Installation Guide for Windows 2003, 2008, and 2012 October 2013 This is a publication of Sage Software, Inc. Document version: October 17, 2013 Copyright

More information

vcenter Chargeback User s Guide vcenter Chargeback 1.0 EN-000186-00

vcenter Chargeback User s Guide vcenter Chargeback 1.0 EN-000186-00 vcenter Chargeback 1.0 EN-000186-00 You can find the most up-to-date technical documentation on the VMware Web site at: http://www.vmware.com/support/ The VMware Web site also provides the latest product

More information

Siebel Application Services Interface Reference. Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013

Siebel Application Services Interface Reference. Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013 Siebel Application Services Interface Reference Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013 Copyright 2005, 2013 Oracle and/or its affiliates. All rights reserved. This software and related

More information

Disaster Recovery. Websense Web Security Web Security Gateway. v7.6

Disaster Recovery. Websense Web Security Web Security Gateway. v7.6 Disaster Recovery Websense Web Security Web Security Gateway v7.6 1996 2011, Websense, Inc. All rights reserved. 10240 Sorrento Valley Rd., San Diego, CA 92121, USA Published 2011 The products and/or methods

More information

This guide consists of the following two chapters and an appendix. Chapter 1 Installing ETERNUSmgr This chapter describes how to install ETERNUSmgr.

This guide consists of the following two chapters and an appendix. Chapter 1 Installing ETERNUSmgr This chapter describes how to install ETERNUSmgr. Preface This installation guide explains how to install the "ETERNUSmgr for Windows" storage system management software on an ETERNUS DX400 series, ETERNUS DX8000 series, ETERNUS2000, ETERNUS4000, ETERNUS8000,

More information

IBM Campaign and IBM Silverpop Engage Version 1 Release 2 August 31, 2015. Integration Guide IBM

IBM Campaign and IBM Silverpop Engage Version 1 Release 2 August 31, 2015. Integration Guide IBM IBM Campaign and IBM Silverpop Engage Version 1 Release 2 August 31, 2015 Integration Guide IBM Note Before using this information and the product it supports, read the information in Notices on page 93.

More information

EMC Documentum xcelerated Composition Platform

EMC Documentum xcelerated Composition Platform EMC Documentum xcelerated Composition Platform Version 6.5 SP2 Grants Management Sample Application Technical Reference Guide P/N 300-009-604 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103

More information

StreamServe Persuasion SP4

StreamServe Persuasion SP4 StreamServe Persuasion SP4 Installation Guide Rev B StreamServe Persuasion SP4 Installation Guide Rev B 2001-2009 STREAMSERVE, INC. ALL RIGHTS RESERVED United States patent #7,127,520 No part of this document

More information

EventTracker: Configuring DLA Extension for AWStats report AWStats Reports

EventTracker: Configuring DLA Extension for AWStats report AWStats Reports EventTracker: Configuring DLA Extension for AWStats report AWStats Reports Prism Microsystems Corporate Headquarter Date: October 18, 2011 8815 Centre Park Drive Columbia MD 21045 (+1) 410.953.6776 (+1)

More information

Available Update Methods

Available Update Methods The Spectralink 84-Series handsets support multiple methods for updating handset software. This document will detail each of those processes in order to give you the greatest flexibility when administering

More information

Copyright http://support.oracle.com/

Copyright http://support.oracle.com/ Primavera Portfolio Management 9.0 Security Guide July 2012 Copyright Oracle Primavera Primavera Portfolio Management 9.0 Security Guide Copyright 1997, 2012, Oracle and/or its affiliates. All rights reserved.

More information

JAMF Software Server Installation and Configuration Guide for Windows. Version 9.3

JAMF Software Server Installation and Configuration Guide for Windows. Version 9.3 JAMF Software Server Installation and Configuration Guide for Windows Version 9.3 JAMF Software, LLC 2014 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this

More information

FileMaker Server 11. FileMaker Server Help

FileMaker Server 11. FileMaker Server Help FileMaker Server 11 FileMaker Server Help 2010 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker, Inc. registered

More information

An Oracle White Paper May 2013. Creating Custom PDF Reports with Oracle Application Express and the APEX Listener

An Oracle White Paper May 2013. Creating Custom PDF Reports with Oracle Application Express and the APEX Listener An Oracle White Paper May 2013 Creating Custom PDF Reports with Oracle Application Express and the APEX Listener Disclaimer The following is intended to outline our general product direction. It is intended

More information

Integration Guide. SafeNet Authentication Service. Oracle Secure Desktop Using SAS RADIUS OTP Authentication

Integration Guide. SafeNet Authentication Service. Oracle Secure Desktop Using SAS RADIUS OTP Authentication SafeNet Authentication Service Integration Guide Oracle Secure Desktop Using SAS RADIUS OTP Authentication Technical Manual Template Release 1.0, PN: 000-000000-000, Rev. A, March 2013, Copyright 2013

More information

IBM Campaign Version-independent Integration with IBM Engage Version 1 Release 3 April 8, 2016. Integration Guide IBM

IBM Campaign Version-independent Integration with IBM Engage Version 1 Release 3 April 8, 2016. Integration Guide IBM IBM Campaign Version-independent Integration with IBM Engage Version 1 Release 3 April 8, 2016 Integration Guide IBM Note Before using this information and the product it supports, read the information

More information

Informatica Corporation Proactive Monitoring for PowerCenter Operations Version 3.0 Release Notes May 2014

Informatica Corporation Proactive Monitoring for PowerCenter Operations Version 3.0 Release Notes May 2014 Contents Informatica Corporation Proactive Monitoring for PowerCenter Operations Version 3.0 Release Notes May 2014 Copyright (c) 2012-2014 Informatica Corporation. All rights reserved. Installation...

More information

MadCap Software. Upgrading Guide. Pulse

MadCap Software. Upgrading Guide. Pulse MadCap Software Upgrading Guide Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is furnished

More information

XenClient Enterprise Synchronizer Installation Guide

XenClient Enterprise Synchronizer Installation Guide XenClient Enterprise Synchronizer Installation Guide Version 5.1.0 March 26, 2014 Table of Contents About this Guide...3 Hardware, Software and Browser Requirements...3 BIOS Settings...4 Adding Hyper-V

More information

Application Servers - BEA WebLogic. Installing the Application Server

Application Servers - BEA WebLogic. Installing the Application Server Proven Practice Application Servers - BEA WebLogic. Installing the Application Server Product(s): IBM Cognos 8.4, BEA WebLogic Server Area of Interest: Infrastructure DOC ID: AS01 Version 8.4.0.0 Application

More information

Cloudera Backup and Disaster Recovery

Cloudera Backup and Disaster Recovery Cloudera Backup and Disaster Recovery Important Notice (c) 2010-2013 Cloudera, Inc. All rights reserved. Cloudera, the Cloudera logo, Cloudera Impala, and any other product or service names or slogans

More information

http://docs.trendmicro.com

http://docs.trendmicro.com Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the product, please review the readme files,

More information

How To Customize An Orgsync App On Anorus Mobile Security Suite On A Microsoft Ipad Oracle 2.5 (Ios) On A Pc Orca 2.2 (Iphone) On An Android Orca2 (Ip

How To Customize An Orgsync App On Anorus Mobile Security Suite On A Microsoft Ipad Oracle 2.5 (Ios) On A Pc Orca 2.2 (Iphone) On An Android Orca2 (Ip Oracle Fusion Middleware Customization and Branding Guide for Oracle Mobile Security Suite Release 3.0 E51967-01 February 2014 Oracle Mobile Security Suite enhances employee productivity by allowing secure

More information

Secure IIS Web Server with SSL

Secure IIS Web Server with SSL Secure IIS Web Server with SSL EventTracker v7.x Publication Date: Sep 30, 2014 EventTracker 8815 Centre Park Drive Columbia MD 21045 www.eventtracker.com Abstract The purpose of this document is to help

More information

How To Set Up A Firewall Enterprise, Multi Firewall Edition And Virtual Firewall

How To Set Up A Firewall Enterprise, Multi Firewall Edition And Virtual Firewall Quick Start Guide McAfee Firewall Enterprise, Multi-Firewall Edition model S7032 This quick start guide provides high-level instructions for setting up McAfee Firewall Enterprise, Multi-Firewall Edition

More information

FileMaker Server 15. Getting Started Guide

FileMaker Server 15. Getting Started Guide FileMaker Server 15 Getting Started Guide 2007 2016 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and FileMaker Go are trademarks

More information

IBM. Implementing SMTP and POP3 Scenarios with WebSphere Business Integration Connect. Author: Ronan Dalton

IBM. Implementing SMTP and POP3 Scenarios with WebSphere Business Integration Connect. Author: Ronan Dalton IBM Implementing SMTP and POP3 Scenarios with WebSphere Business Integration Connect Author: Ronan Dalton Table of Contents Section 1. Introduction... 2 Section 2. Download, Install and Configure ArGoSoft

More information

Send to Network Folder. Embedded Digital Sending

Send to Network Folder. Embedded Digital Sending Send to Network Folder Embedded Digital Sending Embedded Digital Sending Legal Notice Copyright 2005 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without

More information

CA Performance Center

CA Performance Center CA Performance Center Single Sign-On User Guide 2.4 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is

More information

Video Management System (VMS) Network Manager User Guide

Video Management System (VMS) Network Manager User Guide Video Management System (VMS) Network Manager User Guide NOTICE 2005 RADVISION Ltd. All intellectual property rights in this publication are owned by RADVISION Ltd. and are protected by United States copyright

More information

Oracle Fusion Middleware. 1 Oracle Team Productivity Center Server System Requirements. 2 Installing the Oracle Team Productivity Center Server

Oracle Fusion Middleware. 1 Oracle Team Productivity Center Server System Requirements. 2 Installing the Oracle Team Productivity Center Server Oracle Fusion Middleware Installation Guide for Oracle Team Productivity Center Server 11g Release 2 (11.1.2.1.0) E17075-02 September 2011 This document provides information on: Section 1, "Oracle Team

More information

How to - Install EventTracker and Change Audit Agent

How to - Install EventTracker and Change Audit Agent How to - Install EventTracker and Change Audit Agent Agent Deployment User Manual Publication Date: Oct.17, 2015 EventTracker 8815 Centre Park Drive Columbia MD 21045 www.eventtracker.com Abstract EventTracker

More information