ASG-Rochade Java API Release Notes

Size: px
Start display at page:

Download "ASG-Rochade Java API Release Notes"

Transcription

1 ASG-Rochade Java API Release Notes Version January 12, 2007 JPI This publication contains information about all modifications made to ASG-Rochade Java API (herein called Java API) since Version Note: ASG encourages you to visit and sign onto the Intelligent Support Portal (ISP) to verify whether any product or documentation revisions, new maintenance, or service packs apply to this release of the product or its accompanying documentation. Product Information Java API is an object-oriented application programming interface (API) with a metamodel view that is very similar to the one provided by the core classes of ASG-Rochade AutoPilot (herein called AutoPilot). It is a pure Java API for developing Rochade-based client/server and multitier applications. It provides these features and capabilities by means of a simple, straightforward, and easy-to-use design: Compatibility with AutoPilot metamodels and control data Handling of AutoPilot subject areas and projects, including versioning Support for all AutoPilot reports through easy-to-use, object-oriented query classes Access to metadata and querying of metadata controlled by the metamodels Access to metadata regulated through access rights defined in AutoPilot Support for multiuser- and multisession-capable programs that work with multiple subject areas and items Portability through pure Java code Copyright 2007 ASG GmbH & Co. KG, a wholly owned subsidiary of Allen Systems Group, Inc. All rights reserved. All names and products contained herein are the trademarks or registered trademarks of their respective holders. 1

2 While the metamodel view provided in Java API is similar to the view provided by AutoPilot s core classes, it does not support all of their functionality. For a description of the differences between the traditional API and Java API, see the file differences.html in the installation directory RochadePath/TechDoc/jpi/en. Enhancements and Changes Version These modifications and enhancements have been made to Java API in Version : Enhancements/Changes srap.application.compare reports link attributes as changed if links differ only by their link qualifier. srap.application handles hypertext attributes in select, update, and compare in their original representation as stored in Rochade (see Corrections and Fixes on page 8). You can control its behavior with the new method srap.application.setfeatures (see New methods on page 2). srap.application.update supports interapplication operations. New constants srap.application.reftype.unclassified srap.application.updatemode.copy_v srap.application.updatemode.move_v srap.application.updatemode.share_v New methods srap.application.setfeatures and srap.application.getfeatures srap.convenient.applicationsupport.packstring and srap.convenient.applicationsupport.unpackstring Deprecated methods (see your Java API class documentation for additional notes) srap.convenient.applicationsupport.packstringforupdate srap.convenient.applicationsupport.unpackstringfromselect 2

3 Version These modifications and enhancements have been made to Java API in Version : Enhancements/Changes QueryCmpVersions and QueryCmpIdents An attribute that is valid in the metamodels of both versions or identifiers to be compared and is empty in one of these is treated now as NOT_EQUAL instead of being assigned to DS1 or DS2. New maskable path queries. New classes QueryMPath MPath MPathIterator MPathFactory MPathMask MPathNode MPathXmlParser MPathXmlReader New constants ICNode.LinkDir.VIRTUAL Query.Type.M_PATH New methods QueryFactory.createMPathQuery 3

4 Version These modifications and enhancements were made to Java API in Version : Enhancements/Changes Identifier package support has been added, including a sample implementation for working with AutoPilot packages. Identifier.getAttributesContents and IdentifierCollection.getAttributesContents can now request the state of identifiers. Keepalive implementation has been improved. Performance improvements have been made in SRAP select, QuerySdcac, and attribute contents handling. New package: de.rochade.srap.wrapped New classes AccessController ApIdentPackageAccessController ApIdentPackageHandlerImpl ApIdentPackageImpl ApPackAttrs BaseAccessController Identifier.State IdentifierAccessController IdentifierCollection.Search IdentifierPackage IdentifierPackageAccessController IdentifierPackageHandler New constants: Identifier.State.STATE RoException.Code.IDENT_ALREADY_EXISTS 4

5 New methods Application.Info getbaseconfig gethierarchybase isinhierarchy AttrContentsContainer.isDisposed Attribute.isDisposed BaseAttrContentsContainer.isDisposed DataStore dispose getidentifierpackagehandler isdisposed setattrcontentscontainerfactory srap.connection.getstatistics Server.isDisposed User getfailedlogons getpasswordexpirydays srap.srapadaptor getsrapapplication getsrapdatabase getsrapconnection Improved/changed methods: iproved performance of AttrContentsContainer.dispose and QuerySdcac.run. 5

6 Version These modifications and enhancements were made to Java API in Version : Enhancements/Changes New attribute handling feature: Dynamic attribute contents information. New SRAP API support for execution of RPL scripts. Keepalive functionality added to communication, which sends a keepalive package during inactivity every 30 seconds to avoid closing of the connection by a firewall or proxy. New classes Attribute.ContentsInfo UserExit.Mode New constants Attribute.ContentsInfo RO_MIME_TYPE RO_MIME_TYPE_DEFAULT RO_FILE_NAME RO_FILE_EXT RO_FILE_PATH UserExit.AttributeType.CONTENTS_INFO UserExit.Key.ATTRIBUTE UserExit.Mode GET SET New methods Attribute getcontentsinfo setcontentsinfo MetaModelAttribute.getContentsInfoMapping Improved/changed method IdentifierCollection.getAttributesContents If an identifier in the collection does not exist, it is no longer contained in the returned Map.

7 Version Version Java API provides QuerySdcac.run with improved performance for Rochade servers 7 or later. These modifications and enhancements were made to Java API in Version : New classes IdentifierCollection.RemoveMode State StateModel New constants IdentifierCollection.RemoveMode New methods DROP_CHILDREN KEEP_CHILDREN NO_CHILDREN Database.getDataStore ICIterator.remove(RemoveMode mode) IdentifierCollection remove(object o, RemoveMode mode) removeall(collection c, RemoveMode mode) retainall(collection c, RemoveMode mode) MetaModelType.hasAttribute() Improved/changed classes IdentifierCollection Reduced memory usage. QueryPath Improved performance in the construction of path queries. Improved/changed methods DataStore.createIdentifier Performance improvements if the name parameter is of class IdentifierNameClassified. 7

