Java on z/os. Agenda. Java runtime environments on z/os. Java SDK 5 and 6. Java System Resource Integration. Java Backend Integration
|
|
|
- Clarence Perry
- 10 years ago
- Views:
Transcription
1 Martina Schmidt Agenda Java runtime environments on z/os Java SDK 5 and 6 Java System Resource Integration Java Backend Integration Java development for z/os 4 1
2 Java runtime environments under z/os Stand-alone under USS IMS WAS z/os DB2 Batch job (BPXBATCH, JZOS) CICS JVM 5 Java runtime environments under z/os Stand-alone under USS IMS WAS z/os DB2 Batch job (BPXBATCH, JZOS) CICS JVM 6 2
3 Stand-alone Java under the USS shell Starting Java programs like on the shell of every OS Shell scripts supported 7 Java runtime environments under z/os Stand-alone under USS IMS WAS z/os DB2 Batch job (BPXBATCH, JZOS) CICS JVM 8 3
4 Java batch option No. 1: BPXBATCH //OPENBATC JOB //S1 EXEC PGM=MVSPROG1 //S2 EXEC PGM=BPXBATCH, // PARM= pgm parm1 parm2 //S3 EXEC PGM=MVSPROG2 // Start of Job MVS batch program z/os UNIX program, e.g. Java MVS batch program End of Job 9 Java batch option No. 2: JZOS Full integration of Java into JES Easy to integrate new program logic written in Java into classic job nets (e.g. or PDF generation) Allows to run Java based servers as started task IDE integration zaap eligible USS JZOS address space *.class files JVM JZOS Batch launcher JCL JES Sysout z/os 10 4
5 JZOS How do I get it JZOS is a framework acquired by IBM Has become part of IBM z/os JVM last year in the following version: Java 31-Bit SDK SR6 for z/os or higher Java 31-Bit SDK 5.0 SR3 Java 64-Bit SDK 5.0 SR3 More information: 11 Examples: 1) Creating PDFs with Java Batch Traditional batch jobs generate print outs Why not generate PDFs? There are lots of Java classes for PDF generation available RC=0 12 5
6 Examples: 2) Sending Mails with Java Batch Lets take the last example again: There are standard APIs available that easily allow to send s with attachments 13 Comparison BPXBATCH vs. JZOS BPXBATCH JZOS Run in the same address space No Yes DD statements supported No Yes Move stdin, stdout and sterr to MVS dataset Console communication No No Yes Yes Return code Always 1 Yes Running programs and shell scripts in USS yes No 14 6
7 Java runtime environments under z/os Stand-alone under USS IMS WAS z/os DB2 Batch job (BPXBATCH, JZOS) CICS JVM 15 Java runtime environments under z/os Stand-alone under USS IMS WAS z/os DB2 Batch job (BPXBATCH, JZOS) CICS JVM 16 7
8 Agenda Java runtime environments on z/os Java SDK 5 and 6 Java System Resource Integration Java Backend Integration Java development for z/os 17 Java SDK 5.0 A complete new JVM for z/os Sun IP-free, but Java 2 (1.3) compliant (J2ME) and J2SE (1.4.2, 5.0) Common code base across all platforms PowerPC, IA32, x86-64, and 390 (Linux or z/os) Flexible and sophisticated technology oriented to: Performance (throughput and application startup time) Scalability Reliability, Availability and Serviceability (RAS) 18 8
9 Java SDK 6.0 What new? Java 6 SDK focuses on platform exploitation, stability, performance and diagnostics XML XSLT Processing Classpath checking Data sharing between Java Virtual Machines (JVMs) Enhanced diagnostics information 19 Just-in-time compiler The just-in-time compiler (JIT) is not really part of the JVM, but is essential for a high performing Java application Java is Write Once Run Anywhere thus it is interpreted by nature and without the JIT could not compete with native code applications As your code accesses methods the JIT determines how frequently specific methods are accessed and compiles those touched often quickly to optimize performance -Xquickstart helps to improve JVM startup time for short running Java applications causes the JIT to run with a subset of optimizations 20 9
10 Garbage collection Memory management is configurable using different policies 1. Optimize for Throughput flat heap collector focused on maximum throughput -Xgcpolicy:optthruput 2. Optimize for Pause Time flat heap collector with concurrent mark and sweep to minimize GC pause time -Xgcpolicy:optavgpause 3. Generational Concurrent divides heap into nursery and tenured segments providing fast collection for short lived objects. Can provide maximum throughput with minimal pause times -Xgcpolicy:gencon 4. Subpool a flat heap technique to help increase performance on multiprocessor systems, commonly greater than 8. Available on IBM System p and System z -Xgcpolicy:subpool 21 Shared classes A shared class area for one or more JVMs Improves startup time Lots of classes are already preloaded One class cache for many JVMs 22 10
11 Agenda Java runtime environments on z/os Java SDK 5 and 6 Java System Resource Integration Java Backend Integration Java development for z/os 23 A short z/os data overview HFS / zfs z/os sequential datasets z/os partioned datasets VSAM dataset PDS/PDSe / usr local etc java db2 MYUSER.JOB.DATA Record 1 Record 2 Record 3 Record n MYUSER.JOB.CNTL INIT Record 1 Record 2 MOUNT Record 1 Record 2 KSDS (Key sequential DataSet) ESDS (Entry sequential DataSet) RRDS (Relative Record DataSet) LDS (Linear DataSet) zfs (zseries Files System) 24 11
12 API comparison Type of access required JZOS JRIO java.io C/C++ library interface Java data set record stream abstractions Fine access to system error codes Data set access (Text Stream, Binary Stream and Record mode) Data set access (Record mode) Portable text file processing (HFS) Portable text file processing (data sets) VSAM data set access (KSDS, ESDS, RRDS) HFS access 25 MVS console communication MVS console commands Start: /s jobname,commands Modify: /f jobname,commands Stop: /p jobname Code: MvsConsole.registerMvsCommandCallback(new MvsCommandCallback() { public void handlemodify(string s) { } public void handlestart(string s) { } public boolean handlestop() { return true; } }); 26 12
13 MVS console communication Write To Operator (WTO) API available { MvsConsole.wto("CIE00001: Ready to accept commands.",0x0020, 0x4000); } 27 Java and z/os console communication Java based server 1) WTO My log is full, stopping my work 4) /F JSERV,CONTINUE 2) /S CLRLOG System automation Log cleaner 3) WTO Finished! 28 13
14 Security interfaces in the IBM z/os Java SDK Java Cryptography Extension (IBMJCE) Java Cryptography Extension in Java 2 Platform Standard Edition, Hardware Cryptography (IBMJCECCA) Java Secure Sockets Extension (IBMJSSE) Java Certification Path (CertPath) Java Authentication and Authorization Service (JAAS) Java Generic Security Services (JGSS) SAF interfaces 29 SMF API There are existing C API for SMF This API can be wrapped via JNI You can use this API to write SMF records that write CPU time on a user level instead on application level for accounting reasons You can also use it for writing data concerning access violations Now also available as new Java API on Alphaworks for evaluation (together with new Features like DFSORT, Job management, z/os Logstreams)
15 JNI Accessing C, C++, PL/1, Cobol C/C++ PL/1 Cobol Write Java Code Compile Java code with javac.exe Java Java Java C/C++: Run javah.exe *.h is generated JNI JNI JNI Write native code, compile it and link it into a shared library C *.so PL/1 *.so Cobol *.so You can also call explicitly a JVM From C/C++, Cobol and PL/1! Note: JNI is a wonderful thing, but treat it with care! It might be dangerous to your JVM 31 Assembler access from Java Java source code 2) Run javah C header file 1) Compile with javac 3) Develop your C source code C source code Assembler source code 4) Compile as dll 5) Compile as dll C *.o Assembler *.o 6) Link object files into dll Java *.class file 7) Run your Java appl. lib*.so dll Reference: IBM Redbook SG (Java Stand-alone Applications on z/os, Volume I
16 Agenda Java runtime environments on z/os Java SDK 5 and 6 Java System Resource Integration Java Backend Integration Java development for z/os 33 Sample of a local connection z/os WebSphere Application Server RACF RRS Server A RA EIS/DB memory to memory Stand-alone Java application RA 34 16
17 Attributes of a local connection Performance Is good since there is no network delay Availability Is good as long as Java app and the target EIS/DB are both available Scalability Is available only by adding additional servers Security Is able to use the thread identity or RUNAS value as the connection identity Transactionality 2PC is supported when all resource managers are RRS enabled 35 Sample of a remote connection z/os WebSphere Application Server Stand-alone Java application RACF RRS Server A RA RA RA TCP/IP z/os Connector EIS/DB memory to memory RACF RRS 36 17
18 Attributes of a remote connection Performance Can be adversely affected by any network delay Availability The restarts are faster, less (failed) components to restart If multiple LPARs are used, better availability Scalability Is easier since options like using Sysplex Distributor are available Security Does not offer as many options for connection identities Transactionality Can be limited in circumstances when transactions span multiple LPARs Recovery of in-doubt LUWs can become complex 37 Agenda Java runtime environments on z/os Java SDK 5 and 6 Java System Resource Integration Java Backend Integration Java development for z/os 38 18
19 How to develop Java applications for the mainframe This is a picture people often associate with the mainframe:... But it is much easier! Eclipse as an IDE can be easily used for Mainframe Java development 39 Development tools for Java Batch: 1) Eclipse USS JZOS address space *.class files ANT script Java z/os development cycle: 1. Local compile on workstation 2. Build *.jar file of all Java classes 3. Upload *.jar file via FTP 4. Upload JCL via FTP 5. Submit the Job via FTP 6. Retrieve Output via FTP 7. Debug the application JVM JZOS Batch launcher JCL JES Sysout z/os 40 19
20 Development tools for Java Batch: 2) RDz RDz and J2EE development: RDz is put on top of Rational Application Developer Integrated WebSphere Application Server test environment Remote deployment of applications Wizards for EJB creation EJB Test client 41 Summary: For which Java applications does a mainframe fit? Batch is still one of the mainframes biggest strengths The mainframe was designed for batch (punch cards) The mainframe has the longest experience in the batch environment Special facilities in z/os allow a huge complex job management for batch jobs (JES, SDSF,...) Java inherits these functionalities Business critical Java based servers that need: High availability (99,999%) Best security Java applications which use lots of transactions Data proximity 42 20
21 Questions? 43 21
Berlin Mainframe Summit. Java on z/os. 2006 IBM Corporation
Java on z/os Martina Schmidt Agenda Berlin Mainframe Summit About the mainframe Java runtime environments under z/os For which applications should I use a mainframe? Java on z/os cost and performance Java
AD04 - Batch Modernization Strategies for Mainframe Environments
AD04 - Modernization Strategies for Mainframe Environments Alex Louwe Kooijmans Solution Architect Financial Services CoE E-mail: [email protected] Notices This information was developed for products and
Java Stand-alone Applications on z/os
Front cover Java Stand-alone Applications on z/os Volume 1 Setting up an environment for managing Java programs on z/os Building, deploying, running, and debugging applications Analyzing application performance
[RUNNING OPEN SOURCE ETL ON A MAINFRAME]
2011 JPMorgan Chase ROBERT ZWINK, VP Implementation Services, Chief Development Office [RUNNING OPEN SOURCE ETL ON A MAINFRAME] Pentaho is an open source framework written in Java which includes a full
WebSphere Application Server on z/os
WebSphere Application Server on z/os Selita Faller Technical Presales Specialist IBM System z [email protected] WebSphere Application Server J2EE Application Model Komponenten Fokus der Anwendungsentwickler,
Version 14.0. Overview. Business value
PRODUCT SHEET CA Datacom Server CA Datacom Server Version 14.0 CA Datacom Server provides web applications and other distributed applications with open access to CA Datacom /DB Version 14.0 data by providing
Batch modernization on z/os An overview : Part 1
Batch modernization on z/os An overview : Part 1 14 December 2011 GSE Belgium z/os workgroup De Smet Hendrik IT architect zenterprise Trademarks This presentation contains trade-marked IBM products and
New Ways of Running Batch Applications on z/os
Front cover New Ways of Running Batch Applications on z/os Volume 1 CICS Transaction Server Technology overview Application design considerations Example Daniel Millwood Alex Louwe Kooijmans Elsie Ramos
Flexible Decision Automation for Your zenterprise with Business Rules and Events
Front cover Flexible Decision Automation for Your zenterprise with Business Rules and Events Understand the benefits of operational decision management Build dynamic solutions with business events and
Take full advantage of IBM s IDEs for end- to- end mobile development
Take full advantage of IBM s IDEs for end- to- end mobile development ABSTRACT Mobile development with Rational Application Developer 8.5, Rational Software Architect 8.5, Rational Developer for zenterprise
CA Chorus for Security and Compliance Management
CA Chorus for Security and Compliance Management Site Preparation Guide Version 03.0.00, Fifth Edition This Documentation, which includes embedded help systems and electronically distributed materials,
Tool - 1: Health Center
Tool - 1: Health Center Joseph Amrith Raj http://facebook.com/webspherelibrary 2 Tool - 1: Health Center Table of Contents WebSphere Application Server Troubleshooting... Error! Bookmark not defined. About
z/os Curriculum Job Control Language (JCL) Curriculum JES Curriculum WebSphere Curriculum TSO/ISPF for z/os Curriculum
A relação de cursos de mainfame a seguir representa mais de 1.000 horas de treinamento e-learning, fornecendo uma abordagem ampla e atual sobre o assunto. z/os Curriculum z/os 1.13 Series o z/os Concepts
Tuning WebSphere Application Server ND 7.0. Royal Cyber Inc.
Tuning WebSphere Application Server ND 7.0 Royal Cyber Inc. JVM related problems Application server stops responding Server crash Hung process Out of memory condition Performance degradation Check if the
Introduction to WebSphere Administration
PH073-Williamson.book Page 1 Thursday, June 17, 2004 3:53 PM C H A P T E R 1 Introduction to WebSphere Administration T his book continues the series on WebSphere Application Server Version 5 by focusing
CA TPX Session Management r5.3
PRODUCT SHEET CA TPX Session Management CA TPX Session Management r5.3 CA TPX Session Management (CA TPX) helps you manage user menus for accessing VTAM applications on the mainframe while offering end
Gothenburg 2015. Mainframe and Continuous Integration. Jan Marek Jan.Marek@ca. com. CA Technologies. Session S610
Jan Marek Jan.Marek@ca. com CA Technologies Session S610 Mainframe and Continuous Integration Agenda Introduce continuous integration concept What problem we were facing Overview of the solution Examples
DevOps: Multiplatform Application Deployment
DevOps: Multiplatform Application Deployment Insert Custom Session QR if Desired Rosalind Radcliffe Distinguished Engineer Chief Architect for DevOps and CLM IBM Academy of Technology [email protected]
Continuous Integration on System z
Continuous Integration on System z A Proof of Concept at Generali Deutschland Informatik Services GmbH Enterprise Modernization GSE Frankfurt, 14th October 2013 Markus Holzem, GDIS-AS mailto: [email protected]
Getting Started With WebSphere Liberty Profile on z/os
Getting Started With WebSphere Liberty Profile on z/os David Follis IBM August 12, 2013 Session Number 13597 Trademarks The following are trademarks of the International Business Machines Corporation in
Mobile Application Languages XML, Java, J2ME and JavaCard Lesson 04 Java
Mobile Application Languages XML, Java, J2ME and JavaCard Lesson 04 Java Oxford University Press 2007. All rights reserved. 1 C and C++ C and C++ with in-line-assembly, Visual Basic, and Visual C++ the
CA JCLCheck Workload Automation
PRODUCT SHEET CA JCLCheck Workload Automation CA JCLCheck Workload Automation CA JCLCheck Workload Automation (CA JCLCheck WA) validates z/os JCL before it is submitted for execution. CA JCLCheck WA helps
Getting Started with WebSphere Batch
Getting Started with WebSphere Batch (a.k.a. Compute Grid) on WAS V8.5 for z/os John Hutchinson Mike Loos IBM March, 2014, Anaheim Session Number 14692 WebSphere Application Server on System Z Session
CA Top Secret r15 for z/os
PRODUCT SHEET: CA TOP SECRET FOR z/os we can CA Top Secret r15 for z/os CA Top Secret for z/os (CA Top Secret ) provides innovative, comprehensive security for your business transaction environments, including
How To Use Java On An Ipa 2.2.2 (Jspa) With A Microsoft Powerbook (Jempa) With An Ipad 2.3.2 And A Microos 2.5 (Microos)
Java Monitoring and Diagnostic Tooling Iris Baron IBM Java JIT on System Z [email protected] Session ID: 16182 Insert Custom Session QR if Desired. Java Road Map Java 7.0 Language Updates Java 6.0 SE 5.0
IBM CICS Transaction Gateway for Multiplatforms, Version 7.0
Delivers highly flexible, security-rich and scalable SOA access to CICS applications IBM Multiplatforms, Version 7.0 Highlights Connects WebSphere SOA Introduces real-time monitoring Foundation server
How To Run A Hybrid Batch Processing Job On An Z/Os V1.13 V1 (V1) V1-R13 (V2) V2.1 (R13) V3.1.1
Co:Z Load Balancer on the zenterprise June 22, 2012 http://dovetail.com [email protected] Copyright 2012 Dovetailed Technologies, LLC Slide 1 Agenda zenterprise Environment Hybrid Batch Processing Overview
Using jvmstat and visualgc to Solve Memory Management Problems
Using jvmstat and visualgc to Solve Memory Management Problems java.sun.com/javaone/sf 1 Wally Wedel Sun Software Services Brian Doherty Sun Microsystems, Inc. Analyze JVM Machine Memory Management Problems
Chapter 3. Hardware and software requirements
Chapter 3. Hardware and software requirements The following sections provide specific information about the memory, software, and hardware requirements for installing IBM Tivoli Monitoring. This section
Splunk/Ironstream and z/os IT Ops
Copyright 2015 Splunk Inc. Splunk/Ironstream and z/os IT Ops John Reda VP Customer Experience Syncsort Incorporated Disclaimer During the course of this presentaion, we may make forward looking statements
Utility Mainframe System Administration Training Curriculum
Utility Mainframe System Administration Training Curriculum MVS SYSTEM ADMINISTRATION MVS SYSTEM ADMINISTRATION- LEVEL 1 TO 1.5 Name of the Module Common for All Administration LSO TSO/ISPF JCL & UTILITIES
GETTING STARTED GUIDE
GETTING STARTED GUIDE This guide helps you to get up and running with Verastream Bridge Integrator. After you read this guide you should be able to: CONTENTS What do you get when you install Verastream
Field Developed Solution Catalog. Version 7.0
Table of Contents OVERVIEW... 1 SUMMARY OF CHANGES... 2 ENTERPRISE SERVER ( ES ) FDS... 3 ES FDS, including hours for Customer Specific Configuration Assistance... 3 ENTERPRISE ANALYZER ( EA ) FDS... 9
zenterprise The Ideal Platform For Smarter Computing Developing Hybrid Applications For zenterprise
zenterprise The Ideal Platform For Smarter Computing Developing Hybrid Applications For zenterprise Smarter Computing Is Redefining The Data Center Consolidate Infrastructure Optimize to data center Eliminate
S609. RDz and Source Control Management Systems
S609. RDz and Source Control Management Systems Michael Erichsen [email protected] www.xact.dk Agenda Source Control Management (SCM) What it does Some product examples Integrating RDz with SCM
TITLE: Enhance ESB and BPM solutions with complex data transformation and connectivity for System z
TITLE: Enhance ESB and BPM solutions with complex data transformation and connectivity for System z HOST: Hi, and welcome to the Did you say Mainframe? podcast series. This is where we regularly interview
WebSphere Server Administration Course
WebSphere Server Administration Course Chapter 1. Java EE and WebSphere Overview Goals of Enterprise Applications What is Java? What is Java EE? The Java EE Specifications Role of Application Server What
WebSphere Architect (Performance and Monitoring) 2011 IBM Corporation
Track Name: Application Infrastructure Topic : WebSphere Application Server Top 10 Performance Tuning Recommendations. Presenter Name : Vishal A Charegaonkar WebSphere Architect (Performance and Monitoring)
IBM WebSphere Server Administration
IBM WebSphere Server Administration This course teaches the administration and deployment of web applications in the IBM WebSphere Application Server. Duration 24 hours Course Objectives Upon completion
Getting Started with WebSphere Batch (a.k.a. Compute Grid) on WAS V8.5 for z/os
Getting Started with WebSphere Batch (a.k.a. Compute Grid) on WAS V8.5 for z/os John Hutchinson IBM August, 2013, Boston Session Number 13598 WebSphere Application Server on z/os Sessions in Boston Day
Garbage Collection in the Java HotSpot Virtual Machine
http://www.devx.com Printed from http://www.devx.com/java/article/21977/1954 Garbage Collection in the Java HotSpot Virtual Machine Gain a better understanding of how garbage collection in the Java HotSpot
How to use PDFlib products with PHP
How to use PDFlib products with PHP Last change: July 13, 2011 Latest PDFlib version covered in this document: 8.0.3 Latest version of this document available at: www.pdflib.com/developer/technical-documentation
File Manager base component
Providing flexible, easy-to-use application development tools designed to enhance file processing IBM File Manager for z/os, V13.1 Figure 1: File Manager environment Highlights Supports development and
IBM SDK, Java Technology Edition Version 1. IBM JVM messages IBM
IBM SDK, Java Technology Edition Version 1 IBM JVM messages IBM IBM SDK, Java Technology Edition Version 1 IBM JVM messages IBM Note Before you use this information and the product it supports, read the
Understanding class paths in Java EE projects with Rational Application Developer Version 8.0
Understanding class paths in Java EE projects with Rational Application Developer Version 8.0 by Neeraj Agrawal, IBM This article describes a variety of class path scenarios for Java EE 1.4 projects and
CS 209 Programming in Java #1
CS 209 Programming in Java #1 Introduction Spring, 2006 Instructor: J.G. Neal 1 Topics CS 209 Target Audience CS 209 Course Goals CS 209 Syllabus - See handout Java Features, History, Environment Java
Why is CICS Still Alive? Dr Geoff Sharman Visiting Professor in Computer Science Birkbeck College
Why is CICS Still Alive? Dr Geoff Sharman Visiting Professor in Computer Science Birkbeck College Agenda Middleware the hidden part of IT CICS (Customer Information Control System) track record as a middleware
Administering batch environments
Administering batch environments, Version 8.5 Administering batch environments SA32-1093-00 Note Before using this information, be sure to read the general information under Notices on page 261. Compilation
CICS Transactions Measurement with no Pain
CICS Transactions Measurement with no Pain Prepared by Luiz Eduardo Gazola 4bears - Optimize Software, Brazil December 6 10, 2010 Orlando, Florida USA This paper presents a new approach for measuring CICS
Practical Performance Understanding the Performance of Your Application
Neil Masson IBM Java Service Technical Lead 25 th September 2012 Practical Performance Understanding the Performance of Your Application 1 WebSphere User Group: Practical Performance Understand the Performance
Deploying PGP Encryption and Compression for z/os Batch Data Protection to (FIPS-140) Compliance
Deploying PGP Encryption and Compression for z/os Batch Data Protection to (FIPS-140) Compliance Patrick Townsend Software Diversified Services/Townsend Security August 9, 2011 Session Number 9347 PGP
What s Cool in the SAP JVM (CON3243)
What s Cool in the SAP JVM (CON3243) Volker Simonis, SAP SE September, 2014 Public Agenda SAP JVM Supportability SAP JVM Profiler SAP JVM Debugger 2014 SAP SE. All rights reserved. Public 2 SAP JVM SAP
Developing Web Services with Eclipse and Open Source. Claire Rogers Developer Resources and Partner Enablement, HP February, 2004
Developing Web Services with Eclipse and Open Source Claire Rogers Developer Resources and Partner Enablement, HP February, 2004 Introduction! Many companies investigating the use of web services! Cost
What s Happening to the Mainframe? Mobile? Social? Cloud? Big Data?
December, 2014 What s Happening to the Mainframe? Mobile? Social? Cloud? Big Data? Glenn Anderson IBM Lab Services and Training Today s mainframe is a hybrid system z/os Linux on Sys z DB2 Analytics Accelerator
000-420. IBM InfoSphere MDM Server v9.0. Version: Demo. Page <<1/11>>
000-420 IBM InfoSphere MDM Server v9.0 Version: Demo Page 1. As part of a maintenance team for an InfoSphere MDM Server implementation, you are investigating the "EndDate must be after StartDate"
IBM Proof of Technology Discovering business application services, featuring IBM WebSphere Application Server Network Deployment V8
IBM Proof of Technology Discovering business application services, featuring IBM WebSphere Application Server Network Deployment V8 Proof of Technology Introduction Welcome and Introductions Agenda Service
Debug 101-Using ISA Tools for Apps in WebSphere Application Server z/os
Debug 101-Using ISA Tools for Apps in WebSphere Application Server z/os Session 16509 Mike Stephen - [email protected] Joran Siu [email protected] IBM Insert Custom Session QR if Desired. Disclaimer
CA Workload Automation Agents Operating System, ERP, Database, Application Services and Web Services
PRODUCT SHEET CA Workload Automation Agents CA Workload Automation Agents Operating System, ERP, Database, Application Services and Web Services CA Workload Automation Agents extend the automation capabilities
LES LOGICIELS MAINFRAME
LES LOGICIELS MAINFRAME PrintSubSystem AFP printing on network printers and AFP2PDF conversion Enterprise Print Manager The OS/390 software printing solution AFP Conversion Module PDF makes mainframe data
System Structures. Services Interface Structure
System Structures Services Interface Structure Operating system services (1) Operating system services (2) Functions that are helpful to the user User interface Command line interpreter Batch interface
WebSphere Performance Monitoring & Tuning For Webtop Version 5.3 on WebSphere 5.1.x
Frequently Asked Questions WebSphere Performance Monitoring & Tuning For Webtop Version 5.3 on WebSphere 5.1.x FAQ Version 1.0 External FAQ1. Q. How do I monitor Webtop performance in WebSphere? 1 Enabling
Exam Name: IBM InfoSphere MDM Server v9.0
Vendor: IBM Exam Code: 000-420 Exam Name: IBM InfoSphere MDM Server v9.0 Version: DEMO 1. As part of a maintenance team for an InfoSphere MDM Server implementation, you are investigating the "EndDate must
Building Applications Using Micro Focus COBOL
Building Applications Using Micro Focus COBOL Abstract If you look through the Micro Focus COBOL documentation, you will see many different executable file types referenced: int, gnt, exe, dll and others.
IBM Tivoli Composite Application Manager for WebSphere
Meet the challenges of managing composite applications IBM Tivoli Composite Application Manager for WebSphere Highlights Simplify management throughout the life cycle of complex IBM WebSphere-based J2EE
PKI Services: The Best Kept Secret in z/os
PKI Services: The Best Kept Secret in z/os Wai Choi, CISSP IBM Corporation August 7th, 2014 Session: 15773 Trademarks The following are trademarks of the International Business Machines Corporation in
SupportPac CB12. General Insurance Application (GENAPP) for IBM CICS Transaction Server
SupportPac CB12 General Insurance Application (GENAPP) for IBM CICS Transaction Server SupportPac CB12 General Insurance Application (GENAPP) for IBM CICS Transaction Server ii General Insurance Application
Introduction to Virtual Machines
Introduction to Virtual Machines Introduction Abstraction and interfaces Virtualization Computer system architecture Process virtual machines System virtual machines 1 Abstraction Mechanism to manage complexity
ARM-BASED PERFORMANCE MONITORING FOR THE ECLIPSE PLATFORM
ARM-BASED PERFORMANCE MONITORING FOR THE ECLIPSE PLATFORM Ashish Patel, Lead Eclipse Committer for ARM, IBM Corporation Oliver E. Cole, President, OC Systems, Inc. The Eclipse Test and Performance Tools
Rocket AS v6.3. Benefits of upgrading
Rocket AS v6.3 Benefits of upgrading What is Rocket AS? Rocket AS for IBM System z provides query, reporting, data visualization and rapid application development for System z data including DB2. With
IBM Software Group. Lotus Domino 6.5 Server Enablement
IBM Software Group Lotus Domino 6.5 Server Enablement Agenda Delivery Strategy Themes Domino 6.5 Server Domino 6.0 SmartUpgrade Questions IBM Lotus Notes/Domino Delivery Strategy 6.0.x MRs every 4 months
Cross Platform Software Release Capabilities
Cross Platform Software Release Capabilities Larry Aube ClearPath Portfolio Management ClearPath Briefings 2015 Grove/UK Agenda Data Exchange ClearPath Integration Services ClearPath IDEs 2015 Unisys Corporation.
IBM Tivoli Composite Application Manager for WebSphere
Meet the challenges of managing composite applications IBM Tivoli Composite Application Manager for WebSphere Highlights Simplify management throughout the Create reports that deliver insight into life
A Beginners Guide to Fusion Middleware
A Beginners Guide to Fusion Middleware Hans Forbrich Forbrich Computer Consulting Ltd. Congratulations of Brazil for your OTN Tour! Thank you to our interpreter And Thank You for inviting me A Beginners
Topics. Introduction. Java History CS 146. Introduction to Programming and Algorithms Module 1. Module Objectives
Introduction to Programming and Algorithms Module 1 CS 146 Sam Houston State University Dr. Tim McGuire Module Objectives To understand: the necessity of programming, differences between hardware and software,
Micro Focus Mainframe Solutions There s a future in the present
Micro Focus Mainframe Solutions There s a future in the present Kevin Brearley Micro Focus (August 6th 2012 ) > Micro Focus Mainframe Solution Modernization A key strategic direction COST QUALITY RISK
IBM Technology for Java Virtual Machine in IBM i5/os
Front cover IBM Technology for Java Virtual Machine in IBM i5/os Most information about 32-bit JVM applies to all IBM server platforms Comprehensive book on new 32-bit JVM in i5/os Run WebSphere Application
JBoss Seam Performance and Scalability on Dell PowerEdge 1855 Blade Servers
JBoss Seam Performance and Scalability on Dell PowerEdge 1855 Blade Servers Dave Jaffe, PhD, Dell Inc. Michael Yuan, PhD, JBoss / RedHat June 14th, 2006 JBoss Inc. 2006 About us Dave Jaffe Works for Dell
Course Description. Course Audience. Course Outline. Course Page - Page 1 of 5
Course Page - Page 1 of 5 WebSphere Application Server 7.0 Administration on Windows BSP-1700 Length: 5 days Price: $ 2,895.00 Course Description This course teaches the basics of the administration and
DSZ-3732 Secure Mainframe Development in the Cloud has Arrived
DSZ-3732 Secure Mainframe Development in the Cloud has Arrived Stan King CTO, Information Technology Company [email protected] Chris Trobridge, Product Manager, IBM [email protected] 2014 IBM Corporation
CA Workload Automation Agents for Mainframe-Hosted Implementations
PRODUCT SHEET CA Workload Automation Agents CA Workload Automation Agents for Mainframe-Hosted Operating Systems, ERP, Database, Application Services and Web Services CA Workload Automation Agents are
Clearing the Fog: Understanding z Systems Cloud Technology Options
Clearing the Fog: Understanding z Systems Cloud Technology Options Glenn Anderson IBM Lab Services and Training NewEra z Exchange March, 2016 Copyright IBM Corporation 2016. Technical University/Symposia
Blackboard Learn TM, Release 9 Technology Architecture. John Fontaine
Blackboard Learn TM, Release 9 Technology Architecture John Fontaine Overview Background Blackboard Learn Deployment Model and Architecture Setup and Installation Common Administrative Tasks Tuning Integrating
IMS Buzz - Mardi 10 Avril IMS Explorer for Dev Presentation & Demo
Isabelle Bruneel et Hélène Lyon IBM France IMS Buzz - Mardi 10 Avril IMS Explorer for Dev Presentation & Demo Agenda IMS Explorer Overview DBD and PSB Graphical View IMS Explorer connecting to ODBM IMS
IBM DevOps for Enterprise Systems DevOps for z Systems Is Essential To Deliver Real Business Outcomes
DevOps for z Systems Is Essential To Deliver Real Business Outcomes New IBM DevOps capabilities help enterprises deliver significant improvements to transform your software delivery capability 1 Secure
VIT University Vellore-632 014, Tamil Nadu, India www.vit.ac.in
VIT University Vellore-632 014, Tamil Nadu, India www.vit.ac.in Summer Training & Internship Program on Private Cloud Application Development using IBM Mainframes 2 nd -14 th June 2014 Organized by TIFAC
Sharing Secrets Using Encryption Facility
Sharing Secrets Using Encryption Facility Eysha S. Powers IBM Corporation Insert Custom Session QR if Desired Tuesday, August 11, 2015: 6:00pm 7:00pm Session Number 17624 Cryptography is used in a variety
Micro Focus Server Enterprise Edition
product white paper review Micro Focus Server Enterprise Edition Micro Focus Server Enterprise Edition is a deployment environment for hosting applications that have been migrated from mainframes. It provides
IBM INFORMATION MANAGEMENT SYSTEMS (IMS ) MIGRATION AND MODERNIZATION - CONVERSION OF HIERARCHICAL DL/1 STRUCTURES TO RDBMS
IBM INFORMATION MANAGEMENT SYSTEMS (IMS ) MIGRATION AND MODERNIZATION - CONVERSION OF HIERARCHICAL DL/1 STRUCTURES TO RDBMS Leverage the technology and operational advantages inherent within the modern
WebSphere Application Server V7: Deploying Applications
Chapter 15 of WebSphere Application Server V7 Administration and Configuration Guide, SG24-7615 WebSphere Application Server V7: Deploying Applications In Chapter 14, Packaging Applicatons for Deployment,
BIRT Document Transform
BIRT Document Transform BIRT Document Transform is the industry leader in enterprise-class, high-volume document transformation. It transforms and repurposes high-volume documents and print streams such
IBM s Information Management System (IMS) is still one of the most popular OnLine Transaction Processing (OLTP) systems in the world with more than
IBM s Information Management System (IMS) is still one of the most popular OnLine Transaction Processing (OLTP) systems in the world with more than 50 billion transactions running through IMS databases
Jonathan Worthington Scarborough Linux User Group
Jonathan Worthington Scarborough Linux User Group Introduction What does a Virtual Machine do? Hides away the details of the hardware platform and operating system. Defines a common set of instructions.
Sample copy. Introduction To WebLogic Server Property of Web 10.3 Age Solutions Inc.
Introduction To WebLogic Server Property of Web 10.3 Age Solutions Inc. Objectives At the end of this chapter, participants should be able to: Understand basic WebLogic Server architecture Understand the
BIRT Application and BIRT Report Deployment Functional Specification
Functional Specification Version 1: October 6, 2005 Abstract This document describes how the user will deploy a BIRT Application and BIRT reports to the Application Server. Document Revisions Version Date
