Using IBM Rational Business Developer wizards to create a Web application

Size: px
Start display at page:

Download "Using IBM Rational Business Developer wizards to create a Web application"

Transcription

1 Using IBM Rational Business Developer wizards to create a Web application Skill Level: Intermediate Reginaldo Barosa (rbarosa@us.ibm.com) Executive IT Specialist IBM 03 Mar 2008 Updated 05 Aug 2008 This tutorial shows you the steps to use the IBM Rational Business Developer Data Application Access wizard to create a Web application that accesses a database (here, the STAFF table in DB2). Section 1. Before you start Learn what to expect from this tutorial and how to get the most out of it. About this series Walk through this scenario and others online as part of the Enterprise Modernization Sandbox for System z. About this tutorial This tutorial will take you through the steps to create a Web application using JavaServer Faces (JSF) and EGL wizards. The EGL Data Access Application wizard gives you a convenient way to create an EGL logic that lets you maintain a specific table in a relational database. We will use DB2 as the relational data base and the STAFF table. Note that this table could be located in another location as well on the System z. For the EGL Page 1 of 35

2 wizards, this makes no difference Objectives You will learn how to: Create an EGL data access application using the wizards. Generate Java code from EGL. Work with the Web Pages generated. Deploy and test the application using WebSphere Application Server. Prerequisites Be familiar with basic web development concepts. Section 2. Getting started Overview of software tools We will use IBM DB2 as the relational database, along with the STAFF table. This table could be located in another location as well on a mainframe. For the Rational Business Developer wizards, this makes no difference. You will use Rational Business Developer installed on top of IBM Rational Developer for System z, but this tutorial will also work using Rational Business Developer installed on top of IBM Rational Application Developer or IBM Rational Software Architect. Figure 1 shows the Rational Business Developer Data Access Application wizard architecture. Figure 1. Data Access Application architecture Page 2 of 35

3 Note about EGL: The EGL can create a simple data access application based on a connection to a database. The resulting application contains data parts, logic parts, and (optionally) Web pages based on one or more database tables. For each table that you select, the EGL Data Access Application wizard creates these parts, which you can put either into a new project or into one or more existing projects: Data parts based on the table An SQLRecord part that represents the table DataItem parts that represent the columns in the table Data access functions that perform operations on the database, such as adding, retrieving, and deleting records. You can choose to put these data access functions in libraries or in services. Also, you have the option of creating a Web interface for the data access application. If you choose to create a Web interface, the wizard creates these additional files and parts: A set of JSF handler parts that you later generate into a set of parts that run under Java Server Faces (JSF). A set of Java Server Pages (JSP) files that provide the following Web pages: A Selection Condition page, which accepts selection criteria from the user A List page, which displays multiple rows based on the user's criteria A Create Detail page, which lets the user display or insert one row Page 3 of 35

4 A Detail page, which lets the user display, update, or delete one row Before you begin creating the application, make two decisions about where the new files and parts will go: You can put all the new files and parts into one project, or you can put the files and parts into different projects, based on the kind of file and part. Data parts, logic parts, and JSFHandler parts (with the associated Web pages) can all go into separate projects. You can put files and parts into a new project or into an existing project. If you choose to put parts into different projects, some can go into an existing project and others can go into a new project Overview of development tasks To complete this tutorial, you will perform the following tasks: Create an EGL data access application using the wizards Generate Java code from EGL Verify the generated Web pages Deploy and test the application using IBM WebSphere Application Server Section 3. Create an EGL data access application Important: This tutorial assumes that you have already started Rational Developer for System z. Note that you are running under VMWARE, which may slow performance. Be sure to use the correct workspace for the tutorial. You will need to switch to another workspace for this tutorial, because it has already been customized to save you time. 1. To switch to the workspace that has been customized for this tutorial and Rational Business Developer usage, click File and select Switch Workspace, as shown in Figure 2. Figure 2. Switch to customized workspace Page 4 of 35

5 2. When the Workspace Launcher dialog displays, type C:\Workspaces\RBD (as shown in Figure 3) and click OK. Be patient, because this operation will take longer than usual under VMWARE. It may take one or more minutes. Figure 3. Select the workspace 3. The workspace switches. If the Welcome page displays, close it by clicking the, as shown in Figure 4. Page 5 of 35

6 Figure 4. Close the Welcome page Set up a new EGL Web project by using the Web perspective 1. Open the New Project wizard, as shown in Figure 5: A. Click File > New > Project. B. Type egl in place of the words type filter text. C. Select EGL Web Project. D. Click Next. Figure 5. Select a wizard 2. Specify the EGL Web Project options, as shown in Figure 6: A. Type LAB4_Web as the Project name. B. Select Web Project and click Next. Figure 6. Creating an EGL Web project Page 6 of 35

7 3. On the New EGL Web project dialog: A. Ensure that WebSphere Application Server v6.1 is selected as the Target Runtime B. Ensure that Create new project build descriptor is selected C. Click Show Advanced Settings and click Next, as seen in Figure 7. Figure 7. Creating the EGL Web project Be sure that the EAR project name is LAB4_WebEAR, that Create an Page 7 of 35

8 EGL service deployment descriptor is selected, and click Next, as shown in Figure 8. Figure 8. Create the EAR file 5. Select EGL Support with JSF Components 7.0, and click Finish, as shown in Figure 9. Figure 9. Select the Project Facet Page 8 of 35

9 Be patient, because it will take a few minutes. Remember that you are running under VMWARE, which will require extra overhead resources. 6. If the Open Associate Perspective dialog appears, click No. You do not need the J2EE (Java 2 Platform, Enterprise Edition) perspective, but you need the Web perspective. Work with the Data Access wizard 1. Select File > New > Other. A dialog displays for you to select a wizard. 2. Type egl, and select EGL Data Access Application, as shown in Figure Click Next. Figure 10. Select a wizard Page 9 of 35

10 The EGL Data Access Application dialog displays. This is where you create an EGL application that will be able to Create, Read, Update, and Delete (CRUD) rows in one DB2 table. 4. First, you need to specify which table you will be using. A. In the Project Name field, use the drop-down list to select LAB4_Web, as shown in Figure 9. B. Because you want to create the Web pages automatically, make sure that Create web pages is selected. C. Because you need to create a connection to your database, click New. Figure 11. Define project settings Page 10 of 35