8 ICIterator.remove This method now throws an IllegalStateException if you try to remove a node with children. IdentifierCollection remove(object o) removeall(collection c) retainall(collection c) All three methods now throw an IllegalStateException if you try to remove a node with children. MetaModelAttribute.getValidContents If a sequence of values is defined in the metamodel attribute and no attribute was passed as a parameter, this method now returns a StateModel containing the whole sequence definition instead of throwing a NullPointerException. MetaModelAttribute.checkContents If a link target does not exist and the user has no create right for the metamodel identifier type of the link target, then it was not possible to create this link target by saving a link attribute. This check is disabled now. Corrections and Fixes Version These errors in Java API have been corrected in Version : MPathFactory Now computes recursively all path variants that point either from other item types to this item type (i.e., usages) or from this type to other types (i.e., references). QueryMPath Now delivers all identifiers if the path definition contains alternate ways to reach an identifier but a mask filters out intermediate identifiers. srap.application.select For query kind NEXT_LINKS, the method no longer throws a RoException (parse error for sdcac expression) if a link attribute led to no target item types. 8

9 Version Version srap.application Handling of hypertext attribute content has been corrected. The original content stored in Rochade will be returned (select) or expected (update) by default instead of an (generated) XML representation (see also Enhancements and Changes on page 2). These errors in Java API have been corrected in Version : ApplicationAdmin.getView When an item type was removed from the metamodel and the application was reorganized, an assert/nullpointerexception was thrown. AttrContentsContainerFac.registerAttrContentsContainer This method threw a ClassCastException. It has been corrected by changing the return type from AttrContentsContainer to Class. IdentifierNameClassified.hashCode The hashcode method threw a NullPointerException when the qualifier was null. User.getDatabase When a database is requested, unbound locks are automatically released. If there were multiple unbound lock contexts in the database, an IllegalArgumentException was thrown. These errors in Java API were corrected in Version : ApplicationAdmin.setIdentNameCaseSensitive When used with extension types, an exception occurred. Identifier.modifyNames If an identifier that was not located in the work configuration was renamed, then the resulting identifier contained the old configuration number. QuerySdc.run The sorting order of the result was reversed so that it matches the order produced by RPL. 9

10 Version These errors in Java API were corrected in Version : If a link was written with an empty string for the link target name (i.e., ""), the server crashed. If the RPL integration of the API used DLLs of Rochade , a NoSuchElementException was thrown. AttributeContentsContainer.preserveChanges If this method was called and afterwards this container was changed again, this led to a memory leak. ICIterator.remove If the appropriate IdentifierCollection was organized as a tree, then calling this method sometimes led to unexpected results. See also the new method remove(removemode mode). Identifier.getNames If the identifier has alias names, the unique name now always appears as the first entry in the returned set. IdentifierCollection.PrintTree If this class was used to traverse an IdentifierCollection with a depth greater than 11, then an ArrayIndexOutOfBoundsException was thrown. QueryPath.run If you added two path segments, one without a filter and the other one with the Query.RefType.NAMESPACES filter, the result contained only the classified namespace relationships and no link relationships. QuerySli.run If a referenced identifier has alias names, the identifiers corresponding to the alias names also appeared in the query result. Versions and Methods ICIterator.remove, IdentifierCollection.remove, IdentifierCollection.removeAll, IdentifierCollection.retainAll These methods now throw an IllegalStateException if you try to remove a node with children. 10

11 Installation Information ASG provides detailed lists of hardware and software requirements for all Rochade components and relevant operating systems in its ISP under Hardware Requirements Minimum system requirements: 64 MB RAM (ASG recommends 128 MB) 5 MB hard disk space Intel Pentium / 200 MHz or comparable Software Requirements This software should be installed on your computer: Rochade Server 6.20 or later. Note: Java API works best with AutoPilot If you want to work with the Rochade procedure language (RPL) interpreter, you must install Rochade Client (ROCLIENT) or later. JDK1.4 / Java 2 While Java API probably will run on any platform for which this JDK version is available. ASG has actually tested it on these platforms: AIX BS2000 (POSIX shell) HP-UX Linux (Intel) Linux on IBM mainframe (zseries) Mac OS X Microsoft Windows Sinix Solaris UnixWare z/os UNIX System Services 11

