orb2 for C/C++ Administrator Guide (z/os)

Size: px
Start display at page:

Download "orb2 for C/C++ Administrator Guide (z/os)"

Transcription

1 orb2 for C/C++ Administrator Guide (z/os)

2

3 orb2 for C/C++ Administrator Guide (z/os) Subject Platform-specific instructions for installing, configuring and administering orb2. Software Supported orb2 for C/C++ Revision History Initial Document August 2005

4 2AB, Inc. disclaims the implied warranties of merchantability and fitness for a particular purpose and makes no express warranties except as may be stated in its written agreement with and for its customer. In no event is 2AB, Inc. liable to anyone for any indirect, special or consequential damages. The information and specifications in this document are subject to change without notice. Consult your 2AB, Inc. marketing representative for product or service availability. U.S. Government Restricted Rights. The Software Program(s) and Documentation furnished under this Agreement were developed at private expense and are provided with Restricted Rights. Any use, duplication, or disclosure by and for any agency of the U.S. Government shall be subject to the Restricted Rights applicable to commercial computer software under FAR Clause or DFAR Clause or any successor thereof. Copyright by 2AB, Inc. All Rights Reserved. Trademarks The 2AB logo is a registered trademark of 2AB, Inc. 2AB, explorer, ilock, ilock Security Services, jlock, orb2, orblock, weblock and Xcon are trademarks of 2AB, Inc. Microsoft, Windows, Windows NT, Windows 2000 and Windows XP are registered trademarks of the Microsoft Corporation. OMG, Object Management Group, OMG Interface Definition Language (IDL), Unified Modeling Language and UML are trademarks of the Object Management Group. CORBA and IIOP are registered trademarks of the Object Management Group. UNIX is a registered trademark in the United States and other countries, licensed exclusively through X/Open Company Limited. HP-UX is a registered trademarks of the Hewlett-Packard Company. Apache and Tomcat are trademarks of The Apache Software Foundation. AIX and Domino are trademarks of the International Business Machines Corporation in the United States or other countries or both. iplanet, J2EE, J2SE, Java, JavaScript, JavaServer Pages, JKD, Solaris, Sun and Sun Microsystems are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other countries. All other brand or product names are trademarks or registered trademarks of their respective companies or organizations.

5

6

7 Contents Contents Tables About This Document Chapter 1 Technical Support i-v z/os 1.1 Installing orb2 for C/C++ on z/os orb2 for C/C++ Components The orb2 Environment orb2 License Trader Starting the Trader Stopping the Trader Trader Operation Building an orb2 Program Design and Write the Interface in IDL Generate Sources with stubgen Write the Server Implementation Compile and Link the Server Implementation Running the Demo Programs Administrator Guide orb2 for C/C++ i

8 Contents ii orb2 for C/C++ Administrator Guide

9 Tables Table 1.1 orb2 Components and Locations on z/os Administrator Guide orb2 for C/C++ iii

10 Tables iv orb2 for C/C++ Administrator Guide

11 About This Document This document describes the installation, administration and operation of orb2 for C/C++ Release 3.7. It should be read in conjunction with the existing orb2 for C/C++ documentation, which assumes you are running on Unix or Windows. This guide specifically addresses operation on z/os (native). All other concepts remain the same and are documented in the other orb2 for C/C++ documents. Technical Support Your feedback is important to us. Please provide input to the 2AB Technical Support Staff. You can communicate comments to and request help from the Technical Support Staff via the following methods: Telephone U.S. or Canada: (Toll Free) All Other Countries: Administrator Guide orb2 for C/C++ v

12 About This Document Technical Support vi orb2 for C/C++ Administrator Guide

13 Chapter 1 z/os This chapter explains how to install orb2 on z/os (native), where to locate orb2 components and how to build a C/C++ program utilizing orb2 technology. 1.1 Installing orb2 for C/C++ on z/os Your installation media (usually a CD) will contain three files: orb2ccppadminguide.pdf (this file) INSTALL.ZOS - a binary file containing the orb2 product in an archive form INSTALL.JCL - an ASCII file containing the JCL that will extract and install the product Installation of the orb2 product involves the following steps: 1. On z/os, you must pre-allocate the dataset ORB2C.INSTALL with the following attributes: 8,500 BLOCKS, RECFM=FB, LRECL=80, BLKSIZE=0. 2. On the machine that you have the CD-ROM mounted on, FTP the files to the z/os machine. The INSTALL.ZOS file on the CD is binary and must be copied to ORB2C.INSTALL. The INSTALL.JCL file in the CD is text and can be copied to any convenient location. 3. Once the package has been completely received, submit the JCL in dataset INSTALL.JCL (or from wherever you saved it). This will extract the orb2c.package dataset and create a series of datasets with the ORB2.* high-level qualifier. 1.2 orb2 for C/C++ Components By default, orb2 for C/C++ is installed under the high-level qualifier of ORB2. The components of orb2 are located as shown in the following table: Table 1.1 orb2 Components and Locations on z/os Component Location JCL Procedures Configuration Data Log files C Demonstration programs C++ Demonstration programs ORB2.JCL ORB2.PROCLIB ORB2.CONFIG ORB2.TRLOGx ORB2.DEMOS.C ORB2.DEMOS.CPP Administrator Guide orb2 for C/C++ 1-1