11 You will use DB2, but Rational Business Developer allows you to use other databases (like Oracle, SQL Server, and so on). You will access a table that is defined in your workstation, but could use a table defined in another platform, such as IBM z/os. 5. Specify the new connection parameters, as shown in Figure 12. A. Expand DB2 UDB and select v8.2. B. Use the default values for the database SAMPLE. C. Type db2admin as both the User ID and Password. D. To see if you have access to this database, click Test Connection. Figure 12. Specify connection parameters Page 11 of 35

12 6. You must receive a message that the connection is successful, as shown in Figure 13. After that, click OK. If you have errors, it could be because you have typed an incorrect ID or password. Figure 13. Success message Page 12 of 35

13 7. Click Finish to create the database connection. 8. When a connection is made to the database, a list of all database tables displays, because you did not create any filter. If your database has a lot of tables, a filter becomes necessary. A. Scroll down to Table Name and select DB2ADMIN.STAFF (as shown in Figure 14), because this is the table that you want to generate the EGL CRUD (Create, Replace, Update, and Delete) application. B. Be sure that Create Web pages is selected (because you want to create Web pages automatically), and click Next. Note that Rational Business Developer allows you to select more than one table. Figure 14. Define project settings Page 13 of 35

14 The Define the Fields page has a tab for each table that you selected on the previous page. Because you have only one table (STAFF), you will have only one tab. On this page, you select the key fields for the STAFF table and which fields you want to be able to search. 9. Select ID as the key field and NAME as the UI field, as shown in Figure 15. The Web page will have the field NAME as the search element. 10. Click Next. Figure 15. Define the fields Page 14 of 35

15 11. Accept the defaults for field names and click Next, as shown in Figure 16. Figure 16. Configure the fields Page 15 of 35

16 12. Define project creation options, as shown in Figure 17. A. In the Default package name field, type sample as the name of the root package that will contain the new EGL parts. B. Under Data access method, select EGL Libraries (because you want to create library parts). Note that you could create service parts instead. C. Select Qualify table names with schema and then click Next. Figure 17. Specify project creation options Page 16 of 35

17 13. Expand Table and Field elements to see a summary of what is being created, as shown in Figure 18, and then click Finish. Figure 18. EGL Data Access application summary Page 17 of 35

18 14. If the Incomplete Deployment Settings dialog displays, click OK. 15. Using the Project Explorer view, expand LAB4_Web > EGLSource > sample.data, and double-click Staff.egl. You will see the EGL statements that map the DB2 table staff, as shown in Figure 19. Notice that the column attributes (smallint, integer, and so on) are not defined here, but they are pointing to another package named sample.primitivetypes.data, which you will see later. Figure 19. Mapping the Staff DB2 table Page 18 of 35

19 16. Expand sample.primitivetypes.data and double-click the DataDefinitions.egl file, as shown in Figure 20. This is the best way to define an EGL data item, because you can do so whenever you want to. If you change it here, all places where this item is in use will be changed. Figure 20. Data definitions code 17. Expand the sample.access package, double-click StaffLib.egl, and scroll down until you see the GetStaff function. You also may use the Outline view to locate the function easily (to do so, click the Outline tab), as shown in Figure 21. This is the function that you will use to do a SQL SELECT query on the table. This file is the EGL library that will be used to perform all database I/O operations. Figure 21. Code with GetStaff function Page 19 of 35

20 18. Using the editor, move the mouse to the get statement, right-click, and select SQL Statement > View, as shown in Figure 22 (you could also use Ctrl+Shift+V). Possible Errors If you have errors such as the following, it could be because you are not using the correct Rational Business Developer workspace that is pointing to the DB2 database: IWN.VAL.4594.e 0/0 Retrieve SQL failed because no connection was selected. Check the EGL SQL Database Connection Preference page. This is one way to fix this problem: Select Windows > Preferences > EGL > SQL Database Connections. Click New, and make a connection to a SAMPLE DB2 database. Figure 22. View get statement details Page 20 of 35

21 19. You should see the SQL SELECT that is being issued when get is executed, as shown in Figure 23. Note that the where statement is generated, because ID is known as a key column. 20. Click Validate. Figure 23. Select statement details Page 21 of 35

22 An SQL validation will be performed against the DB2 table. If you have errors, it could be that you have a bad connection or because the DB2 database is not started. What you have done so far The Data Access wizard created the following four sets of resources: Control Records that are used in the default Data Access Library SQL statements. Data Access Libraries that contain EGL data access statements (basic data access design patterns), which generate to SQL statements and routines, as shown previously. Data Access Records that are EGL records of type sqlrecord, which participate in the Java and SQL generation, thereby enabling you to write code at a high level of abstraction, as shown previously. EGL DataItems that are located in the DataDefinitions.egl file. This file contains default type definitions for each column in each imported table, as shown previously. 21. Click OK to dismiss the dialog, as shown in Figure 24. Figure 24. Validate SQL Statement Page 22 of 35

23 22. Do not make any changes, and close all opened files by pressing Ctrl+Shift+F4. Section 4. Generate the code At this point, you could debug the generated EGL code, but in this tutorial, you need to see it running, and you need to generate the Java code. 1. Use the wizard to generate the Java code: Using the Project Explorer view, right-click LAB4_Web and select Generate With Wizard, as shown in Figure 25. Figure 25. Starting to generate code 2. Verify that all parts are selected for generation, as shown in Figure 26, and then click Finish. You will accept all of the default Build Descriptors for this generation. Figure 26. Select all parts to generate Page 23 of 35

24 3. Review the generation results in the EGL Generation Results tab, as shown in Figure 27. Click each component on the left and ensure that you had no errors. Figure 27. Results What you have you done so far You created an EGL Web Project that will hold an application, which will in turn access a DB2 table. It will also have some pages on the Web. Using the EGL Data Access wizard, you created code that will work with the STAFF DB2 table defined on your computer (but this table could be in a remote location). The EGL code generated was: EGL Data Access Record that maps the STAFF DB2 table EGL Libraries that access the DB2 table (CREATE, READ, UPDATE and DELETE) EGL Data items that map the DB2 columns EGL DB2 Control Records and code. You generated Java code from the created EGL source. Page 24 of 35

25 4. Expand the Java Resources:src folder to see the generated Java code, as shown in Figure 28. Figure 28. Code in the Project Explorer view You are now ready to test the generated Java code. You are now ready to create a Web page that will invoke the generated code. Section 5. Verify the generated Web pages The wizard generates two JSF pages: stafflistpage and alldetailpage.jsp. Users can modify these as they wish. To make this tutorial as quick as possible, you will just see the generated code, without making any changes. Editing the stafflistpage page 1. Expand WebContent and double click stafflistpage.jsp, as shown in Figure 29. Figure 29. Details of STAFF List Page Page 25 of 35