12 12 Check the existence of Java Execute the command java -version within a command interpreter (i.e., cmd.exe on Windows; any shell in UNIX or POSIX environments). You should see something like this: java version "1.4.2" Java(TM) 2 Runtime Environment, Standard Edition (build b28) Java HotSpot(TM) Client VM (build b28, mixed mode) If this command cannot be executed, complete these steps: In Windows Environments (1) Use the search user interface to look for a file named java.exe: Windows 2000: Start Search For Files and Folders Windows XP: Start Search (2) Execute the command java -version again for the found paths. In UNIX or POSIX Environments Execute this command in your shell: find / -name java -exec {} -version \; -print If it finds a usable Java program, it prints out the version information and the path where it is found. Add the path to the path environment variable. Contact your administrator for assistance. Third-party Software and References For Sun s Java products, see Xerces - XML Parser These files are located in the bin directory of the Java API installation: xercesimpl.jar and xmlparserapis.jar (for Apache Xerces ). The package de.rochade.srap utilizes the Apache XML parser (see Xerces2, Java API (SRAP layer) has been tested with Xerces The class de.rochade.util.domwriter is a copy of the algorithm that is used in Licensing Information Java API includes software developed by the Apache Software Foundation (see For licensing conditions, see the file license-for-apache.txt, which is taken from

13 Installation Steps Rhino - JavaScript Implementation Use the file js.jar (for Rhino Version 1.6R1). The package de.rochade.srap utilizes the Mozilla Rhino JavaScript implementation (see Java API (the SRAP layer) requires Rhino 1.6. At the time of this writing, Rhino 1.6R1 is available at ftp://ftp.mozilla.org/pub/mozilla.org/js/rhino1_6r1.zip. Licensing Information Java API includes software developed by the Mozilla project (see For licensing conditions, see the file license-for-rhino.txt, which is taken from (see Axis - Web Service Middleware The package de.rochade.srap.ws utilizes Apache Axis 1.2 to provide a Web service facility (see Licensing Information Java API includes software developed by the Apache Software Foundation (see For licensing conditions, see the file license-for-apache.txt, which is taken from To install the Java API, follow the general directions given in the readme_en.pdf file for installing Rochade applications. Like all Rochade applications, the Java API is installed in two steps: First the ADM installation and then the actual application installation. Migration Considerations Before running your programs with Java API or , you must recompile them. If you plan to update from Java API to or later, and you have manipulated standard T-type link attributes (link indicator S in the metamodel) with Java API , you should run a data migration procedure to correct possible inconsistencies in link qualifier data. This data migration procedure is available via the ISP or from ASG Customer Support. After the migration, make sure that all Java API installations are updated to the same version (Version or later) to prevent further link qualifier inconsistencies from occurring. 13

14 When you are using Java API, this long-standing Rochade rule still applies: A closing parenthesis always terminates a link qualifier in T-type link attributes, unless the parenthesis is escaped. Version Incompatibilities These incompatibilities concern the transition from server version 6 to 7 and later: Methods Application.createIdentifierName Returned objects of class IdentifierName can be used as parameters in these areas: DataStore.createIdentifier Identifier.copy Identifier.modifyNames LinkAttrContentsContainer.save These methods show different behavior depending on the release number of the AutoPilot application (i.e., AutoPilot subject area or project). The AutoPilot application release number is 3.7 or later. The methods are used to create namespace members that must explicitly be assigned to a namespace attribute to classify the namespace relationship. The documentation of the method contains a more detailed description. The AutoPilot application release number is less than 3.7. The methods are also used to create namespace members, but the assignment to namespace attributes is done implicitly by the Java API by analyzing the target identifier types of the namespace attributes defined in the metamodel. These incompatibilities concern these versions of Java API: Versions and If you are using the SRAP API in conjunction with servers of Version 7 or later, its behavior has changed. The issue is described in detail earlier in this section. In Version , always classified namespace members are created. Versions 1.30 through together with RPL DLLs or later and Server 7.00 or later If you are using a Java API version in the range from 1.30 through together with RPL DLLs or later and Rochade Server 7.00 or later, then you cannot connect to the server. An exception is thrown and this message appears: 14

15 Major version of native lib 'roapi2jn' is: 7 - version: 6 required. Versions and Methods ICIterator.remove, IdentifierCollection.remove, IdentifierCollection.removeAll, IdentifierCollection.retainAll These methods now throw an IllegalStateException if you try to remove a node with children. Getting Started To start Java API 1 Install Java archives. The Rochade installation installs jar files rochade.jar and rochaderpl.jar in the directory RochadePath/bin. 2 Read Java API documentation, tutorial, and samples. The supplied Java API documentation is in HTML format and is located in the directory RochadePath/TechDoc/jpi/en. Part of the documentation was generated automatically by the javadoc tool. You can view the documentation with any Web browser. To start reading the Java API documentation, point your browser at the file: RochadePath/TechDoc/jpi/en/index.html. ASG also provides a tutorial that illustrates how to use the Java API. It contains various code samples and sample programs. You can find the Java API sample programs in the directory RochadePath/samples/jpi. 15

16 16

ASG-Rochade Reconciliation Toolkit Release Notes

ASG-Rochade Reconciliation Toolkit Release Notes ASG-Rochade Reconciliation Toolkit Release Notes Version 1.76.002 January 29, 2016 RRT1100-176 This publication introduces changes made to ASG-Rochade Reconciliation Toolkit (herein called Reconciliation

More information

ASG-Rochade WebAccess Readme

ASG-Rochade WebAccess Readme ASG-Rochade WebAccess Readme Version 6.50.002 September 8, 2006 This publication contains product information about ASG-Rochade WebAccess (herein called WebAccess), including information about the installation,

More information

ASG-Rochade XML Facilities Readme

ASG-Rochade XML Facilities Readme ASG-Rochade XML Facilities Readme Version 1.21.009 January 07, 2006 This file contains product information, installation instructions, and information about starting and using ASG-Rochade XML Facilities

More information

ASG-Rochade Data Warehouse Application Release Notes

ASG-Rochade Data Warehouse Application Release Notes ASG-Rochade Data Warehouse Application Release Notes Version 1.50 December 13, 2006 DWA1100-150 This publication contains installation instructions for ASG-Rochade Data Warehouse Application (herein called

More information

ASG-Rochade Reconciliation Toolkit Readme

ASG-Rochade Reconciliation Toolkit Readme ASG-Rochade Reconciliation Toolkit Readme Version 1.00.000 November 23, 2005 This file contains installation instructions and information about getting started using the ASG-Rochade Reconciliation Toolkit

More information

ASG-Rochade Scanner for SQL Server Reporting Services Release Notes

ASG-Rochade Scanner for SQL Server Reporting Services Release Notes ASG-Rochade Scanner for SQL Server Reporting Services Release Notes Version 1.12.001 October 21, 2015 SCL1100-112 This publication contains installation instructions and information about ASG-Rochade Scanner

More information

ASG-Rochade Installation Notes

ASG-Rochade Installation Notes ASG-Rochade Installation Notes February 2015 This publication introduces changes made to the installation of ASG-Rochade (herein called Rochade) and its components. It also provides information on system

More information

ASG-Rochade SCANPLI Release Notes

ASG-Rochade SCANPLI Release Notes ASG-Rochade SCANPLI Release Notes Version 3.10.007 March 8, 2007 PL31100-310 This publication contains information about all modifications made to ASG-Rochade SCANPLI (herein called SCANPLI) since Version

More information

ASG-Rochade Bus for Rational Software Modeler Release Notes

ASG-Rochade Bus for Rational Software Modeler Release Notes ASG-Rochade Bus for Rational Software Modeler Release Notes Version 3.01 for Windows December 21, 2012 RRS1100-301 This publication describes all new features, changes and fixes of ASG-Rochade Bus for

More information

ASG-Rochade Reconciliation Toolkit Service Pack Release Notes Version

ASG-Rochade Reconciliation Toolkit Service Pack Release Notes Version ASG-Rochade Reconciliation Toolkit Service Pack Release Notes Version 1.70.013 December 10, 2013 RRT3300-170 This publication provides information about changes made to ASG-Rochade Reconciliation Toolkit

More information

Sentences Installation Guide. Sentences Version 4.0

Sentences Installation Guide. Sentences Version 4.0 Sentences Installation Guide Sentences Version 4.0 A publication of Lazysoft Ltd. Web: www.sentences.com Lazysoft Support: support@sentences.com Copyright 2000-2012 Lazysoft Ltd. All rights reserved. The

More information

ASG-Rochade Reconciliation Toolkit Readme

ASG-Rochade Reconciliation Toolkit Readme ASG-Rochade Reconciliation Toolkit Readme Version 1.00.004 July 4, 2006 This file contains installation instructions, information about getting started using the ASG-Rochade Reconciliation Toolkit (herein

More information

PWRDESBUS for ASG-Rochade Release Notes

PWRDESBUS for ASG-Rochade Release Notes PWRDESBUS for ASG-Rochade Release Notes Version 6.53 for Windows January 7, 2015 PDB1100-653 This publication describes all new features, changes, and fixes of PWRDESBUS for ASG-Rochade introduced in this

More information

ASG-MyInfoAssist Release Notes

ASG-MyInfoAssist Release Notes ASG-MyInfoAssist Release Notes Version 2.00.000 October 17, 2012 AMI1100-200 This publication provides installation instructions for ASG-MyInfoAssist (herein called MyInfoAssist) and information on how

More information

ERWINBUS for ASG-Rochade Release Notes

ERWINBUS for ASG-Rochade Release Notes ERWINBUS for ASG-Rochade Release Notes Version 8.82 for Windows July 18, 2014 ERB1100-882 This publication describes all new features, changes, and fixes of ERWINBUS for ASG-Rochade introduced in this

More information

RDM RIM for ASG-Rochade Release Notes

RDM RIM for ASG-Rochade Release Notes RDM RIM for ASG-Rochade Release Notes Version 1.15 March 23, 2009 RDM1100-113 This file lists all new features, changes and fixes introduced in this release as compared to the RDM RIM Version 1.08. 1 ISP

More information

Alborz 1.0 Installation Guide

Alborz 1.0 Installation Guide Alborz 1.0 Installation Guide September 24, 2007 Feng Xiao xiaof2@mcmaster.ca Document Revision History Rev. Level Date Description Important 2007/9/24 Initial Version Reference Documents Document # Description

More information

Perceptive DataTransfer

Perceptive DataTransfer Perceptive DataTransfer System Overview Guide Version: 6.5.x Written by: Product Knowledge, R&D Date: May 2017 2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc.,

More information

Supported Environments for Rochade Products November 23, Servers

Supported Environments for Rochade Products November 23, Servers November 23, 2016 This publication lists the supported operating systems and other software requirements for all Rochade products. Some products are available for multiple operating systems. The Version

More information

Oracle Agile Engineering Data Management

Oracle Agile Engineering Data Management Oracle Agile Engineering Data Management Installation Manual for Oracle Weblogic 11g Rel 1 (10.3.3) on Unix for Agile e6.1.2 Part No. E20359-01 April 2011 Copyright and Trademarks Copyright 1995, 2011,Oracle

More information

ASG-Rochade Bus for Rational Data Architect Release Notes

ASG-Rochade Bus for Rational Data Architect Release Notes ASG-Rochade Bus for Rational Data Architect Release Notes Version 2.04 for Windows May 8, 2014 RDA1100-204 This publication describes all new features, changes and fixes of the ASG-Rochade Bus for Rational

More information

Supported Environments for Rochade Products June 18, Servers

Supported Environments for Rochade Products June 18, Servers June 18, 2018 This publication lists the supported operating systems and other software requirements for all Rochade products. Some products are available for multiple operating systems. The Version column

More information

IBM WebSphere Application Server V3.5, Advanced Edition Expands Platform Support and Leverages the Performance of the Java 2 Software Development Kit

IBM WebSphere Application Server V3.5, Advanced Edition Expands Platform Support and Leverages the Performance of the Java 2 Software Development Kit Software Announcement July 25, 2000 IBM V3.5, Expands Platform Support and Leverages the Performance of the Java 2 Software Development Kit Overview WebSphere Application Server V3.5, manages and integrates

More information

Websphere Force Uninstall Application Server 7 Linux Installation

Websphere Force Uninstall Application Server 7 Linux Installation Websphere Force Uninstall Application Server 7 Linux Installation You also use Installation Manager to easily uninstall the packages that it installed. Linux Intel, os=linux,arch=x86, Linux Intel 32 bit

More information

What you need to know about Java and JetTrac Licensing

What you need to know about Java and JetTrac Licensing What you need to know about Java and JetTrac Licensing This document is designed to get you up to speed on the multi-platform nature of the JetTrac Products, and the licensing system that protects them

More information

SecureAware Technical Whitepaper

SecureAware Technical Whitepaper SecureAware Technical Whitepaper - requirements and specifications Applies to SecureAware version 4.x Document date: January 2015 About this document This whitepaper provides a detailed overview of the

More information

ASG-Rochade SCANCOB Release Notes

ASG-Rochade SCANCOB Release Notes ASG-Rochade SCANCOB Release Notes Version 3.10.007 March 8, 2007 CO31100-310 This publication contains information about all modifications made to ASG-Rochade SCANCOB (herein called SCANCOB) since Version

More information

jmeter is an open source testing software. It is 100% pure Java application for load and performance testing.

jmeter is an open source testing software. It is 100% pure Java application for load and performance testing. i About the Tutorial jmeter is an open source testing software. It is 100% pure Java application for load and performance testing. jmeter is designed to cover various categories of tests such as load testing,

More information

TEMPO INSTALLATION I O A. Platform Independent Notes 1. Installing Tempo 3. Installing Tools for the Plugins 5. v0.2.

TEMPO INSTALLATION I O A. Platform Independent Notes 1. Installing Tempo 3. Installing Tools for the Plugins 5. v0.2. TEMPO INSTALLATION v0.2.2 (BETA) 2/7/2008 Platform Independent Notes 1 On Windows: 2 On Linux: 2 On OS X (Tiger 10.4.7 and later) 2 I O A Installing Tempo 3 Installing on Windows (Vista/XP/W2K) 3 Installing

More information

DB2. Migration Guide. DB2 Version 9 GC

DB2. Migration Guide. DB2 Version 9 GC DB2 DB2 Version 9 for Linux, UNIX, and Windows Migration Guide GC10-4237-00 DB2 DB2 Version 9 for Linux, UNIX, and Windows Migration Guide GC10-4237-00 Before using this information and the product it

More information

Java TM SE 7 Release Notes Microsoft Windows Installation (32-bit)

Java TM SE 7 Release Notes Microsoft Windows Installation (32-bit) » search tips Search Products and Technologies Technical Topics Join Sun Developer Network Java TM SE 7 Release Notes Microsoft Windows Installation (32-bit) System Requirements JDK Documentation See supported

More information

RDM RIM for ASG-Rochade Release Notes

RDM RIM for ASG-Rochade Release Notes RDM RIM for ASG-Rochade Release Notes Version 1.17 December 11, 2009 RDM1100-117 This file lists all new features, changes and fixes introduced in this release as compared to the RDM RIM Version 1.08.

More information

TABLE OF CONTENTS 1. INTRODUCTION DEFINITIONS Error! Bookmark not defined REASON FOR ISSUE 2 3. RELATED DOCUMENTS 2 4.

TABLE OF CONTENTS 1. INTRODUCTION DEFINITIONS Error! Bookmark not defined REASON FOR ISSUE 2 3. RELATED DOCUMENTS 2 4. TABLE OF CONTENTS 1. INTRODUCTION 1 1.1 DEFINITIONS Error! Bookmark not defined. - 2 2. REASON FOR ISSUE 2 3. RELATED DOCUMENTS 2 4. OVERVIEW 2-3 5. HARDWARE ARCHITECTURE 3 6. SUPPORTED CONFIGURATIONS

More information

ArcExplorer -- Java Edition 9.0 System Requirements

ArcExplorer -- Java Edition 9.0 System Requirements ArcExplorer -- Java Edition 9.0 System Requirements This PDF contains system requirements information, including hardware requirements, best performance configurations, and limitations, for ArcExplorer

More information

Perceptive DataTransfer

Perceptive DataTransfer Perceptive DataTransfer System Overview Version: 6.2.x Written by: Product Documentation, R&D Date: January 2013 2013 Perceptive Software. All rights reserved CaptureNow, ImageNow, Interact, and WebNow

More information

Welcome to Kmax Installing Kmax

Welcome to Kmax Installing Kmax Welcome to Kmax 10.2 Kmax is a cross-platform, Java-based application that will run on Windows, Linux, or Mac OS X. This distribution of Kmax replaces all previous releases except for Kmax on Mac OS X

More information

DevPartner Java Edition System Requirements Release 4.3

DevPartner Java Edition System Requirements Release 4.3 DevPartner Java Edition System Requirements Release 4.3 Hardware Requirements Supported Environments Operating Systems (page 3) Java Virtual Machines (page 4) Application Servers (page 5) Integrated Development

More information

DevPartner Java Edition System Requirements Release

DevPartner Java Edition System Requirements Release DevPartner Java Edition System Requirements Release 3.3.01 Hardware Requirements Windows for Windows systems: Intel Architecture 32-bit Pentium III 500 MHz or equivalent 256 MB total system memory 100

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

Running Java Programs

Running Java Programs Running Java Programs Written by: Keith Fenske, http://www.psc-consulting.ca/fenske/ First version: Thursday, 10 January 2008 Document revised: Saturday, 13 February 2010 Copyright 2008, 2010 by Keith

More information

Chapter 2. Operating-System Structures

Chapter 2. Operating-System Structures Chapter 2 Operating-System Structures 2.1 Chapter 2: Operating-System Structures Operating System Services User Operating System Interface System Calls Types of System Calls System Programs Operating System

More information

Hitachi Content Platform HCP Data Migrator 6.1 Release Notes HCP-DM Version June 27, 2014

Hitachi Content Platform HCP Data Migrator 6.1 Release Notes HCP-DM Version June 27, 2014 Hitachi Content Platform HCP-DM Version 6.1.0.9 June 27, 2014 RN-90ARC031-10 2014 Hitachi Data Systems Corporation. All rights reserved. No part of this publication may be reproduced or transmitted in

More information

IBM WebSphere Application Server V3.5, Advanced Edition for Linux Extends Support to Red Hat, Caldera, SuSE, and TurboLinux

IBM WebSphere Application Server V3.5, Advanced Edition for Linux Extends Support to Red Hat, Caldera, SuSE, and TurboLinux Software Announcement December 5, 2000 IBM Server V3.5, Advanced Extends Support to Red Hat, Caldera, SuSE, and TurboLinux Overview WebSphere Application Edition for Linux manages and integrates enterprise-wide

More information

Chapter 2: Operating-System Structures

Chapter 2: Operating-System Structures Chapter 2: Operating-System Structures Chapter 2: Operating-System Structures Operating System Services User Operating System Interface System Calls Types of System Calls System Programs Operating System

More information

Licensed Program Specifications

Licensed Program Specifications Licensed Program Specifications Tivoli Storage Manager, S/390 Edition Version 4 Release 2 Program Number 5697-TS9 Tivoli 1 Storage Manager, S/390 2 Edition, is an advanced storage management solution now

More information

StoneGate Management Center Release Notes for Version 4.2.1

StoneGate Management Center Release Notes for Version 4.2.1 StoneGate Management Center Release Notes for Version 4.2.1 Created: July 24, 2008 Table of Contents What s New... 3 System Requirements... 4 Build Version... 5 Compatibility... 5 Installation Instructions...

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

Platform SDK Deployment Guide. Platform SDK 8.1.2

Platform SDK Deployment Guide. Platform SDK 8.1.2 Platform SDK Deployment Guide Platform SDK 8.1.2 1/1/2018 Table of Contents Overview 3 New in this Release 4 Planning Your Platform SDK Deployment 6 Installing Platform SDK 8 Verifying Deployment 10 Overview

More information

Sign Off and Date: Sign Off and Date: 17/11/2008. Approved by: Zuzana MAZANOVA Emilio CASTRILLEJO

Sign Off and Date: Sign Off and Date: 17/11/2008. Approved by: Zuzana MAZANOVA Emilio CASTRILLEJO Public e-procurement: Common Technical Specifications elaboration using State of the Art and Learning Demonstrators Framework Contract ENTR/01/58-TOOLS DG ENTR Updated Dynamic Demonstrators Installation

More information

VPN Connection to HFM Server at Poltrona FrauSite Below it is described how to connect You to Poltronafrau.it domain through a VPN connection.

VPN Connection to HFM Server at Poltrona FrauSite Below it is described how to connect You to Poltronafrau.it domain through a VPN connection. IT Technical Documents Author HFM - User Guide Creation Date 24/11/2008 Revised by Revision 17/01/2008 ID Doc. VPN Connection to HFM Server at Poltrona FrauSite Below it is described how to connect You

More information

Oracle Java Runtime Windows 7 64 Bits Client 9i

Oracle Java Runtime Windows 7 64 Bits Client 9i Oracle Java Runtime Windows 7 64 Bits Client 9i Will EBS users be forced to upgrade to JRE 7 for Windows desktop clients? both the 32-bit and 64-bit JRE versions for various Windows operating systems.

More information

Documentum Foundation Classes Installation Guide

Documentum Foundation Classes Installation Guide Documentum Foundation Classes Installation Guide Version 5.3 SP1 September 2005 Copyright 1994-2005 EMC Corporation Table of Contents Preface... 5 Chapter 1 Before You Install DFC... 7 Where to install

More information

Orbix Release Notes

Orbix Release Notes Orbix 6.3.8 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. MICRO FOCUS, the Micro Focus

More information

Java Manuals For Windows Xp Latest Version 7.5

Java Manuals For Windows Xp Latest Version 7.5 Java Manuals For Windows Xp Latest Version 7.5 7.4 Turing Machines 7.5 Universality 7.6 Computability 7.7 Intractability These instructions apply to 32-bit and 64-bit Windows 8, Windows 7, Vista SP1, and

More information

TIBCO Rendezvous Release Notes

TIBCO Rendezvous Release Notes TIBCO Rendezvous Release Notes Software Release 8.4.5 February 2016 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED

More information

Teamcenter Installation on Linux Clients Guide. Publication Number PLM00010 J

Teamcenter Installation on Linux Clients Guide. Publication Number PLM00010 J Teamcenter 10.1 Installation on Linux Clients Guide Publication Number PLM00010 J Proprietary and restricted rights notice This software and related documentation are proprietary to Siemens Product Lifecycle

More information

Sentinel RMS SDK v9.3.0

Sentinel RMS SDK v9.3.0 Sentinel RMS SDK v9.3.0 Release Notes for Solaris Sparc (32-bit and 64-bit) Release Version: v9.3.0 Document Number: 007-013332-001, D Release Date: June, 2018 Contents Product Description 3 About This

More information

National Language Support for Windows NT and AIX Now Available with IBM WebSphere Application Server V3.0.1, Standard Edition

National Language Support for Windows NT and AIX Now Available with IBM WebSphere Application Server V3.0.1, Standard Edition Software Announcement November 16, 1999 National Language Support for Windows NT and AIX Now Available with IBM WebSphere Application Server V3.0.1, Standard Edition Overview WebSphere Application Server

More information

InstallAnywhere: Requirements

InstallAnywhere: Requirements InstallAnywhere: Requirements Create Multiplatform Installations from a Single Project File Physical, Cloud, and Virtual Environments, Plus Docker Containers Requirements This document shows the technical

More information

Oracle Service Architecture Leveraging Tuxedo (SALT)

Oracle Service Architecture Leveraging Tuxedo (SALT) Oracle Service Architecture Leveraging Tuxedo (SALT) Installation Guide 10g Release 3 (10.3) January 2009 Service Architecture Leveraging Tuxedo Installation Guide, 10g Release 3 (10.3) Copyright 2006,

More information

Installing ArcIMS 9.1 on Windows

Installing ArcIMS 9.1 on Windows ArcGIS 9.1 Installing ArcIMS 9.1 on Windows Table Of Contents Introduction...1 Overview...2 What s included with ArcIMS 9.1?...2 ArcIMS components...2 ArcIMS Manager...3 ArcIMS Manager Applications...3

More information

Application Servers Sun Java Systems Application Server (SJSAS) Installation

Application Servers Sun Java Systems Application Server (SJSAS) Installation Proven Practice Application Servers Sun Java Systems Application Server (SJSAS) Installation Product(s): IBM Cognos 8.4, SJSAS Area of Interest: Infrastructure DOC ID: AS07 Version 8.4.0.0 Sun Java Systems

More information

Chapter 2: Operating-System Structures

Chapter 2: Operating-System Structures Chapter 2: Operating-System Structures Chapter 2: Operating-System Structures Operating System Services User Operating System Interface System Calls Types of System Calls System Programs Operating System

More information

HP OpenVMS Application Modernization and Integration Infrastructure Package, Version 2.3

HP OpenVMS Application Modernization and Integration Infrastructure Package, Version 2.3 HP OpenVMS Application Modernization and Integration Infrastructure Package, Version 2.3 SOFTWARE PRODUCT DESCRIPTION 80.58.10 Description The HP OpenVMS Application Modernization and Integration Infrastructure

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

Oracle Transportation Management. Installation Guide Release 6.3 Part No. E

Oracle Transportation Management. Installation Guide Release 6.3 Part No. E Oracle Transportation Management Installation Guide Release 6.3 Part No. E38416-09 April 2015 Oracle Transportation Management Installation Guide, Release 6.3 Part No. E38416-09 Copyright 2001, 2015,

More information

Manual Update Java 7 25 Mac 64 Bit Offline

Manual Update Java 7 25 Mac 64 Bit Offline Manual Update Java 7 25 Mac 64 Bit Offline Installer This release will be the last Oracle JDK 7 publicly available update. For more JavaFX SDK is now included in JDK 7 for Windows, Mac OS X, and Linux

More information

Chapter 2: Operating-System Structures. Operating System Concepts Essentials 8 th Edition

Chapter 2: Operating-System Structures. Operating System Concepts Essentials 8 th Edition Chapter 2: Operating-System Structures Operating System Concepts Essentials 8 th Edition Silberschatz, Galvin and Gagne 2011 Chapter 2: Operating-System Structures Operating System Services User Operating

More information

Chapter 2: Operating-System Structures. Operating System Concepts 9 th Edition

Chapter 2: Operating-System Structures. Operating System Concepts 9 th Edition Chapter 2: Operating-System Structures Silberschatz, Galvin and Gagne 2013 Chapter 2: Operating-System Structures Operating System Services User Operating System Interface System Calls Types of System

More information

Chapter 2: Operating-System

Chapter 2: Operating-System Chapter 2: Operating-System Structures Chapter 2: Operating-System Structures Operating System Services! User Operating System Interface! System Calls! Types of System Calls! System Programs! Operating

More information

Products Included in the Installation Program

Products Included in the Installation Program Oracle Fusion Middleware Getting Started With Installation for Oracle WebLogic Server 11g Release 1 (10.3.1) E13751-01 May 2009 This guide provides an overview of the WebLogic Server installation process

More information

Customer Support: North America (+1) ext. 6 [toll-free] Europe +49 (0)

Customer Support: North America (+1) ext. 6 [toll-free] Europe +49 (0) Stonebranch Solutions 4.3.0 is comprised of a suite of components that are installed as a single installation package. Stonebranch, Inc. provides a separate package for each of the Stonebranch Solutions

More information

The printer requires: Ethernet 10Base-TX or 100Base-TX interface. Category 5e or 6 Ethernet cable with RJ-45 socket connectors.

The printer requires: Ethernet 10Base-TX or 100Base-TX interface. Category 5e or 6 Ethernet cable with RJ-45 socket connectors. Quick Start Guide and Tutorial Printer Network and WebPanel Introduction It is assumed you have the following: A working knowledge of your network system and related utilities. Access to the supervisor

More information

HCP Data Migrator Release Notes Release 6.1

HCP Data Migrator Release Notes Release 6.1 HCP Data Migrator Release Notes Release 6.1 Hitachi Content Platform Data Migrator RN-90ARC031-11 4 December 2017 2014, 2017 Hitachi Vantara Corporation. All rights reserved. No part of this publication

More information

Perceptive Nolij Web. Technical Specifications. Version:

Perceptive Nolij Web. Technical Specifications. Version: Perceptive Nolij Web Technical Specifications Version: 6.8.24 Written by: Product Knowledge Date: October 2017 2014-2017 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc.,

More information

25. DECUS Symposium THE Application Development Environment for OpenVMS

25. DECUS Symposium THE Application Development Environment for OpenVMS NetBeans THE Application Development Environment for OpenVMS Sunil Kumaran, Thomas Siebold Agenda What is NetBeans some history Major Features / Demonstrations NetBeans on OpenVMS Questions 5/2/2002 DECUS

More information

MQ Channel Auto Creation Manager Overview

MQ Channel Auto Creation Manager Overview MQ Channel Auto Creation Manager Overview Capitalware Inc. Unit 11, 1673 Richmond Street, PMB524 London, Ontario N6G2N3 Canada sales@capitalware.com http://www.capitalware.com MQCACM Overview Page ii Table

More information

IBM SecureWay On-Demand Server Version 2.0

IBM SecureWay On-Demand Server Version 2.0 Securely delivering personalized Web applications IBM On-Demand Server Version 2.0 Highlights Delivers personalized Web solutions on demand to anyone, anywhere using profile serving Provides industry-leading,

More information

Manually Java 7 Update Bits Windows 7

Manually Java 7 Update Bits Windows 7 Manually Java 7 Update 21 64 Bits Windows 7 Version 7 Update 55 of Java's Standard Edition addresses 37 security If you're running 64-bit Windows, check your Java version and update it if necessary to

More information

Chapter 2: Operating-System Structures

Chapter 2: Operating-System Structures Chapter 2: Operating-System Structures 2.1 Silberschatz, Galvin and Gagne 2009 Chapter 2: Operating-System Structures Operating System Services User Operating System Interface System Calls Types of System

More information

Downloaded from various sources on the NET

Downloaded from various sources on the NET Overview Computers. Hardware components of a Computer. Purpose and functions of computer operating systems. Evolution of computer operating systems. Operating systems available today. Downloaded from various

More information

MapMarker Plus 13.2 Release Notes

MapMarker Plus 13.2 Release Notes MapMarker Plus 13.2 Release Notes These Release Notes accompany the MapMarker Plus 13.2 release. This provides information on new features, behavioral changes in the software, fixes for customer-reported

More information

Perceptive Process Design & Enterprise 3.1. Supported Platforms

Perceptive Process Design & Enterprise 3.1. Supported Platforms Perceptive Process Design & Enterprise 3.1 Supported Platforms Date: March 2014 Version: 3.1 2014 Perceptive Software. All rights reserved. Perceptive Software is a trademark of Lexmark International Technology

More information

1 ADF Skin Editor System Requirements

1 ADF Skin Editor System Requirements Oracle Fusion Middleware Installation Guide for Oracle Application Development Framework Skin Editor 11g Release 2 (11.1.2.0.0) E21393-02 June 2011 This document provides information on: Section 1, "ADF

More information

Perceptive Nolij Web. Technical Specifications. Version: 6.8.x

Perceptive Nolij Web. Technical Specifications. Version: 6.8.x Perceptive Nolij Web Technical Specifications Version: 6.8.x Written by: Product Knowledge, R&D Date: October 2018 Copyright 2014-2018 Hyland Software, Inc. and its affiliates. Table of Contents Introduction...

More information

Algolytics AdvancedMiner Installation

Algolytics AdvancedMiner Installation Algolytics AdvancedMiner Installation Table of contents System requirements... 2 Note... 2 Algolytics AdvancedMiner installation... 2 Note... 2 In the MS Windows operating system... 3 Note... 10 On the

More information

Apache HBase Andrew Purtell Committer, Apache HBase, Apache Software Foundation Big Data US Research And Development, Intel

Apache HBase Andrew Purtell Committer, Apache HBase, Apache Software Foundation Big Data US Research And Development, Intel Apache HBase 0.98 Andrew Purtell Committer, Apache HBase, Apache Software Foundation Big Data US Research And Development, Intel Who am I? Committer on the Apache HBase project Member of the Big Data Research

More information

Oracle Business Intelligence Publisher. 1 Oracle Business Intelligence Publisher Certification. Certification Information 10g Release 3 (

Oracle Business Intelligence Publisher. 1 Oracle Business Intelligence Publisher Certification. Certification Information 10g Release 3 ( Oracle Business Intelligence Publisher Certification Information 10g Release 3 (10.1.3.4.1) E12692-06 July 2009 This document outlines the certified hardware and software configurations for Oracle Business

More information

Hyperion System 9 BI+ Analytic Services

Hyperion System 9 BI+ Analytic Services Hyperion System 9 BI+ Analytic The Hyperion System 9 BI+ Analytic release 9.3 Support Matrix includes support information for the following areas: Operating Systems o Server o Client Web / Application

More information

Introduction to Java Programming

Introduction to Java Programming Introduction to Java Programming Lecture 1 CGS 3416 Spring 2017 1/9/2017 Main Components of a computer CPU - Central Processing Unit: The brain of the computer ISA - Instruction Set Architecture: the specific

More information

Rational Performance Tester, Version 7.0

Rational Performance Tester, Version 7.0 Rational Performance Tester, Version 7.0 Installation Guide GI11-6754-00 Rational Performance Tester, Version 7.0 Installation Guide GI11-6754-00 Note Before using this information and the product it

More information

SAP ME Build Tool 6.1

SAP ME Build Tool 6.1 Installation Guide: Central Build Instance SAP ME Build Tool 6.1 Target Audience Project Managers Build Engineers Document Version 1.0 October 26, 2012 Typographic Conventions Icons Type Style Example

More information

TIBCO iprocess Workspace (Browser) Installation Guide. Software Release 11.3 May 2011

TIBCO iprocess Workspace (Browser) Installation Guide. Software Release 11.3 May 2011 TIBCO iprocess Workspace (Browser) Installation Guide Software Release 11.3 May 2011 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO

More information

BEAWebLogic. Platform. 8.1 Supported Configurations: HP-UX 11i on Itanium

BEAWebLogic. Platform. 8.1 Supported Configurations: HP-UX 11i on Itanium BEAWebLogic Platform 8.1 Supported Configurations: HP-UX 11i on Itanium Version 8.1 Document Revised: November 2007 Copyright Copyright 2005 BEA Systems, Inc. All Rights Reserved. Restricted Rights Legend

More information

Operating-System Structures

Operating-System Structures Operating-System Structures Chapter 2 Operating System Services One set provides functions that are helpful to the user: User interface Program execution I/O operations File-system manipulation Communications

More information

Agile e Installation Manual for Agile e6.0.2 Java Client on UNIX. Part Number: INSJAVAUNIX-602A

Agile e Installation Manual for Agile e6.0.2 Java Client on UNIX. Part Number: INSJAVAUNIX-602A Agile e6.0.2 Installation Manual for Agile e6.0.2 Java Client on UNIX Part Number: INSJAVAUNIX-602A Copyrights and Trademarks Copyright 1992-2006 Agile Software Corporation. All rights reserved. You shall

More information

JAVA TM SERVER AND SERVLETS BUILDING PORTABLE WEB APPLICATIONS

JAVA TM SERVER AND SERVLETS BUILDING PORTABLE WEB APPLICATIONS JAVA TM SERVER AND PDF JAVA QUICK REFERENCE - CHEAT SHEETS JAVA (PROGRAMMING LANGUAGE) - WIKIPEDIA 1 / 6 2 / 6 3 / 6 java tm server and pdf java.beans.beancont ext tran Provides classes and interfaces

More information

SFTPPlus Client SFTPPlus Server 1.5.1

SFTPPlus Client SFTPPlus Server 1.5.1 SFTPPlus Client 1.5.1 SFTPPlus Server 1.5.1 Product Features & Benefits (Comparison Overview) The Old Exchange South Cadbury Yeovil Somerset BA22 7ET UK Copyright: Pro:Atria Limited 2009. Neither the whole

More information

ReST 2000 Roy Fielding W3C

ReST 2000 Roy Fielding W3C Outline What is ReST? Constraints in ReST REST Architecture Components Features of ReST applications Example of requests in REST & SOAP Complex REST request REST Server response Real REST examples REST

More information

Unify NXJ が サポートする構成 Release 12

Unify NXJ が サポートする構成 Release 12 Release 12 2002-2008 Unify Corporation All rights reserved. Sacramento California, USA No part of this tutorial may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated

More information