14 z/os 1.3 The orb2 Environment 1.3 The orb2 Environment All orb2 clients and services will obtain configuration information from a properties file accessible from DD:ORB2CFG, which by default points to "ORB2.CONFIG(PROPS)". As delivered, this PDS member is empty. This means that the orb2 program will start with certain defaults. The orb2 program: searches for Trader on the current host (not localhost!) searches for Trader on port To specify a different properties file, simply change where the ORB2CFG DD points to. It can point to a member in a PDS or a sequential file. Please see the orb2 for C/C++ User Guide for details about the properties that may be specified in this file. 1.4 orb2 License All orb2 programs (clients, servers and utilities) require a license file to operate. The license file is accessed via DD:ORB2LIC and by default, points to ORB2.CONFIG(LICENSE). Take care to never change this file as any change will render the license file invalid. 1.5 Trader Starting the Trader The Trader can be started by submitting the job in "ORB2.JCL(TRSTART)". The trader will run as long as the job continues to run Stopping the Trader Stop the trader by submitting the job in "ORB2.JCL(TRSTOP)". This will cause the trader to close down cleanly, and most importantly, will cause the trader to write a clean checkpoint to its logfile. Note You must close down the trader cleanly in this way to get a clean checkpoint. In particular, do not cancel the trader job in SDSF! Failure to observe this condition will likely result in corrupted logfiles Trader Operation The trader s behavior differs slightly from its unix counterpart: Periodic checkpoints are not implemented, even if requested in the properties file. When the trader starts, it takes the file pointed to by DD ORB2LOGO to initialize its internal database. As types, contexts and offers are registered and removed from the trader, they are recorded in a workfile pointed to by DD ORB2LOGW. When the trader is closed down with the TRSTOP job as shown above, the trader will write a clean checkpoint 1 to the file pointed to by DD ORB2LOGN. 1. A "clean checkpoint" is one in which only the active types, contexts and offers are written to the logfile. By contrast, the workfile at DD ORB2LOGW contains all operations, including add and delete operations on the same offer. As a result, the workfile is typically much larger than a logfile from a "clean checkpoint". 1-2 orb2 for C/C++ Administrator Guide

15 1.6 Building an orb2 Program z/os As delivered, DD ORB2LOGO points to the (0) version of a GDG, and DD ORB2LOGN points to the (+1) version of the GDG. This makes the logfile written by the last successful shutdown available to the trader at next startup. DD ORB2LOGW also points to a (+1) GDG to provide a history of trader operations in case the trader is not shut down in an orderly manner. This file may be passed to the trader on startup for recovery purposes but will have to be examined to ensure all lines are complete before doing so. 1.6 Building an orb2 Program This section describes how to build and run orb2 programs. The text refers to the supplied demonstration programs, but you will use these techniques to build your own applications. For terms that are unfamiliar to you, please refer to the orb2 for C/C++ User Guide for more details. As described in the orb2 for C/C++ User s Guide, there are several tasks involved in building an orb2 program: Design and write your interface in IDL (Interface Definition Language). Generate C or C++ sources from the IDL using stubgen. This must be accomplished on a unix or Windows machine as stubgen is not implemented on z/os. Using FTP or another equivalent process, transfer the generated sources into your source PDS on z/os. Write the implementation of your server using the generated skeletons as a guide. If required, write the implementation of your client. Compile your implementation, linking with the orb2 libraries as required, to produce your server and client executables. This section will primarily address the tasks of compiling and linking your application code with orb2 libraries to obtain your executables. As you will be generating C or C++ code from IDL on a Windows or Unix machine, the orb2 for C/C++ User Guide covers this topic in detail. Similarly, writing your implementation code is also covered in the orb2 for C Reference, or the orb2 for C++ Reference Design and Write the Interface in IDL As mentioned in the previous section, other orb2 documents will cover this topic in greater detail than this document. There is, however, an important limitation that you should be aware of. The ultimate destination of the source files generated by stubgen will be a PDS on z/os. Member names cannot be longer than eight characters. This means that the name of your IDL files cannot be longer than six characters (not including the.idl suffix). This is because stubgen will generate source files with the name m_name.c, t_name.h, etc. The final length of the generated filenames cannot exceed eight characters. The module and interface names within the IDL may remain the same, but you must rename your IDL files to be unique in the first six characters. Failure to adhere to this limitation will result in generated filenames that may not be unique, and files will be overwritten when they are transferred to the PDS on z/os. Administrator Guide orb2 for C/C++ 1-3