26 2. With the cursor on the JSP, right-click and select Edit Page Code, as shown in Figure 28. This will edit the EGL code that will handle this page. Figure 30. Edit the code 3. Use the Outline view to locate the staffsearch function, as shown in Figure 31. This is the code that is executed when the Search button is clicked. It will invoke the Stafflib EGL Library and will execute the GetStaffList function. Page 26 of 35

27 Figure 31. Use the Outline view to get function details Editing the staffdetailpage page 1. Expand WebContent and double-click the staffdetailpage.jsp file, as shown in Figure 32. This is the page that will perform the CRUD actions. Figure 32. STAFF Details page 2. Press Ctrl + Shift + F4 to close all of the files being edited, and do not make any changes. Page 27 of 35

28 Section 6. Deploy and test the application by using WebSphere Application Server Before you deploy this code, you need to associate this project with the correct database being used, otherwise during the runtime the database connection will fail. This can be done by performing the following steps: 1. Right-click the project LAB4_web and select Properties. 2. When the page Properties for LAB4_Web page open, select EGL Runtime Data Source and, using the drop-down list, select the previously created SAMPLE1 connection, as seen in the Figure Click OK and Yes to update the EGL build options. Figure 33. Defining the EGL Runtime Data Source Regenerate the code since the build options were updated. 1. Right click LAB4_Web and select Generate. To deploy and test the application using WebSphere Application Server: 1. Expand WebContent, right-click stafflistpage.jsp, and select Run As > Run on Server, as shown in Figure 34. Again, because you are running under VMWARE, the start will take a few minutes. Figure 34. Starting the server Page 28 of 35

29 2. When the Run on Server dialog displays, define the server settings, as shown in Figure 35: A. Select WebSphere v6.1 Server. B. Select Set server as project default. C. Click Finish. Figure 35. Define a new server Page 29 of 35

30 Again, this operation may take a while running under VMWARE. The status of the operation is indicated on the console. When it has successfully completed, you will see a message that indicates Initialization successful. The Java code is then published, which should produce a static Web page, as shown in Figure 36. Figure 36. Static Web page 3. To search all names starting with the letter M (Figure 37): A. Use the drop-down to select like. B. Type M% (letter M plus percent sign). C. Click Search. Figure 37. Search for names starting with M Page 30 of 35

31 4. All names starting with M will be listed, as shown in Figure 38. Click 160. Figure 38. List search results The details page displays, as shown in Figure 39. Figure 39. Details page Page 31 of 35

32 5. Modify a field (for example, change YEARS from 7 to 12) and click Update. You will be prompted to confirm the update, as shown in Figure 40. Figure 40. Confirm the update Page 32 of 35

33 6. Click OK, and the Summary List page will show the updated field value (Figure 41). Figure 41. Update3 field value Feel free to edit and explore the generated assets. 7. Click Ctrl + Shift + F4 to close all pages. Page 33 of 35

34 8. Close Rational Developer for System z. You have completed this tutorial. Page 34 of 35

35 Resources Learn Visit the Rational software area on developerworks for technical resources and best practices for Rational Software Delivery Platform products. Explore Rational computer-based, Web-based, and instructor-led online courses. Hone your skills and learn more about Rational tools with these courses, which range from introductory to advanced. The courses on this catalog are available for purchase through computer-based training or Web-based training. Additionally, some "Getting Started" courses are available free of charge. Subscribe to the Rational Edge newsletter for articles on the concepts behind effective software development. Subscribe to the IBM developerworks newsletter, a weekly update on the best of developerworks tutorials, articles, downloads, community activities, webcasts and events. Browse the technology bookstore for books on these and other technical topics. Get products and technologies Download trial versions of IBM Rational software. Download these IBM product evaluation versions and get your hands on application development tools and middleware products from DB2, Lotus, Tivoli, and WebSphere. Discuss Participate in the discussion forum for this content. Check out developerworks blogs and get involved in the developerworks community. About the author Reginaldo Barosa Reginaldo W. Barosa is an IBM Executive IT Specialist. He provides sales support, helping customers with enterprise modernization solutions and development tools, such as Rational Developer for System z. Before joining IBM U.S. more than eight years ago, Reginaldo worked for 27 years for IBM Brazil. He has co-authored IBM Redbooks and has written two books, as well as other articles and tutorials for IBM developerworks. He holds a degree in electrical engineering from Instituto Maua de Tecnologia, Sao Paulo, Brazil Page 35 of 35

IBM Enterprise Modernization for System z: Wrap existing COBOL programs as Web Services with IBM Rational Developer for System z

IBM Enterprise Modernization for System z: Wrap existing COBOL programs as Web Services with IBM Rational Developer for System z IBM Enterprise Modernization for System z: Wrap existing COBOL programs as Web Services with IBM Rational Developer for System z Extend value of existing enterprise software assets Skill Level: Intermediate

More information

Enterprise Modernization for IBM System z:

Enterprise Modernization for IBM System z: Enterprise Modernization for IBM System z: Transform 3270 green screens to Web UI using Rational Host Access Transformation Services for Multiplatforms Extend a host application to the Web using System

More information

Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version and Eclipse

Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version and Eclipse Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version 1.1.0 and Eclipse Install, work with data perspectives, create connections, and create a project Skill Level: Intermediate

More information

Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version and Eclipse

Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version and Eclipse Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version 1.1.0 and Eclipse Install, work with data perspectives, create connections, and create a project Skill Level: Intermediate

More information

What's new in IBM Rational Build Forge Version 7.1

What's new in IBM Rational Build Forge Version 7.1 What's new in IBM Rational Build Forge Version 7.1 Features and support that help you automate or streamline software development tasks Skill Level: Intermediate Rational Staff, IBM Corporation 13 Jan

More information

Enterprise Generation Language (EGL) for IBM i operating system Create a web application using EGL and the Data Access Application Wizard

Enterprise Generation Language (EGL) for IBM i operating system Create a web application using EGL and the Data Access Application Wizard IBM Rational Business Developer for i for SOA Construction Enterprise Generation Language (EGL) for IBM i operating system Create a web application using EGL and the Data Access Application Wizard Student

More information

IBM Rational Software Development Conference IBM Rational Software. Presentation Agenda. Development Conference

IBM Rational Software Development Conference IBM Rational Software. Presentation Agenda. Development Conference IBM Rational Software Development Conference 2008 UML to EGL without writing code and deploy as Java or COBOL Reginaldo Barosa Executive IT Specialist, TechWorks Americas rbarosa@us.ibm.com Session 20036

More information

DB2 for z/os Stored Procedure support in Data Server Manager

DB2 for z/os Stored Procedure support in Data Server Manager DB2 for z/os Stored Procedure support in Data Server Manager This short tutorial walks you step-by-step, through a scenario where a DB2 for z/os application developer creates a query, explains and tunes

More information

IBM Rational Automation Framework for WebSphere. Guided Activity: Applying fix packs to nodes in a WebSphere Application Server cell

IBM Rational Automation Framework for WebSphere. Guided Activity: Applying fix packs to nodes in a WebSphere Application Server cell IBM Rational Automation Framework for WebSphere Guided Activity: Applying fix packs to nodes in a WebSphere Application Server cell Contacts: ataylor@atech.com IBM Corporation Level: Beginner January 2010

More information

Creating a SQL Service with IBM WebSphere Portlet Factory. Introduction to creating services from a relational database

Creating a SQL Service with IBM WebSphere Portlet Factory. Introduction to creating services from a relational database Creating a SQL Service with IBM WebSphere Portlet Factory May, 2009 Copyright International Business Machines Corporation 2009. All rights reserved. This article with the accompanying sample shows you

More information

Creating and Consuming Web Services using IBM Rational Business Developer Enterprise Generation Language (EGL)

Creating and Consuming Web Services using IBM Rational Business Developer Enterprise Generation Language (EGL) EGL Web Services 1 of 48 Creating and Consuming Web Services using IBM Rational Business Developer Enterprise Generation Language (EGL) By Claus Weiss Advisory Software Consultant IBM Corporation Skill

More information

IBM. Developing with IBM Rational Application Developer for WebSphere Software V6

IBM. Developing with IBM Rational Application Developer for WebSphere Software V6 IBM 000-255 Developing with IBM Rational Application Developer for WebSphere Software V6 Download Full Version : http://killexams.com/pass4sure/exam-detail/000-255 Answer: C QUESTION: 99 A developer is

More information

Provisioning WPF based WP Composite Applications to Expeditor

Provisioning WPF based WP Composite Applications to Expeditor Provisioning WPF based WP Composite Applications to Expeditor Copyright International Business Machines Corporation 2007. All rights reserved. Sample walk through #2 in a series of articles describing

More information

Rational Application Developer 7 Bootcamp

Rational Application Developer 7 Bootcamp Rational Application Developer 7 Bootcamp Length: 1 week Description: This course is an intensive weeklong course on developing Java and J2EE applications using Rational Application Developer. It covers

More information

Web-enable a 5250 application with the IBM WebFacing Tool

Web-enable a 5250 application with the IBM WebFacing Tool Web-enable a 5250 application with the IBM WebFacing Tool ii Web-enable a 5250 application with the IBM WebFacing Tool Contents Web-enable a 5250 application using the IBM WebFacing Tool......... 1 Introduction..............1

More information

IBM Rational Automation Framework for WebSphere. Guided Activity: Configuring security for WebSphere Application Server

IBM Rational Automation Framework for WebSphere. Guided Activity: Configuring security for WebSphere Application Server IBM Rational Automation Framework for WebSphere Guided Activity: Contacts: brauneis@us.ibm.com ataylor@atech.com IBM Corporation Level: Intermediate June 2009 Copyright 2009, IBM Corporation Page 2 of

More information

Develop a batch DB2 for z/os COBOL application using Rational Developer for System z

Develop a batch DB2 for z/os COBOL application using Rational Developer for System z Develop a batch DB2 for z/os COBOL application using Rational Developer for System z Make use of multiple Eclipse perspectives Skill Level: Intermediate Laurence England (englandl@us.ibm.com) STSM IBM

More information

Introduction to IBM Rational HATS For IBM System i (5250)

Introduction to IBM Rational HATS For IBM System i (5250) Introduction to IBM Rational HATS For IBM System i (5250) Introduction to IBM Rational HATS 1 Lab instructions This lab teaches you how to use IBM Rational HATS to create a Web application capable of transforming

More information

IBM Rational Automation Framework for WebSphere

IBM Rational Automation Framework for WebSphere IBM Rational Automation Framework for WebSphere Guided Activity: Creating Dynamic Options For J2EE Application Deployment Using Rational Automation Framework for WebSphere v7.1.2 Contacts: Dale Ewald (dale.ewald@atech.com)

More information

Integration Developer Version 7.0 Version 7.0. Installation Guide

Integration Developer Version 7.0 Version 7.0. Installation Guide Integration Developer Version 7.0 Version 7.0 Installation Guide Note Before using this information and the product it supports, be sure to read the general information under Notices on page 67. This edition

More information

Creating your first JavaServer Faces Web application

Creating your first JavaServer Faces Web application Chapter 1 Creating your first JavaServer Faces Web application Chapter Contents Introducing Web applications and JavaServer Faces Installing Rational Application Developer Setting up a Web project Creating

More information

IMS Hands-on Lab - Using The New IMS Explorer To Access Your IMS Data

IMS Hands-on Lab - Using The New IMS Explorer To Access Your IMS Data IMS Hands-on Lab - Using The New IMS Explorer To Access Your IMS Data Speaker Name Suzie Wendler Kenny Blackman Speaker Company IBM Date of Presentation 3/16/2012 Session Number #10808 - Pine See database

More information

Using the IMS Explorer with the IMS Catalog Hands-on Lab

Using the IMS Explorer with the IMS Catalog Hands-on Lab Using the IMS Explorer with the IMS Catalog Hands-on Lab Suzie Wendler Ken Blackman IBM Thursday August 15 Session Number 14002 Insert Custom Session QR if Desired. 1 This hands-on lab provides the opportunity

More information

202 Index. Data dictionary, 25 Data items defined, 25 overview, 26 Data Language/I (DL/I), 7 Data parts, 25 Data tables compared to dictionaries, 33

202 Index. Data dictionary, 25 Data items defined, 25 overview, 26 Data Language/I (DL/I), 7 Data parts, 25 Data tables compared to dictionaries, 33 Index A Add statement, 100, 101, 105 AJAX, 10 Alias, 44 Allocation, 58 And operator, 74 Annotation fields bindingkey, 39 defaultselectcondition, 108, 109 keyitems, 105 tablenames, 105 Annotations Alias,

More information

From green-screens to Web services: using WebSphere Host Access Transformation Services (HATS) V6

From green-screens to Web services: using WebSphere Host Access Transformation Services (HATS) V6 From green-screens to Web services: using WebSphere Host Access Transformation Services (HATS) V6 zseries 3270 example March 30, 2005 Send comments to Rick Hardison (hardison@us.ibm.com) Visit http://websphere.dfw.ibm.com/atdemo/index.html