16 z/os Generate Sources with stubgen Generate Sources with stubgen As described earlier, this must be done on a unix or windows machine. See the orb2 for C/C++ User Guide for more details Write the Server Implementation The stubgen program will have created a server skeleton in namesrv.c which you can use as a basis for your own development efforts. We recommend that you rename this file before editing it to avoid the possibility of overwriting your changes in another run of stubgen. See the orb2 for C/C++ User Guide for more details Compile and Link the Server Implementation Creating a good load module will involve running a job that will execute as many compile steps as required, then a link step to link each of the compiled objects along with the orb2 library. JCL and PROCs have been provided to help you perform this task. There is a PROC for the compile and a PROC for the LINK step. The compile PROC will write the resulting object to an object PDS. The prelink step resolves any external references that exist in your application, generated code and the orb2 library. The link step performs the final step of creating the load module from the component objects. 1.7 Running the Demo Programs Two C and two C++ demonstration programs have been provided to help you verify that your installation is good and to provide you with a model on which you can base your own development efforts. This section will explain how to run the C Trading demo. Running each of the other demos is an almost identical procedure: 1. Start the trader if it is not already running: Run job ORB2.JCL(TRSTART). 2. If the Calculator Type does not exist, add it: Modify the ARGS= parameter and then run job ORB2.JCL(TYPECLG). 3. Compile the Calculator Demo (we have already generated the C sources from IDL for you): Run job ORB2.DEMOS.C.JCL(TRADCL) Run the Calculator Server: Run job ORB2.DEMOS.C.JCL(RUNSRV). 5. Run the Calculator Client as many times as you wish: Run job ORB2.DEMOS.C.JCL(RUNCLI). By default the client requests an "add" operation. See the orb2 for C/C++ User Guide for more information. 6. To stop the Calculator server, change the argument to -kill and run job ORB2.DEMOS.C.JCL(RUNCLI). See both the client and server jobs end. 7. To stop the Trader, run job ORB2.JCL(TRSTOP). 1. Note that you can perform individual compiles with the TRADC job, and individual link-edits with the TRADL job. 1-4 orb2 for C/C++ Administrator Guide

JBoss Transactions 4.2.2

JBoss Transactions 4.2.2 JBoss Transactions 4.2.2 Installation Guide JBTS-IG-11/2/06 JBTS-IG-11/2/06 i Legal Notices The information contained in this documentation is subject to change without notice. JBoss Inc. makes no warranty

More information

ServerStatus Installation and Operation Manual

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

More information

EView/390 Management for HP BSM. Operations Manager I

EView/390 Management for HP BSM. Operations Manager I EView/390 Management for HP BSM Operations Manager I Concepts Guide Software Version: A.07.00 June 2015 Copyright 2015 EView Technology, Inc. Legal Notices Warranty EView Technology makes no warranty of

More information

MQ Port Scan Installation and Operation Manual

MQ Port Scan Installation and Operation Manual MQ Port Scan Installation and Operation Manual Capitalware Inc. Unit 11, 1673 Richmond Street, PMB524 London, Ontario N6G2N3 Canada sales@capitalware.com http://www.capitalware.com MQPS Installation and

More information

Unified Management Portal

Unified Management Portal Unified Management Portal Unified Management Portal Release Notes 6.2.1 Document Revision History Document Version Date Changes 1.0 12/18/2012 Initial version for UMP 6.2. 1.1 2/4/2013 Updated version

More information

Nimsoft Monitor. proxy Guide. v3.1 series

Nimsoft Monitor. proxy Guide. v3.1 series Nimsoft Monitor proxy Guide v3.1 series Legal Notices Copyright 2012, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being changed, without

More information

GemStone. GemStone/S 64 Bit Windows Client Installation Guide

GemStone. GemStone/S 64 Bit Windows Client Installation Guide GemStone GemStone/S 64 Bit Windows Client Installation Guide Version 3.1.0.2 December 2012 GemStone/S 64 Bit 3.1.0.2 Windows Client Installation Guide INTELLECTUAL PROPERTY OWNERSHIP This documentation

More information

Nimsoft Monitor. sysstat Guide. v1.1 series

Nimsoft Monitor. sysstat Guide. v1.1 series Nimsoft Monitor sysstat Guide v1.1 series Legal Notices Copyright 2012, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being changed, without

More information

EView/390z Mainframe Discovery for ServiceNow Discovery for CMDB

EView/390z Mainframe Discovery for ServiceNow Discovery for CMDB EView/390z Mainframe Discovery for ServiceNow Discovery for CMDB Concepts Guide Software Version: 7.2 April 2018 Legal Notices Warranty EView Technology makes no warranty of any kind with regard to this

More information

Micro Focus. Data Express. User Guide (Host)

Micro Focus. Data Express. User Guide (Host) 1 Micro Focus Data Express Copyright 2007-2008 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct and accurate, but reserves the

More information

Unified Infrastructure Management Compatibility Matrix June 26, 2015

Unified Infrastructure Management Compatibility Matrix June 26, 2015 Unified Infrastructure Management Compatibility Matrix June 26, 2015 1 Unified Infrastructure Management Compatibility Matrix- CA Technologies Legal Notices Copyright 2013, CA. All rights reserved. Warranty

More information

Mainframe Adapter for TCP

Mainframe Adapter for TCP BEATuxedo Mainframe Adapter for TCP Release Notes Version 8.1 Document Revised: November 14, 2003 Part Number: 830-001005-009 Copyright Copyright 2003 BEA Systems, Inc. All Rights Reserved. Restricted

More information

Limitations and Workarounds Supplement

Limitations and Workarounds Supplement IBM Tivoli Monitoring for Web Infrastructure: iplanet Web Server Limitations and Workarounds Supplement Version 5.1.0 (Revised May 2003) SH19-4579-00 IBM Tivoli Monitoring for Web Infrastructure: iplanet

More information

Mainframe Adapter for SNA