More information

JBoss WS User Guide. Version: CR1

JBoss WS User Guide. Version: CR1 JBoss WS User Guide Version: 3.0.0.CR1 1. JBossWS Runtime Overview... 1 2. Creating a Web Service using JBossWS runtime... 3 2.1. Creating a Dynamic Web project... 3 2.2. Configure JBoss Web Service facet

More information

Effective test automation techniques for Rational Functional Tester

Effective test automation techniques for Rational Functional Tester Effective test automation techniques for Rational Functional Tester Page 1 of 8 Effective test automation techniques for Rational Functional Tester Level: Intermediate Michael Kelly (mike@michaeldkelly.com),

More information

JSF Tools Reference Guide. Version: M5

JSF Tools Reference Guide. Version: M5 JSF Tools Reference Guide Version: 3.3.0.M5 1. Introduction... 1 1.1. Key Features of JSF Tools... 1 2. 3. 4. 5. 1.2. Other relevant resources on the topic... 2 JavaServer Faces Support... 3 2.1. Facelets

More information

Fastrack to federated replication

Fastrack to federated replication Skill Level: Introductory Kence Anderson (andersok@us.ibm.com) Information Developer IBM 11 May 2005 This tutorial shows you how to replicate data from a table in a DB2 database to a table in an Oracle

More information

IBM Rational Business Developer (RBD) is a development environment that

IBM Rational Business Developer (RBD) is a development environment that C H A P T E R1 Introduction IBM Rational Business Developer (RBD) is a development environment that helps programmers write business applications quickly. An organization uses RBD to meet the following

More information

DB2 Stored Procedure and UDF Support in Rational Application Developer V6.01

DB2 Stored Procedure and UDF Support in Rational Application Developer V6.01 Session F08 DB2 Stored Procedure and UDF Support in Rational Application Developer V6.01 Marichu Scanlon marichu@us.ibm.com Wed, May 10, 2006 08:30 a.m. 09:40 a.m. Platform: Cross Platform Audience: -DBAs

More information

Introduction to Eclipse Rich Client Platform Support in IBM Rational HATS. For IBM System i (5250)

Introduction to Eclipse Rich Client Platform Support in IBM Rational HATS. For IBM System i (5250) Introduction to Eclipse Rich Client Platform Support in IBM Rational HATS For IBM System i (5250) 1 Lab instructions This lab teaches you how to use IBM Rational HATS to create a rich client plug-in application

More information

JBoss WS User Guide. Version: GA

JBoss WS User Guide. Version: GA JBoss WS User Guide Version: 1.0.1.GA 1. JBossWS Runtime Overview... 1 2. Creating a Web Service using JBossWS runtime... 3 2.1. Creating a Dynamic Web project... 3 2.2. Configure JBoss Web Service facet

More information

Introduction to Eclipse Rich Client Platform Support in IBM Rational HATS For IBM System i (5250)

Introduction to Eclipse Rich Client Platform Support in IBM Rational HATS For IBM System i (5250) Introduction to Eclipse Rich Client Platform Support in IBM Rational HATS For IBM System i (5250) Introduction to Eclipse Rich Client Platform Support in IBM Rational HATS 1 Lab instructions This lab teaches

More information

Getting Started. In this chapter, you will learn: 2.1 Introduction

Getting Started. In this chapter, you will learn: 2.1 Introduction DB2Express.book Page 9 Thursday, August 26, 2004 3:59 PM CHAPTER 2 Getting Started In this chapter, you will learn: How to install DB2 Express server and client How to create the DB2 SAMPLE database How

More information

IBM Rational Developer for System z Version 7.5

IBM Rational Developer for System z Version 7.5 Providing System z developers with tools for building traditional and composite applications in an SOA and Web 2.0 environment IBM Rational Developer for System z Version 7.5 Highlights Helps developers

More information

BEAWebLogic. Portal. Tutorials Getting Started with WebLogic Portal

BEAWebLogic. Portal. Tutorials Getting Started with WebLogic Portal BEAWebLogic Portal Tutorials Getting Started with WebLogic Portal Version 10.2 February 2008 Contents 1. Introduction Introduction............................................................ 1-1 2. Setting

More information

Creating Classic Planning Applications in Oracle Hyperion Planning, Fusion Edition

Creating Classic Planning Applications in Oracle Hyperion Planning, Fusion Edition Creating Classic Planning Applications in Oracle Hyperion Planning, Fusion Edition 11.1.2 This tutorial contains the following sections: Purpose Time to Complete Overview Software and Hardware Requirements

More information

Introduction to IBM Rational HATS For IBM System z (3270)

Introduction to IBM Rational HATS For IBM System z (3270) Introduction to IBM Rational HATS For IBM System z (3270) Introduction to IBM Rational HATS 1 Lab instructions This lab teaches you how to use IBM Rational HATS to create a Web application capable of transforming

More information

Lotus Exam IBM Websphere Portal 6.1 Application Development Version: 5.0 [ Total Questions: 150 ]

Lotus Exam IBM Websphere Portal 6.1 Application Development Version: 5.0 [ Total Questions: 150 ] s@lm@n Lotus Exam 190-959 IBM Websphere Portal 6.1 Application Development Version: 5.0 [ Total Questions: 150 ] Topic 0, A A Question No : 1 - (Topic 0) A large motorcycle manufacturer has an internet

More information

IBM Mobile Portal Accelerator Enablement

IBM Mobile Portal Accelerator Enablement IBM Mobile Portal Accelerator Enablement Hands-on Lab Exercise on XDIME Portlet Development Prepared by Kiran J Rao IBM MPA Development kiran.rao@in.ibm.com Jaye Fitzgerald IBM MPA Development jaye@us.ibm.com

More information

How to install Rational Developer for Enterprise 9.0 client using the IBM Passport advantage (or IBM Internal XL leverage).

How to install Rational Developer for Enterprise 9.0 client using the IBM Passport advantage (or IBM Internal XL leverage). How to install Rational Developer for Enterprise 9.0 client using the IBM Passport advantage (or IBM Internal XL leverage). Last update: August, 15 2013 Created by: Reginaldo W. Barosa rbarosa@us.ibm.com

More information

[ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ]

[ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ] Version 5.3 [ Getting Started with Analyzer, Interactive Reports, and Dashboards ] ] https://help.pentaho.com/draft_content/version_5.3 1/30 Copyright Page This document supports Pentaho Business Analytics

More information

Building JavaServer Faces Applications

Building JavaServer Faces Applications IBM Software Group St. Louis Java User Group Tim Saunders ITS Rational Software tim.saunders@us.ibm.com 2005 IBM Corporation Agenda JSF Vision JSF Overview IBM Rational Application Developer v6.0 Build

More information

J2EE Development. Course Detail: Audience. Duration. Course Abstract. Course Objectives. Course Topics. Class Format.

J2EE Development. Course Detail: Audience. Duration. Course Abstract. Course Objectives. Course Topics. Class Format. J2EE Development Detail: Audience www.peaksolutions.com/ittraining Java developers, web page designers and other professionals that will be designing, developing and implementing web applications using

More information

Using Smartphone devices with IBM WebSphere Portlet Factory

Using Smartphone devices with IBM WebSphere Portlet Factory Using Smartphone devices with IBM WebSphere Portlet Factory January 2010 Copyright International Business Machines Corporation 2010. All rights reserved. This article with the accompanying sample shows

More information

Setting Up the Development Environment

Setting Up the Development Environment CHAPTER 5 Setting Up the Development Environment This chapter tells you how to prepare your development environment for building a ZK Ajax web application. You should follow these steps to set up an environment

More information

DB2 QMF Data Service Version 12 Release 1. Studio User's Guide IBM SC

DB2 QMF Data Service Version 12 Release 1. Studio User's Guide IBM SC DB2 QMF Data Service Version 12 Release 1 Studio User's Guide IBM SC27-8886-00 DB2 QMF Data Service Version 12 Release 1 Studio User's Guide IBM SC27-8886-00 Note Before using this information and the

More information

IBM Data Studio for Mainframe Developers. David Simpson, Senior Technical Advisor Themis, Inc.

IBM Data Studio for Mainframe Developers. David Simpson, Senior Technical Advisor Themis, Inc. IBM Data Studio for Mainframe Developers David Simpson, Senior Technical Advisor Themis, Inc. dsimpson@themisinc.com www.themisinc.com IBM Data Studio for Mainframe Developers Themis and Themis, Inc. are

More information

In this lab, you will build and execute a simple message flow. A message flow is like a program but is developed using a visual paradigm.

In this lab, you will build and execute a simple message flow. A message flow is like a program but is developed using a visual paradigm. Lab 1 Getting Started 1.1 Building and Executing a Simple Message Flow In this lab, you will build and execute a simple message flow. A message flow is like a program but is developed using a visual paradigm.

More information

Embarcadero PowerSQL 1.1 Evaluation Guide. Published: July 14, 2008

Embarcadero PowerSQL 1.1 Evaluation Guide. Published: July 14, 2008 Embarcadero PowerSQL 1.1 Evaluation Guide Published: July 14, 2008 Contents INTRODUCTION TO POWERSQL... 3 Product Benefits... 3 Product Benefits... 3 Product Benefits... 3 ABOUT THIS EVALUATION GUIDE...

More information

IBM. IBM WebSphere Application Server Migration Toolkit. WebSphere Application Server. Version 9.0 Release

IBM. IBM WebSphere Application Server Migration Toolkit. WebSphere Application Server. Version 9.0 Release WebSphere Application Server IBM IBM WebSphere Application Server Migration Toolkit Version 9.0 Release 18.0.0.3 Contents Chapter 1. Overview......... 1 Chapter 2. What's new........ 5 Chapter 3. Support..........

More information

The Modern Mainframe. IBM Systems. Powerful, secure, dependable and easier to use. Bernice Casey System z User Experience

The Modern Mainframe. IBM Systems. Powerful, secure, dependable and easier to use. Bernice Casey System z User Experience Powerful, secure, dependable and easier to use Bernice Casey (casey@us.ibm.com) System z User Experience Steven Ma (stevenma@us.ibm.com) Application Integration Middleware User Experience 2006 IBM Corporation

More information

ZOS15P1 - Rational Business Developper : Comment développer rapidement une application zos/db2 sans connaissance Cobol avec EGL et RBD

ZOS15P1 - Rational Business Developper : Comment développer rapidement une application zos/db2 sans connaissance Cobol avec EGL et RBD IBM Software Group ZOS15P1 - Rational Business Developper : Comment développer rapidement une application zos/db2 sans connaissance Cobol avec EGL et RBD What is EGL? IBM s high-level procedural programming

More information

EDT 0.8 Stakeholder Meeting SQL JNDI Data Sources

EDT 0.8 Stakeholder Meeting SQL JNDI Data Sources EDT 0.8 Stakeholder Meeting SQL JNDI Data Sources February 8, 2012 Project members: Stakeholder Meeting EDT 0.8 is currently under development For more on EDT 0.8 plans, see http://wiki.eclipse.org/edt:0.8.0_planning

More information

JBoss SOAP Web Services User Guide. Version: M5

JBoss SOAP Web Services User Guide. Version: M5 JBoss SOAP Web Services User Guide Version: 3.3.0.M5 1. JBoss SOAP Web Services Runtime and Tools support Overview... 1 1.1. Key Features of JBossWS... 1 2. Creating a Simple Web Service... 3 2.1. Generation...

More information

Database Explorer Quickstart

Database Explorer Quickstart Database Explorer Quickstart Last Revision: Outline 1. Preface 2. Requirements 3. Introduction 4. Creating a Database Connection 1. Configuring a JDBC Driver 2. Creating a Connection Profile 3. Opening

More information

Exercise 3.1 EGL-CE 1.0 and Tomcat 6.0