Mainframe Adapter for SNA BEATuxedo Mainframe Adapter for SNA Release Notes Version 8.1 Document Revised: November 14, 2003 Part Number: 825-001004-009 Copyright Copyright 2003 BEA Systems, Inc. All Rights Reserved. Restricted

More information

Nimsoft Monitor. ntp_response Guide. v1.2 series

Nimsoft Monitor. ntp_response Guide. v1.2 series Nimsoft Monitor ntp_response Guide v1.2 series Legal Notices Copyright 2012, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being changed,

More information

CA Workload Automation Agent for Micro Focus

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

More information

Limitations and Workarounds Supplement

Limitations and Workarounds Supplement IBM Tivoli Monitoring for Databases: Microsoft SQL Server Limitations and Workarounds Supplement Version 5.1.1 SC23-4850-00 IBM Tivoli Monitoring for Databases: Microsoft SQL Server Limitations and Workarounds

More information

EView/390 Management for HP OpenView Operations Unix

EView/390 Management for HP OpenView Operations Unix EView/390 Management for HP OpenView Operations Unix Concepts Guide Software Version: A.06.00 June 2007 Copyright 2007 EView Technology, Inc. EView Technology makes no warranty of any kind with regard

More information

HP OpenView Service Desk

HP OpenView Service Desk HP OpenView Service Desk OpenView Operations Integration Administrator s Guide Software Version: 5.10 For the Windows and UNIX Operating Systems Manufacturing Part Number: None Document Release Date: August

More information

Release Notes r12.5, Second Edition

Release Notes r12.5, Second Edition Release Notes r12.5, Second Edition Second Edition This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation ), is

More information

CA Nimsoft Service Desk

CA Nimsoft Service Desk CA Nimsoft Service Desk Release Notes 7.0.7.4 P03 Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being changed,

More information

Nimsoft Unified Management Portal

Nimsoft Unified Management Portal Nimsoft Unified Management Portal NimsoftMobile Guide 2.0 Document Revision History Document Version Date Changes x.x xx/xx/2012 Initial version for xxxxxxxxxxxx Legal Notices Copyright 2012, Nimsoft Corporation

More information

Tivoli Access Manager for Enterprise Single Sign-On

Tivoli Access Manager for Enterprise Single Sign-On Tivoli Access Manager for Enterprise Single Sign-On Version 5.0 Kiosk Adapter Release Notes Tivoli Access Manager for Enterprise Single Sign-On Version 5.0 Kiosk Adapter Release Notes Note: Before using

More information

HP StorageWorks Performance Advisor. Installation Guide. Version 1.7A

HP StorageWorks Performance Advisor. Installation Guide. Version 1.7A HP StorageWorks Performance Advisor Installation Guide Version 1.7A notice Copyright 2002-2004 Hewlett-Packard Development Company, L.P. Edition 0402 Part Number B9369-96068 Hewlett-Packard Company makes

More information

Printing Systems Division. Infoprint Manager for AIX NLV Release Notes

Printing Systems Division. Infoprint Manager for AIX NLV Release Notes Printing Systems Division Infoprint Manager for AIX NLV Release Notes Version 4 Release 2 January 13, 2005 Note! Before using this information and the product it supports, read the information in Notices

More information

Nimsoft Monitor. xendesktop Release Notes. All series

Nimsoft Monitor. xendesktop Release Notes. All series Nimsoft Monitor xendesktop Release Notes All series Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being

More information

Tivoli SecureWay Policy Director Authorization ADK. Developer Reference. Version 3.8

Tivoli SecureWay Policy Director Authorization ADK. Developer Reference. Version 3.8 Tivoli SecureWay Policy Director Authorization ADK Developer Reference Version 3.8 Tivoli SecureWay Policy Director Authorization ADK Developer Reference Version 3.8 Tivoli SecureWay Policy Director Authorization

More information

EView/400i Management for HP BSM. Operations Manager i

EView/400i Management for HP BSM. Operations Manager i EView/400i Management for HP BSM Operations Manager i Concepts Guide Software Version: 7.00 July 2015 Legal Notices Warranty EView Technology makes no warranty of any kind with regard to this document,

More information

IBM Tivoli Monitoring for Databases. Release Notes. Version SC

IBM Tivoli Monitoring for Databases. Release Notes. Version SC IBM Tivoli Monitoring for Databases Release Notes Version 5.1.1 SC23-4851-00 IBM Tivoli Monitoring for Databases Release Notes Version 5.1.1 SC23-4851-00 Note Before using this information and the product

More information

Unified Infrastructure Management Compatibility Matrix September 05, 2017

Unified Infrastructure Management Compatibility Matrix September 05, 2017 Unified Infrastructure Management Compatibility Matrix September 05, 2017 1 Unified Infrastructure Management Compatibility Matrix- CA Technologies Legal Notices Copyright 2017, CA. All rights reserved.

More information

SSL Installation Guide. Service Pack 9, July 2007

SSL Installation Guide. Service Pack 9, July 2007 SSL Installation Guide Service Pack 9, July 2007 IONA Technologies PLC and/or its subsidiaries may have patents, patent applications, trademarks, copyrights, or other intellectual property rights covering

More information

Symantec Control Compliance Suite Express Security Content Update for Microsoft Windows Server 2008 R2 (CIS Benchmark 2.1.

Symantec Control Compliance Suite Express Security Content Update for Microsoft Windows Server 2008 R2 (CIS Benchmark 2.1. Symantec Control Compliance Suite Express Security Content Update for Microsoft Windows Server 2008 R2 (CIS Benchmark 2.1.0) Release Notes Express Security Content Update for Microsoft Windows Server 2008

More information

HP Internet Usage Manager Software Release Notes

HP Internet Usage Manager Software Release Notes HP Internet Usage Manager Software Release Notes Version 7.0 Manufacturing Part Number: N/A E1010 U.S.A. Copyright 2010 Hewlett-Packard Company All rights reserved. Legal Notices The information in this

More information

SkyPilot OS Installation: Fedora Core 5

SkyPilot OS Installation: Fedora Core 5 SkyPilot OS Installation: Fedora Core 5 PN 671-00024-01 2006 SkyPilot Networks, Inc. All rights reserved This publication, or parts thereof, may not be reproduced in any form, by any method, for any purpose.

More information

Symantec Control Compliance Suite Express Security Content Update for JBoss Enterprise Application Platform 6.3. Release Notes

Symantec Control Compliance Suite Express Security Content Update for JBoss Enterprise Application Platform 6.3. Release Notes Symantec Control Compliance Suite Express Security Content Update for JBoss Enterprise Application Platform 6.3 Release Notes Express Security Content Update for JBoss Enterprise Application Platform 6.3

More information

Veritas SaaS Backup for Office 365

Veritas SaaS Backup for Office 365 Veritas SaaS Backup for Office 365 Documentation version: 1.0 Legal Notice Copyright 2018 Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo are trademarks or registered trademarks

More information

SAS 9.4 Foundation Services: Administrator s Guide

SAS 9.4 Foundation Services: Administrator s Guide SAS 9.4 Foundation Services: Administrator s Guide SAS Documentation July 18, 2017 The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2013. SAS 9.4 Foundation Services:

More information

CA Software Change Manager for Mainframe

CA Software Change Manager for Mainframe CA Software Change Manager for Mainframe Reports Guide r12 This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational

More information

Release Notes. Release 12.2

Release Notes. Release 12.2 Release Notes Release 12.2 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation ), is for your informational purposes

More information

Symantec Backup Exec System Recovery Granular Restore Option User's Guide

Symantec Backup Exec System Recovery Granular Restore Option User's Guide Symantec Backup Exec System Recovery Granular Restore Option User's Guide Symantec Backup Exec System Recovery Granular Restore Option User's Guide The software described in this book is furnished under

More information

Installation Guide. Version 2.1, February 2005

Installation Guide. Version 2.1, February 2005 Installation Guide Version 2.1, February 2005 IONA Technologies PLC and/or its subsidiaries may have patents, patent applications, trademarks, copyrights, or other intellectual property rights covering

More information

MS15: MQSeries for MVS/ESA Archive log housekeeping Version 1.1. User Guide. Document Number MS15. November 7, 2002

MS15: MQSeries for MVS/ESA Archive log housekeeping Version 1.1. User Guide. Document Number MS15. November 7, 2002 MS15: MQSeries for MVS/ESA Archive log housekeeping Version 1.1 User Guide Document Number MS15 November 7, 2002 Pete Siddall IBM UK Laboratories Ltd. Hursley Park email: pete_siddall@uk.ibm.com Take Note!

More information

Micro Focus. Data Express. Toolkit (Host)

Micro Focus. Data Express. Toolkit (Host) 1 Micro Focus Data Express Copyright 2007-2008 Micro Focus (IP) Ltd. All rights reserved. Micro Focus (IP) Ltd. has made every effort to ensure that this book is correct and accurate, but reserves the

More information

CA Nimsoft Unified Management Portal

CA Nimsoft Unified Management Portal CA Nimsoft Unified Management Portal DMZ Guide 6.5 Document Revision History Document Version Date Changes 1.0 12/15/2011 Initial version for UMP 2.6. Modified the instructions for configuring the Apache

More information

GemBuilder for Smalltalk Release Notes

GemBuilder for Smalltalk Release Notes GemStone GemBuilder for Smalltalk Release Notes Version 7.4 June 2011 GemBuilder for Smalltalk 7.4 Release Notes INTELLECTUAL PROPERTY OWNERSHIP This documentation is furnished for informational use only

More information

Nimsoft Unified Management Portal

Nimsoft Unified Management Portal Nimsoft Unified Management Portal DMZ Guide 6.0 Document Revision History Document Version Date Changes 1.0 12/15/2011 Initial version for UMP 2.6. Modified the instructions for configuring the Apache

More information

Nimsoft Monitor. controller Guide. v5.7 series

Nimsoft Monitor. controller Guide. v5.7 series Nimsoft Monitor controller Guide v5.7 series Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being changed,

More information

JBoss Transactions 4.2.2

JBoss Transactions 4.2.2 JBoss Transactions 4.2.2 Release Notes JBTS-RN-11/3/06 JBTS-RN-11/3/06 i Legal Notices The information contained in this documentation is subject to change without notice. JBoss Inc. makes no warranty

More information

Action Request System Gateway Software Release Notice 5.0rev1

Action Request System Gateway Software Release Notice 5.0rev1 Action Request System Gateway Software Release Notice 5.0rev1 Summary of Changes Version Date Reason/Rational Nature of Changes 9030709 E22 9/4/98 Updated Corrected Anomalies in Chapter 2. Updated Considerations

More information

SPICE Model Generator

SPICE Model Generator SPICE Model Generator August 2005 Notice The information contained in this document is subject to change without notice. Agilent Technologies makes no warranty of any kind with regard to this material,

More information

IBM Directory Server 4.1 Release Notes

IBM Directory Server 4.1 Release Notes IBM Directory Server 4.1 Release Notes IBM Directory Server 4.1 Release Notes Note Before using this information and the product it supports, read the general information under Notices on page 9. First

More information

HP Project and Portfolio Management Center

HP Project and Portfolio Management Center HP Project and Portfolio Management Center Software Version: 8.00 Generating Fiscal Periods Document Release Date: July 2009 Software Release Date: July 2009 Legal Notices Warranty The only warranties

More information

Veritas NetBackup Backup, Archive, and Restore Getting Started Guide. Release 8.1.2

Veritas NetBackup Backup, Archive, and Restore Getting Started Guide. Release 8.1.2 Veritas NetBackup Backup, Archive, and Restore Getting Started Guide Release 8.1.2 Veritas NetBackup Backup, Archive, and Restore Getting Started Guide Last updated: 2018-09-19 Legal Notice Copyright 2017

More information

Nimsoft Monitor. cluster Guide. v2.6 series

Nimsoft Monitor. cluster Guide. v2.6 series Nimsoft Monitor cluster Guide v2.6 series Legal Notices Copyright 2012, Nimsoft Corporation Warranty The material contained in this document is provided "as is," and is subject to being changed, without

More information

Patch Assessment Content Update Getting Started Guide for CCS 12.0

Patch Assessment Content Update Getting Started Guide for CCS 12.0 Patch Assessment Content Update Getting Started Guide for CCS 12.0 Patch Assessment Content Update Getting Started Guide The software described in this book is furnished under a license agreement and may

More information

Omnis Data Bridge. Allows cross-platform access to Omnis data files on Mac OS X servers. TigerLogic Corporation. April

Omnis Data Bridge. Allows cross-platform access to Omnis data files on Mac OS X servers. TigerLogic Corporation. April Omnis Data Bridge Allows cross-platform access to Omnis data files on Mac OS X servers TigerLogic Corporation April 2011 09-042011-02 The software this document describes is furnished under a license agreement.

More information

Nimsoft Monitor. qos_processor Guide. v1.0 series

Nimsoft Monitor. qos_processor Guide. v1.0 series Nimsoft Monitor qos_processor Guide v1.0 series Legal Notices Copyright 2012, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being changed,

More information

TME 10 Reporter Release Notes

TME 10 Reporter Release Notes TME 10 Reporter Release Notes Version 2.0 April, 1997 TME 10 Reporter (April 1997) Copyright Notice Copyright 1991, 1997 by Tivoli Systems, an IBM Company, including this documentation and all software.

More information

Installing the A4505A PCI Module Upgrade. HP Part No. A Edition E0297 Printed in U.S.A.

Installing the A4505A PCI Module Upgrade. HP Part No. A Edition E0297 Printed in U.S.A. Installing the A4505A PCI Module Upgrade HP Part No. A4500-90603 Edition E0297 Printed in U.S.A. Hewlett-Packard Co. 1997 Printing History First Printing: February 1997 UNIX is a registered trademark in

More information

BEATuxedo Mainframe Adapter for SNA. Installation Guide

BEATuxedo Mainframe Adapter for SNA. Installation Guide BEATuxedo Mainframe Adapter for SNA Installation Guide Version 9.1 Document Revised: August 16, 2006 Contents Introduction What You Need to Know.................................................. 1-1 e-docs

More information

Tivoli SecureWay Policy Director WebSEAL. Installation Guide. Version 3.8

Tivoli SecureWay Policy Director WebSEAL. Installation Guide. Version 3.8 Tivoli SecureWay Policy Director WebSEAL Installation Guide Version 3.8 Tivoli SecureWay Policy Director WebSEAL Installation Guide Version 3.8 Tivoli SecureWay Policy Director WebSEAL Installation Guide

More information

Veritas NetBackup Appliance Fibre Channel Guide

Veritas NetBackup Appliance Fibre Channel Guide Veritas NetBackup Appliance Fibre Channel Guide Release 2.7.3 NetBackup 52xx and 5330 Document Revision 1 Veritas NetBackup Appliance Fibre Channel Guide Release 2.7.3 - Document Revision 1 Legal Notice

More information

Nimsoft Monitor. websphere Guide. v1.5 series

Nimsoft Monitor. websphere Guide. v1.5 series Nimsoft Monitor websphere Guide v1.5 series Legal Notices Copyright 2012, Nimsoft Corporation Warranty The material contained in this document is provided "as is," and is subject to being changed, without

More information

Veritas SaaS Backup for Salesforce

Veritas SaaS Backup for Salesforce Veritas SaaS Backup for Salesforce Documentation version: 2.0 Legal Notice Copyright 2018 Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo are trademarks or registered trademarks

More information

MQSeries for OS/390 - Log extract program

MQSeries for OS/390 - Log extract program Version 2.3 June, 2004 Colin Paice (PAICE@UK.IBM.COM) Arndt Eade (ARNDT.EADE@UK.IBM.COM) IBM Hursley Property of IBM Take Note! Before using this report be sure to read the general information under "Notices".

More information

MQME-GUI User Guide Page ii

MQME-GUI User Guide Page ii MQME-GUI User Guide Capitalware Inc. Unit 11, 1673 Richmond Street, PMB524 London, Ontario N6G2N3 Canada sales@capitalware.com http://www.capitalware.com MQME-GUI User Guide Page ii Table of Contents 1

More information

Development tools System i5 Debugger

Development tools System i5 Debugger System i Development tools System i5 Debugger Version 6 Release 1 System i Development tools System i5 Debugger Version 6 Release 1 Note Before using this information and the product it supports, read

More information

Solstice Backup 4.2 User s Guide

Solstice Backup 4.2 User s Guide Solstice Backup 4.2 User s Guide 2550 Garcia Avenue Mountain View, CA 94043 U.S.A. Part No: 802-6105-10 Revision A, April 1996 A Sun Microsystems, Inc. Business 1996 Sun Microsystems, Inc. 2550 Garcia

More information

VisiBroker Release Notes

VisiBroker Release Notes VisiBroker 8.5.2 Release Notes Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2015. All rights reserved. VisiBroker contains derivative

More information

CA IDMS Server. Release Notes. r17

CA IDMS Server. Release Notes. r17 CA IDMS Server Release Notes r17 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your informational

More information

JBossESB GA. Service Orchestration Guide JBESB-SOG-10/31/07

JBossESB GA. Service Orchestration Guide JBESB-SOG-10/31/07 JBossESB 4.2.1 GA Service Orchestration Guide JBESB-SOG-10/31/07 JBESB-SOG-10/31/07 Legal Notices The information contained in this documentation is subject to change without notice. JBoss Inc. makes

More information

CA File Master Plus. Release Notes. Version

CA File Master Plus. Release Notes. Version CA File Master Plus Release Notes Version 9.0.00 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for

More information

Veritas Backup Exec Migration Assistant

Veritas Backup Exec Migration Assistant Veritas Backup Exec Migration Assistant Legal Notice Copyright 2017 Veritas Technologies LLC. All rights reserved. Veritas and the Veritas Logo are trademarks or registered trademarks of Veritas Technologies

More information

Information/Management

Information/Management Information/Management Client Installation and User s Guide Version 1.1 Information/Management Client Installation and User s Guide Version 1.1 2 Version 1.1 TME 10 Information/Management Client Installation

More information

CA Nimsoft Monitor for Flow Analysis

CA Nimsoft Monitor for Flow Analysis CA Nimsoft Monitor for Flow Analysis Release Notes Release 1.0 Document Revision History Document Version Date Changes 1.0 9/29/2012 Initial version CA Nimsoft Monitor for Flow Analysis Release Notes Contact

More information

Nimsoft Monitor. exchange_response Guide. v2.5 series

Nimsoft Monitor. exchange_response Guide. v2.5 series Nimsoft Monitor exchange_response Guide v2.5 series Legal Notices Copyright 2014, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being

More information

Arcserve Backup for Windows. Release Summary r16

Arcserve Backup for Windows. Release Summary r16 Arcserve Backup for Windows Release Summary r16 Legal Notice This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

SPICE Model Generator

SPICE Model Generator SPICE Model Generator September 2004 Notice The information contained in this document is subject to change without notice. Agilent Technologies makes no warranty of any kind with regard to this material,

More information

CA Performance Management for OpenVMS

CA Performance Management for OpenVMS CA Performance Management for OpenVMS Release Summary r3.1 This documentation and any related computer software help programs (hereinafter referred to as the Documentation ) is for the end user s informational

More information

Notice. Mentor Graphics is a trademark of Mentor Graphics Corporation in the U.S. and other countries.

Notice. Mentor Graphics is a trademark of Mentor Graphics Corporation in the U.S. and other countries. HDL Blocks May 2007 Notice The information contained in this document is subject to change without notice. Agilent Technologies makes no warranty of any kind with regard to this material, including, but

More information

Nimsoft Monitor Server

Nimsoft Monitor Server Nimsoft Monitor Server Configuration Guide v6.00 Document Revision History Version Date Changes 1.0 10/20/2011 Initial version of Nimsoft Server Configuration Guide, containing configuration and usage

More information

Installing DevPartner Java Edition Release 4.1

Installing DevPartner Java Edition Release 4.1 Installing DevPartner Java Edition Release 4.1 Technical support is available from our Technical Support Hotline or via our FrontLine Support Web site. Technical Support Hotline: 1-888-686-3427 Frontline

More information

Installation Guide V1.1

Installation Guide V1.1 Installation Guide V1.1 The information contained in this manual is the licensed property of Fujitsu Software Technology Corporation. Use of the information contained herein is restricted to the terms

More information

Veritas NetBackup Vault Operator's Guide

Veritas NetBackup Vault Operator's Guide Veritas NetBackup Vault Operator's Guide UNIX, Windows, and Linux Release 8.1.1 Veritas NetBackup Vault Operator's Guide Last updated: 2018-09-19 Document version: NetBackup 8.1 Legal Notice Copyright

More information

IBM Tivoli Directory Server Version 5.2 Client Readme

IBM Tivoli Directory Server Version 5.2 Client Readme IBM Tivoli Directory Server Version 5.2 Client Readme GI11-4150-00 IBM Tivoli Directory Server Version 5.2 Client Readme GI11-4150-00 Note Before using this information and the product it supports, read

More information

Welcome To HP OpenView Network Node Manager

Welcome To HP OpenView Network Node Manager Welcome To HP OpenView Network Node Manager Windows NT, Windows 2000, HP-UX, and Solaris Manufacturing Part Number: J1240-90052 March 2001 Copyright 2001 Hewlett-Packard Company. Legal Notices Hewlett-Packard

More information

CA SSO. Agent for Oracle PeopleSoft Release Notes. r12.51

CA SSO. Agent for Oracle PeopleSoft Release Notes. r12.51 CA SSO Agent for Oracle PeopleSoft Release Notes r12.51 This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation ),