Exercise 3.1 EGL-CE 1.0 and Tomcat 6.0 Exercise 3.1 EGL-CE 1.0 and Tomcat 6.0 By Gilbert Herschberger (http://www.mindspring.com/~gchii/) Date Written : 6 April 2010 Goal In this exercise, we will download and install Apache Tomcat 6.0 (Tomcat)

More information

Lotus Learning Management System R1

Lotus Learning Management System R1 Lotus Learning Management System R1 Version 1.0.4 March 2004 Quick Install Guide G210-1793-00 Disclaimer THE INFORMATION CONTAINED IN THIS DOCUMENTATION IS PROVIDED FOR INFORMATIONAL PURPOSES ONLY. WHILE

More information

Getting Started with Web Services

Getting Started with Web Services Getting Started with Web Services Getting Started with Web Services A web service is a set of functions packaged into a single entity that is available to other systems on a network. The network can be

More information

Application Integration with WebSphere Portal V7

Application Integration with WebSphere Portal V7 Application Integration with WebSphere Portal V7 Rapid Portlet Development with WebSphere Portlet Factory IBM Innovation Center Dallas, TX 2010 IBM Corporation Objectives WebSphere Portal IBM Innovation

More information

ActiveBPEL Fundamentals

ActiveBPEL Fundamentals Unit 22: Simulation ActiveBPEL Fundamentals This is Unit #22 of the BPEL Fundamentals course. In past Units we ve looked at ActiveBPEL Designer, Workspaces and Projects, created the Process itself and

More information

Portlet Application Development Webinar exercise using JSF and JPA with Rational Application Developer

Portlet Application Development Webinar exercise using JSF and JPA with Rational Application Developer Portlet Application Development Webinar exercise using JSF and JPA with Rational Application Developer This exercise demonstrates how to create an end-to-end Java Persistence API (JPA) enabled Java Server

More information

ADF Code Corner How-to bind custom declarative components to ADF. Abstract: twitter.com/adfcodecorner

ADF Code Corner How-to bind custom declarative components to ADF. Abstract: twitter.com/adfcodecorner ADF Code Corner 005. How-to bind custom declarative components to ADF Abstract: Declarative components are reusable UI components that are declarative composites of existing ADF Faces Rich Client components.

More information

BEAWebLogic. Portal. Tutorials Getting Started with WebLogic Portal

BEAWebLogic. Portal. Tutorials Getting Started with WebLogic Portal BEAWebLogic Portal Tutorials Getting Started with WebLogic Portal Version 10.0 March 2007 Copyright Copyright 1995-2007 BEA Systems, Inc. All Rights Reserved. Restricted Rights Legend This software is

More information

Build and Deploy Stored Procedures with IBM Data Studio

Build and Deploy Stored Procedures with IBM Data Studio Build and Deploy Stored Procedures with IBM Data Studio December 19, 2013 Presented by: Anson Kokkat, Product Manager, Optim Database Tools 1 DB2 Tech Talk series host and today s presenter: Rick Swagerman,

More information

DB2 for z/os: Programmer Essentials for Designing, Building and Tuning

DB2 for z/os: Programmer Essentials for Designing, Building and Tuning Brett Elam bjelam@us.ibm.com - DB2 for z/os: Programmer Essentials for Designing, Building and Tuning April 4, 2013 DB2 for z/os: Programmer Essentials for Designing, Building and Tuning Information Management

More information

Creating a HATS v7.1 Portlet Using Web Express Logon (WEL) and Portal Credential Vault

Creating a HATS v7.1 Portlet Using Web Express Logon (WEL) and Portal Credential Vault Creating a HATS v7.1 Portlet Using Web Express Logon (WEL) and Portal Credential Vault Lab instructions The objective of this exercise is to illustrate how to create a HATS portlet that uses Web Express

More information

JSF Tools Reference Guide. Version: beta1

JSF Tools Reference Guide. Version: beta1 JSF Tools Reference Guide Version: 3.0.0.beta1 1. Introduction... 1 1.1. Key Features of JSF Tools... 1 1.2. Other relevant resources on the topic... 2 2. JavaServer Faces Support... 3 2.1. Facelets Support...

More information

InfoSphere Data Architect Pluglets

InfoSphere Data Architect Pluglets InfoSphere Data Architect Pluglets Macros for Eclipse This article provides information on how to develop custom pluglets and use sample pluglets provided by InfoSphere Data Architect. InfoSphere Data

More information

WebSphere. Clips and Tacks: Getting started with the IBM BPM suite of products

WebSphere. Clips and Tacks: Getting started with the IBM BPM suite of products WebSphere Clips and Tacks: Getting started with the IBM BPM suite of products ii IBM WebSphere Clips and Tacks: Getting started with the IBM BPM suite of products Contents Chapter 1. Introduction........

More information

IBM Maximo Anywhere Version 7 Release 6. Planning, installation, and deployment IBM

IBM Maximo Anywhere Version 7 Release 6. Planning, installation, and deployment IBM IBM Maximo Anywhere Version 7 Release 6 Planning, installation, and deployment IBM Note Before using this information and the product it supports, read the information in Notices on page 65. This edition

More information

Developing portlets for the IBM WebSphere Portal Server with IBM Rational Rapid Developer

Developing portlets for the IBM WebSphere Portal Server with IBM Rational Rapid Developer Copyright Rational Software 2003 http://www.therationaledge.com/content/nov_03/f_rrd_websphere_jn.jsp Developing portlets for the IBM WebSphere Portal Server with IBM Rational Rapid Developer by Joseph

More information

XPages development practices: developing a common Tree View Cust...

XPages development practices: developing a common Tree View Cust... 1 of 11 2009-12-11 08:06 XPages development practices: developing a common Tree View Custom Controls Use XPages develop a common style of user control Dojo Level: Intermediate Zhan Yonghua, Software Engineer,

More information

Virtual Loaner Program setup guide for the IBM Industry Application Platform Version 1.0.1

Virtual Loaner Program setup guide for the IBM Industry Application Platform Version 1.0.1 Virtual Loaner Program setup guide for the IBM Industry Application Platform Version 1.0.1 David Carew IT Architect, IBM Corporation IBM Systems ISV Business Strategy November 2010 Copyright IBM Corporation,

More information

Javelin Workbench Tutorial. Version 3.0 September, 2009

Javelin Workbench Tutorial. Version 3.0 September, 2009 Javelin Workbench Tutorial Version 3.0 September, 2009 OVERVIEW The Javelin Workbench Beginner Tutorial walks you through the steps of building online feedback forms for the purposes of data collection.

More information

Custom Report Enablement

Custom Report Enablement NN44480-128 Document status: Standard Document version: 0101 Document date: 16 October 2009 All Rights Reserved While the information in this document is believed to be accurate and reliable, except as

More information

QS-AVI Address Cleansing as a Web Service for IBM InfoSphere Identity Insight

QS-AVI Address Cleansing as a Web Service for IBM InfoSphere Identity Insight QS-AVI Address Cleansing as a Web Service for IBM InfoSphere Identity Insight Author: Bhaveshkumar R Patel (bhavesh.patel@in.ibm.com) Address cleansing sometimes referred to as address hygiene or standardization

More information

Troubleshooting Tips and Hints for WebSphere JDBC Adapter

Troubleshooting Tips and Hints for WebSphere JDBC Adapter IBM Software Group Troubleshooting Tips and Hints for WebSphere JDBC Adapter Paula Jones (phjones@us.ibm.com) WebSphere Adapter Level 2 Support 27 January 2011 WebSphere Support Technical Exchange Agenda

More information

Talend Open Studio for Data Quality. User Guide 5.5.2

Talend Open Studio for Data Quality. User Guide 5.5.2 Talend Open Studio for Data Quality User Guide 5.5.2 Talend Open Studio for Data Quality Adapted for v5.5. Supersedes previous releases. Publication date: January 29, 2015 Copyleft This documentation is

More information

Relativity Designer 2.2

Relativity Designer 2.2 Relativity Designer 2.2 Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2009-2017. All rights reserved. MICRO FOCUS, the Micro Focus

More information

Seam Tools Tutorial. Version: Final-SNAPSHOT

Seam Tools Tutorial. Version: Final-SNAPSHOT Seam Tools Tutorial Version: 4.2.0.Final-SNAPSHOT 1. Create a Seam Application... 1 1.1. Start Development Database... 1 2. 3. 4. 5. 1.2. Create and deploy Seam Web Project... 3 1.3. Start JBoss Application

More information

How Do I Inspect Error Logs in Warehouse Builder?

How Do I Inspect Error Logs in Warehouse Builder? 10 How Do I Inspect Error Logs in Warehouse Builder? Scenario While working with Warehouse Builder, the designers need to access log files and check on different types of errors. This case study outlines

More information

Optimize Enterprise Generation Language (EGL) applications using purequery

Optimize Enterprise Generation Language (EGL) applications using purequery Optimize Enterprise Generation Language (EGL) applications using purequery Venkatesh Gopal, Data Studio Development Team Kathryn Zeidenstein, Data Studio Enablement team 1 About EGL and purequery... 3

More information

Using the IMS Universal Drivers and QMF to Access Your IMS Data Hands-on Lab

Using the IMS Universal Drivers and QMF to Access Your IMS Data Hands-on Lab Attendee Choice: IMS Hands-on Lab Thursday, August 13, 2015: 12:30 PM - 01:30 PM, Dolphin, Asia 5 #17765 Insert Custom Session QR if Desired Business Analytics on zenterprise The QMF 11 Product Family

More information

AquaLogic BPM Enterprise Configuration Guide

AquaLogic BPM Enterprise Configuration Guide AquaLogic BPM Enterprise Configuration Guide Standalone Edition Version: 6.0 2 ALBPM TOC Contents Getting Started...4 Document Scope and Audience...4 Documentation Roadmap...4 What is ALBPM Enterprise?...4

More information

Print Audit 5 - Step by Step Walkthrough

Print Audit 5 - Step by Step Walkthrough Print Audit 5 - Step by Step Walkthrough IMPORTANT: READ THIS BEFORE PERFORMING A PRINT AUDIT 5 INSTALLATION Print Audit 5 is a desktop application that you must install on every computer where you want

More information

EUSurvey OSS Installation Guide

EUSurvey OSS Installation Guide Prerequisites... 2 Tools... 2 Java 7 SDK... 2 MySQL 5.6 DB and Client (Workbench)... 4 Tomcat 7... 8 Spring Tool Suite... 11 Knowledge... 12 Control System Services... 12 Prepare the Database... 14 Create

More information

B. Assets are shared-by-copy by default; convert the library into *.jar and configure it as a shared library on the server runtime.

B. Assets are shared-by-copy by default; convert the library into *.jar and configure it as a shared library on the server runtime. Volume A~B: 114 Questions Volume A 1. Which component type must an integration solution developer define for a non-sca component such as a Servlet that invokes a service component interface? A. Export

More information

Getting started with WebSphere Portlet Factory V7.0.0

Getting started with WebSphere Portlet Factory V7.0.0 Getting started with WebSphere Portlet Factory V7.0.0 WebSphere Portlet Factory Development Team 29 September 2010 Copyright International Business Machines Corporation 2010. All rights reserved. Abstract

More information

Your password is: firstpw

Your password is: firstpw SHARE Session #9777: WebSphere and Rational Developer Hands-on-Labs Building Java application on System z with RDz Lab exercise (estimate duration) Part 1: Your first Java application on z/os (~35 min).

More information

Inside WebSphere Application Server

Inside WebSphere Application Server Inside WebSphere Application Server The anatomy of WebSphere Application Server is quite detailed so, for now, let's briefly outline some of the more important parts. The following diagram shows the basic

More information

LAB 1: FAMILIARITY WITH NETBEANS IDE ENVIRONMENT

LAB 1: FAMILIARITY WITH NETBEANS IDE ENVIRONMENT Statement Purpose: The purpose of this Lab. is to familiarize student with the programming environment they will be going to using throughout this course. This Lab. introduces the basics of NetBeans IDE

More information

Oliopäivät Modelling Now and in the Future, with Acronyms or without = RSA

Oliopäivät Modelling Now and in the Future, with Acronyms or without = RSA IBM Software Group Oliopäivät 28-29.11.2006 Modelling Now and in the Future, with Acronyms or without = RSA rami.talme@fi.ibm.com 2006 IBM Corporation IBM Software Group Rational software The business-driven

More information

Getting started with WebSphere Portlet Factory V6.1

Getting started with WebSphere Portlet Factory V6.1 Getting started with WebSphere Portlet Factory V6.1 WebSphere Portlet Factory Development Team 29 July 2008 Copyright International Business Machines Corporation 2008. All rights reserved. Abstract Discover

More information

Error Message Reference

Error Message Reference Security Policy Manager Version 7.1 Error Message Reference GC23-9477-01 Security Policy Manager Version 7.1 Error Message Reference GC23-9477-01 Note Before using this information and the product it

More information

1. Which programming language is used in approximately 80 percent of legacy mainframe applications?

1. Which programming language is used in approximately 80 percent of legacy mainframe applications? Volume: 59 Questions 1. Which programming language is used in approximately 80 percent of legacy mainframe applications? A. Visual Basic B. C/C++ C. COBOL D. Java Answer: C 2. An enterprise customer's

More information

SAS. Information Map Studio 3.1: Creating Your First Information Map

SAS. Information Map Studio 3.1: Creating Your First Information Map SAS Information Map Studio 3.1: Creating Your First Information Map The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2006. SAS Information Map Studio 3.1: Creating Your

More information

IBM Rational Asset Manager Version Capacity and scalability benchmarks

IBM Rational Asset Manager Version Capacity and scalability benchmarks IBM Rational Asset Manager Version 7.0.0.2 Capacity and scalability benchmarks IBM Corporation Development Gili Mendel, Senior Technical Staff Member Sheehan Anderson, Software Developer Rich Kulp Performance

More information

Analyze system performance

Analyze system performance Validate system scalability with IBM Rational Performance Tester Skill Level: Introductory Brian Bryson IBM 26 May 2005 Learn how to analyze system performance with IBM Rational Performance Tester v6.1.

More information