More information

GemBuilder for Smalltalk Installation Guide

GemBuilder for Smalltalk Installation Guide GemStone GemBuilder for Smalltalk Installation Guide Version 5.4.3 February 2016 SYSTEMS INTELLECTUAL PROPERTY OWNERSHIP This documentation is furnished for informational use only and is subject to change

More information

CA SiteMinder. Advanced Password Services Release Notes 12.52

CA SiteMinder. Advanced Password Services Release Notes 12.52 CA SiteMinder Advanced Password Services Release Notes 12.52 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Installation and User s Guide

Installation and User s Guide Tivoli Data Protection for Informix Installation and User s Guide Version3Release7 SH26-4095-00 Tivoli Data Protection for Informix Installation and User s Guide Version3Release7 SH26-4095-00 Note Before

More information

from the source host, use the FTP put command to copy a file from the source host to the target host.

from the source host, use the FTP put command to copy a file from the source host to the target host. 31 CHAPTER 4 Transferring a Transport File or a CEDA File File Transfer 31 Transport File Attributes 31 Using the FILENAME Statement or the FTP Utility to Specify File Attributes 32 Using the FILENAME

More information

Command Line Interface Software Release Notice 5.0rev1

Command Line Interface Software Release Notice 5.0rev1 Command Line Interface Software Release Notice 5.0rev1 Summary of Changes Version Date Reason/Rational Nature of Changes 9030681 E17 8/25/98 Technical accuracy. Updated Platform Requirements in Chapter

More information

Core Services SSL Installation Guide. Service Pack 9, July 2007

Core Services SSL Installation Guide. Service Pack 9, July 2007 Core Services SSL Installation Guide Service Pack 9, July 2007 IONA Technologies PLC and/or its subsidiaries may have patents, patent applications, trademarks, copyrights, or other intellectual property

More information

Symantec Enterprise Security Manager Modules for Oracle Release Notes

Symantec Enterprise Security Manager Modules for Oracle Release Notes Symantec Enterprise Security Manager Modules for Oracle Release Notes Release 5.0 for Symantec ESM 9.0 and 10.0 For Red Hat Enterprise Linux, HP-UX, AIX, Solaris, and Windows Symantec Enterprise Security

More information

HP Software Revision Controller/XL Technical Addendum

HP Software Revision Controller/XL Technical Addendum Technical Addendum HP 3000 MPE/iX Computer Systems Edition 1 Manufacturing Part Number: 30328-90001 E0490 U.S.A. April 1990 Notice The information contained in this document is subject to change without

More information

CA Workload Automation Agent for Databases

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

More information

Project Capuchin Bridging Flash Lite and Java ME in Sony Ericsson phones

Project Capuchin Bridging Flash Lite and Java ME in Sony Ericsson phones Product information August 2008 Project Capuchin Bridging Flash Lite and Java ME in Sony Ericsson phones Document history Change history 2008-05-01 Doc. No. 1212.4799.1 First version 2008-08-18 Doc. No.

More information

DFSMS Basics: How to Create/Modify an SMS Configuration and Write ACS Routines - Demo

DFSMS Basics: How to Create/Modify an SMS Configuration and Write ACS Routines - Demo DFSMS Basics: How to Create/Modify an SMS Configuration and Write ACS Routines - Demo Steve Huber and David Legendre IBM March 14,2012 Session Number 10936 Agenda Intro to SMS (Configuration and ACS) Configuration

More information

CA Nimsoft Monitor. Implementing CA Nimsoft Monitor for Citrix CloudPlatform powered by Apache CloudStack

CA Nimsoft Monitor. Implementing CA Nimsoft Monitor for Citrix CloudPlatform powered by Apache CloudStack CA Nimsoft Monitor Implementing CA Nimsoft Monitor for Citrix CloudPlatform powered by Apache CloudStack October 2013 Document Revision History Document Version Date Changes 1.00 Oct. 1, 2013 First edition

More information

IBM Rational Synergy DCM-GUI

IBM Rational Synergy DCM-GUI IBM Rational Synergy DCM-GUI Release 7.2.1.1 IBM Rational Synergy - 1 - This edition applies to IBM Rational Synergy version 7.2.1.1, and to all subsequent releases and modifications until otherwise indicated

More information