Creating Web Services using IBM Rational HATS For IBM i (5250)

Size: px
Start display at page:

Download "Creating Web Services using IBM Rational HATS For IBM i (5250)"

Transcription

1 Creating Web Services using IBM Rational HATS For IBM i (5250) Creating Web Services using HATS 1

2 Lab instructions This lab teaches you how to use IBM Rational HATS to create web services that expose logic contained in a IBM i 5250 application. You will learn how to create a HATS project, record a macro to navigate through the screens of the transaction, generate a Java bean wrapper for the macro, and to create SOAP-based web services and RESTful web services using the tooling provided in the Rational Software Development Platform. Once the web services are built, you will learn how to test those services. Please report any issues or problems with this lab to Jude Hung (judehung@tw.ibm.com). Learning objectives Use the HATS Toolkit to create a web project capable of containing the web services Use the HATS Host Terminal to record a macro Use the Visual Macro Editor to enhance a macro Create an Integration Object Java class that drives the macro Create SOAP-based web services that calls the Integration Object Test SOAP-based web service Create RESTful web services that calls the Integration Object Test RESTful web services Total time: 120 minutes Skill level Introductory Audience Programmer Requirements IBM Rational Application Developer v8.0 (or above) IBM Rational Host Access Transformation Services (HATS) v8.0 Mozilla Firefox v3.0 or above Internet connection Prerequisites Basic IDE skills Basic understanding of terminal applications Conventions used in this lab Creating Web Services using HATS 2

3 Bold font for user interface controls Mono-spaced font for user input and code blocks Italic font for variable names and glossary terms Glossary Macro - automates interactions with the host. Macros can send commands to the host, enter data into entry fields, extract data from the host, and be used to navigate screens on behalf of the user. Macros are created in either the HATS Host Terminal or the Visual Macro Editor. Integration Object - a Java bean that encapsulates an interaction with a host screen or a series of host screens. Integration Objects are constructed from macros and can be included in web services or HATS EJB projects. Web service an operation that can be published, located, and invoked programmatically over the Web. A HATS web service drives a HATS Integration Object, which invokes a HATS macro. Creating a HATS project and macro This module will teach you how to create a HATS project and macro. From within the Host Access Transformation Services perspective, you can launch the wizard to create a new project. You will use the Host Terminal to record the initial main path macro. In the next module, you will use the Visual Macro Editor to enhance the macro. Starting HATS 1. From your desktop click Start > Programs > IBM Software Delivery Platform > IBM Rational HATS V8.0 > HATS Toolkit. A dialog appears asking you for the workspace location. The workspace contains your projects and files. You can accept the default or use different workspace for this tutorial (such as C:\MyHatsLab). You can always start with a new workspace later, if you don t want to mix this tutorial with your real work. 2. Click OK. Creating Web Services using HATS 3

4 After a few moments of loading, the workbench opens, and the HATS welcome page appears. Creating the project 1. Click the New HATS Project link on the HATS Projects view to launch the new project wizard. Creating Web Services using HATS 4

5 2. In the Name field, type the name HATS5250SOA. 3. Select the Web deployment radio button since HATS web services are hosted in a web project. 4. Select WebSphere Application Server v8.0 from the Target server drop-down. Note: if WebSphere Application Server v8.0 is not listed, you may select any other WebSphere server type. 5. In the Enterprise application project field, type the name HATS5250SOA_EAR8. This will ensure there are no conflicts when you deploy your application to the server later. Your panel will look like this: Creating Web Services using HATS 5

6 6. Click Next to display the Connection Settings panel. The Connection Settings panel enables you to setup the connection to your 3270 or 5250 system. Your web service will use this connection to communicate with the host application. 7. In the Host name field, type iseriesd.demos.ibm.com 8. Select 5250 from the Type field. 9. Specify 992 for the Port field and accept the default values for the Code page, and Screen size. Your panel will look like this: 10. Click Next. The Project Theme panel is not important when building web services. In a standard HATS transformation project, a theme controls the basic appearance and behavior characteristics for the application. For example, you can select the Classic terminal emulator theme to enable emulator-like features, such as automatic field advance, in your application by default. 11. Click Next. Creating Web Services using HATS 6

7 The Default Template panel is also not important when building web services. In a standard HATS transformation project, a template controls the basic layout and style (such as color and font) of the application. 12. Click Finish to create the project. After a few minutes, the new project will appear in the HATS Projects view and the Project Settings editor for the project will open. Note: Before proceeding, please check with your lab instructor (if applicable) for updated connection settings, or refer to Setting up a secure connection in HATS Toolkit for the connection information. For the user name and password, see IBM Host Integration Demos. Lesson checkpoint In this section, you learned how to: Start the HATS toolkit Create a new HATS project Creating the macro A macro is a script that defines a flow through screens in your application. Typically a macro is responsible for performing a very specific task. For example, you might record a macro that collects information about a customer based on a supplied customer identification number (this happens to be the scenario described in later steps of this tutorial). Macros can be input only, output only, input and output, or purely navigational. The input and output you define in a macro will be the input and output of your eventual web service. For this tutorial, you will create a macro that signs in, navigates to a customer information application, and retrieves important information about a customer. This tutorial describes using the HATS Host Terminal to record the macro. Macros can also be created using the HATS Visual Macro Editor, or VME, but the Host Terminal allows you to more quickly create the main flow of your macro. Later in this tutorial you will use the VME to add error handling to your macro. Caution: This tutorial assumes the Display Program Messages screen appears after the Sign On screen and before the Main Menu screen. In order to make sure this happens you must start a separate secure telnet session using the same user name and password. Follow the instructions below to do this: Creating Web Services using HATS 7

8 1. In HATS Projects view, right-click on your project folder and select Run on Server 2. Select the Choose an existing server option. 3. Select WebSphere Application Server v8.0 from the server list. 4. Check the Set server as project default checkbox. 5. Click Finish. 6. In the Web Browser view, you will see your HATS project running live with your host system. Note: Before proceeding, please ask your lab instructor (if applicable) for the user name and password to use or get the current user name and password for the IBM i demo system from: IBM Host Integration Demos 7. Type ATDEMO and press the TAB key. 8. Type DEMO4YOU and press the ENTER key. You should now be at the Main Menu or a Display Program Messages screen. If you are at a Display Program Messages Screen, press the ENTER key. 9. Minimize this window and switch back to your workbench window. 10. In the HATS Projects view, right-click on your project s folder and select Open HATS Host Terminal then select the Main host connection. This will open an emulator session to your system. Creating Web Services using HATS 8

9 You will see the sign on screen: 11. To start recording the macro, click the Record Macro button on the toolbar. 12. In the Name field, type getcustomerinformation. Macro names should reflect the operation being performed. 13. Check the Create screen captures automatically while recording checkbox. When this option is enabled, HATS takes a capture of each screen while recording the macro and saves it in your project. This makes it easy to tweak screen recognition criteria or add new screen actions when using the Visual Macro Editor. Your panel will look like this: Creating Web Services using HATS 9

10 14. Click Finish. For the first screen in a macro, HATS asks you to define its screen recognition. You should see this panel: Creating Web Services using HATS 10

11 15. In the Screen name field, type SignOn. This will make it easier to understand the flow of your macro later when you edit it in the Visual Macro Editor. 16. Accept the default selections on this panel and click Finish. The Host Terminal is now in record mode. This means that every keystroke you make (in the terminal area) is recorded in the macro. 17. In the User field, type ATDEMO (your cursor should already be positioned in this field). 18. Press the TAB key to advance to the next field. 19. In the Password field, type DEMO4YOU. 20. Press the ENTER key. Notice HATS has recorded your keystrokes and shows the structure of your macro at the left side of the terminal window: You will see the Display Program Messages. If you do not see this screen, see the first few steps of this section. 21. On the Display Program Messages screen, click the Define Screen Recognition Criteria button on the toolbar to name the screen and defines its recognition criteria. 22. In the Screen name field, type DisplayProgramMessages. Using your mouse, rope off (i.e. select) the Display Program Messages text at the top of the screen. The default screen recognition region includes text that will change on subsequent logins you do not want this text to be included in the recognition criteria for this macro screen. Creating Web Services using HATS 11

12 23. Click Finish. 24. Press the ENTER key to navigate the host terminal to the Main Menu screen. You should now be at the i5/os Main Menu screen. 25. Click the Define Screen Recognition Criteria button to supply a new name for the screen. 26. In the Screen Name field, type MainMenu and click Finish. 27. In the Command field at the bottom of the screen, type GO CELDIAL and press the ENTER key. You should now be at the CelDial Communications main menu screen: Creating Web Services using HATS 12

13 28. Click the Define Screen Recognition Criteria button to supply a new name for the screen. 29. In the Screen Name field, type CelDialCommunications and click Finish. Because the purpose of this macro is to gather customer information based on a supplied customer number, you will use the Customer inquiry application. 30. In the command field, type 1 and press ENTER. Note that HATS is still recording every keystroke you make and is showing a representation of your macro on the left side of the terminal window. You should now be at the CelDial Custom Inquiry screen. 31. Click the Define Screen Recognition Criteria button to supply a new name for the screen. 32. In the Screen Name field, type CustomerInquiry and click Finish. A prompt action is responsible for populating a field from a value supplied by a user (or by a caller of the macro). Think of a prompt as an input variable into a macro. For this macro, the prompt value will be supplied via an input parameter to the web service. 33. Click the Add Prompt Action button on the toolbar. Creating Web Services using HATS 13

14 34. In the Name field, type customernumber since this prompt value will reflect some customer number supplied by the user. Your panel should look like this: 35. Most of the other settings on this panel do not apply when building a macro for a web service. Click OK to add the prompt. The prompt action will appear in the Macro Navigator tree on the left side of the terminal window: In order for HATS to continue recording the macro after adding a prompt, HATS will prompt you for a value for the prompt action and fill the value you supply into the field. 36. In the Enter a value field, type the value (this is a valid customer number) and click OK. You will notice this value is inserted into the Custom inquiry field. 37. Press the ENTER key to submit the customer number to the application. You should now be at the CelDial Customer Detail screen. 38. Click the Define Screen Recognition Criteria button to supply a new name for the screen. 39. In the Screen Name field, type CustomerDetail and click Finish. Creating Web Services using HATS 14

15 Extract actions are responsible for pulling data from fields on the screen and exposing the data as outputs on the web service. Although we could add extract actions for each of the important fields on this screen using the Host Terminal, we will only add one extract action now and add the rest using the Visual Macro Editor later. Use your mouse to rope off the Customer Name field: 40. Click the Add Extract Action button on the Host Terminal toolbar to open the Add Extract dialog. 41. In the Name field, type customername. 42. The values in the position group should match the values shown in the screen shot above. Make any necessary changes and click Finish. You now have an extract action that will, when the macro is played, pull the contents of the customer name field into a variable. You will now exit out of the application, sign off, and return to the sign on screen. In general, it is recommended to name each screen in your macro. In order to save time, however, you will not be instructed to do this for each screen. 43. Press the F12 key on the Customer Detail screen. Creating Web Services using HATS 15

16 44. Press the F3 key on the Customer Inquiry screen. 45. Click the Define Screen Recognition Criteria button to supply a new name for the screen. In the Screen Name field, type CelDialCommunications_2 and click Finish. 46. Press the F12 key on the CelDial Communications main menu screen. 47. In the Command field, type 90 and press the ENTER key to sign off. You should now be back at the Sign On screen. 48. Click the Stop Macro button on the Host Terminal to stop recording. If prompted to define exit screen criteria for the macro, accept the defaults and click Finish. 49. Click the Save Macro button on the Host Terminal to save the macro. You have created a macro that signs on, navigates to a customer information application, populates the customer number field with a supplied prompt value, navigates to the customer detail screen and extracts the contents of the name field into a variable, and then navigates back to the sign on screen. Lesson checkpoint In this section, you learned how to: Use the HATS Host Terminal to record a macro Define the screen recognition and name for a screen in the macro Add a prompt action in order to fill in a host input field Add an extract action in order to extract the contents of a field Testing the macro To confirm the macro works as expected, you will play it back using the Host Terminal. You should already be at the Sign On screen of the system. 1. Click the Play Macro button on the Host Terminal toolbar. Creating Web Services using HATS 16

17 HATS will display a dialog asking you to supply values for all prompt actions defined in the macro. Since you only added one prompt action (for the customer number), you will only be asked to supply one value: 2. In the Value column, type (this is also a valid customer number) and click OK. Later in the tutorial you will learn how to handle the scenario where an invalid customer number is supplied. HATS will navigate the screens using the keystrokes you previously recorded and will populate the customer number field with the value you supplied. On the customer detail screen, the extract action you created previously will extract the data from the customer name field. HATS will show the extracted data and continue playing the macro. The Extract Results window will show Village Telephone (since this is the name of the customer with the number ). The terminal, which is beneath the Extract Results window, should be on the sign on screen. 3. Close the Extract Results window by clicking the X in the upper right corner. Creating Web Services using HATS 17

18 4. Click the Disconnect button on the Host Terminal to disconnect the session. 5. Click the X at the upper right corner of the window to close the terminal window. Enhancing the macro using the Visual Macro Editor The HATS Visual Macro Editor, or VME, is a graphical tool for creating new macros from scratch or enhancing macros recorded with the HATS Host Terminal. With the VME, you can add new screens, flows, and actions to your macros. For this tutorial you will record an alternate flow for the scenario where an invalid, or non-existent, customer number is supplied. You will also use the VME to easily add multiple extract actions for fields on the customer details screen. 1. From the HATS Projects view, expand the Macros folder, select the getcustomerinformation macro and right-click and select Open With > Visual Macro Editor. Creating Web Services using HATS 18

19 The VME will open and you will see a visual representation of your macro. Currently the macro only works if the Display Program Messages screen appears after the Sign On screen. This poses a problem since this screen does not always appear. Using the Visual Macro Editor, you will learn how to draw a next screen connection line between the Sign On and Main Menu screens. This will allow the macro to work regardless of whether the Display Program Messages screen appears or not. 2. From the Palette view, click the Next Screen Connection tool. 3. Move your mouse back to the design area (notice the cursor has changed) and click the Sign On screen. 4. Move your mouse (notice a line is drawn between the SignOn screen and your mouse pointer) and click the Main Menu screen. You will now see a new line drawn between the Sign On screen and the Main Menu screen. Creating Web Services using HATS 19

20 This indicates that either the Display Program Messages or Main Menu screen can follow the Sign On screen. In order to handle the scenario where an invalid number is supplied, you need to navigate to the Customer Inquiry screen, supply an invalid value, and then add the resulting screen into the flow of your macro. 5. Click the Connect button near the bottom of the editor (just above the Design tab) to show and to connect the integrated terminal. Unless your monitor is set to a high screen resolution, you may want to double-click the getcustomerinformation.hma editor tab at the top of the workbench window to maximize the editor. Your display will look like this: Creating Web Services using HATS 20

21 6. Click the Play button on the integrated terminal toolbar to play the macro. 7. Just like in the Host Terminal, HATS will prompt you to supply a value for the customernumber prompt. Supply an invalid value, such as 200 and click OK. HATS will play the macro and supply the customer number into the appropriate field, but the macro will stall because it s waiting for the Customer Detail screen to appear after the Customer Inquiry screen. Notice the error message at the bottom of the screen. You will add this screen into the flow of the macro in order to handle this error scenario. Creating Web Services using HATS 21

22 Note: if you wait for 60 seconds, HATS will show a Macro Play Error message because the Customer Detail screen never appears (and your macro expects this screen after the Customer Inquiry screen). 8. If the macro is still playing (well, waiting), click the Stop button on the toolbar to stop the playback. Creating Web Services using HATS 22

23 You will now update the macro to handle the case where this error screen appears on the Customer Inquiry screen. This screen only appears if an invalid number is supplied. 9. While on the screen with the error message, click the Add Screen button on the integrated terminal toolbar to open the Add Screen wizard. 10. In the Name field, type InvalidCustomerNumber. 11. From the Preceding screen drop-down, select the Customer Inquiry screen. This tells the HATS to wire this new screen as a possible option after ENTER is sent on the Customer Inquiry screen. 12. Clear the Exit Screen attribute. Because the Exit screen checkbox is checked, HATS will not allow you to select a next screen (since the macro will terminate after encountering this screen). 13. From the Next screen drop-down, select the CelDialCommunications_2 screen. Your panel will look like this: 14. Click Next. The Define Screen Recognition Criteria panel enables you to configure the criteria HATS will use to identify the screen. For this screen, you will just use text on the screen to identify the screen. 15. Uncheck the checkboxes for Total number of fields, Number of input fields, and Cursor position. Creating Web Services using HATS 23

24 16. Click the Add button to add new String (text) recognition criteria. 17. Rope off (i.e. select) the not found text at the top of the screen. 18. Select the radio button Anywhere on the screen. This tells HATS to match whenever the text not found is found anywhere on the screen. 19. Click OK. Your panel should look like this: Creating Web Services using HATS 24

25 20. Click Next to show the Actions panel. The actions panel enables you to control what HATS does when this screen is encountered. When recording the macro in the Host Terminal, HATS created Input actions for all sequences of keystrokes. You also manually added Prompt and Extract actions. For this screen you will extract the error message and make it available as an output variable on the web service. 21. Click the Add button. 22. Select the Extract action option. Creating Web Services using HATS 25

26 23. Click Next. 24. In the Name field, type errormessage. 25. Rope off the error message on row Click Finish to add the action. Creating Web Services using HATS 26

27 In order to properly exit the application and return on the sign on screen, we need to also send [pf12] command to the host. 27. Click the Add button. 28. Select the Input action option. 29. On the Input panel, tab to the String input field and press the F12 key on your keyboard. 30. Click Finish to add the action. You should see this panel: This indicates that a single extract action will be performed when this screen is encountered and that the [pf12] command will be sent. 31. Click Finish to add the screen. Creating Web Services using HATS 27

28 Notice how the VME has wired the new screen, InvalidCustomerNumber, as a possible path after the CustomerInquiry screen and as a preceding screen of CeldialCommunications_2 which will allow the macro to properly exit the application and sign off. In the design area, click the CustomerInquiry screen. Notice a 1 and 2 appear above the lines connecting the two possible next screens after the Customer Inquiry screen. These numbers indicate the order in which HATS will evaluate the recognition criteria defined in these screens when playing the macro. Since the Customer Detail screen has a higher priority number (1 vs. 2), HATS will first look to see if this screen appears after ENTER is pressed on the Customer Inquiry screen. If it doesn t appear, HATS will look to see if InvalidCustomerNumber (i.e. a screen with not found on it) appears. In this case, the ordering of the next screens isn t terribly important because both possible next screens are unique and quite different from each other. But, in other situations, the ordering of the next screens can be very important. 32. Save the macro by clicking File > Save. 33. On the integrated terminal, press the left arrow key on your keyboard to unlock the display. 34. Press the F3 key to return to the Customer Inquiry screen. 35. Press the F3 key to return to the Main Menu screen. 36. In the Command field, type 90 and press ENTER to sign off. You should now be back on the Sign On screen. 37. Press the Play button again to test the new flow. You will be prompted to supply a customer number. 38. In the Value column, type 300 (or any invalid customer number). Creating Web Services using HATS 28

29 39. Click OK. Notice the Extract Results window shows the extracted error message. Also notice the path of the macro is highlighted in the design area of the VME. This shows you the path the macro took as it played. Also notice that the macro correctly completed exiting the host application and returning to the Sign On screen. In order to demonstrate another feature of the VME, you will learn how to add additional actions to a screen. Creating Web Services using HATS 29

30 40. Find the CustomerDetail screen in the design area and select it, right-click, and select Properties. You will see the properties dialog for the screen. This dialog enables you to change the basic properties of the screen, including its associated screen capture, screen recognition criteria, and actions. 41. Click the Actions section on the left side of the window to show the screen s actions. At this point you should see two actions an extract action (to extract the customer s name) and an input action to send the F12 command. You will now add additional extract actions for each of the other important fields on the Customer Detail screen. Instead of manually adding each individual action, you will use the Extract all action type to add multiple actions at the same time. 42. Click the Add button. 43. Select the Extract all action type and click Next. You will see a panel like this: Creating Web Services using HATS 30

31 Notice each field on the screen is represented in the table. Default names have been generated for each extract action. Also notice the value of the field is shown in the table. 44. Check the Exclude empty protected fields and Exclude input fields checkboxes (this will limit the number of fields in the table and make it easier to find the important fields). 45. Click the Deselect all button (this will allow you to just select the fields you want to include). You will see a panel like this: Creating Web Services using HATS 31

32 You will notice that 21 fields are shown (as indicated by the label at the bottom right of the table). 46. Since you already extracted the customer name field, double-click the text in the address field (e.g. Maple View Plaza, 256 New St. ) to fully select the field. Notice the corresponding row in the table is also highlighted. Selecting the field in the table also highlights it in the screen preview area. 47. In the Name column, replace in_664_40 (which is a default name generated by HATS for this field), with customeraddress. To change the value, click once on the current text the cell will become editable. 48. Check the box at the beginning of this row. This will cause HATS to create an extract action for this field when Finish is clicked later. 49. Repeat this process (steps 42 44) for one or more other fields (such as the field containing the city, country, or postal code). 50. Click the Finish button. HATS will ask you to confirm that you want to add X number of extract actions. 51. Click Yes. Notice the new actions are listed in the actions table for the screen: 52. With the two actions still highlighted (selected), click the Up button to move the actions above the Input action (you want the extraction to take place before the F12 key is pressed). 53. Click OK. Creating Web Services using HATS 32

33 Notice the two actions are now shown in the design area: 54. Save the macro by clicking File > Save. Optionally, you can navigate back to the sign on screen in the integrated terminal and play the macro. You will be prompted for a customer number, but, once the macro is finished, the Extract Results window will show data for each of the fields you extracted in the previous few steps. You will also have the opportunity to see the extracted data later when you test the macro in the Web Services Explorer tool. Lesson checkpoint In this section, you learned how to: Use the Next Screen Connection tool on the palette to draw a flow between two macro screens Use the integrated terminal to play a macro Handle an alternate flow / error condition Quickly extract data for multiple fields on the screen Creating the Integration Object A HATS Integration Object is a Java class that encapsulates a programmed interaction with a host application. Integration Objects can be used in multiple ways to integrate interaction with a host application into new Java or Web based programs. One use of an Integration Object is to provide the interaction with a host application for a web service. The web services you are building in this tutorial include a SOAP-based web service and a RESTful web service. Both of these web services are intended to gather customer information from the host system based on a customer number submitted by the web service client. You have just finished creating the macro that collects this information. Now all you need to do is tell HATS to create an Integration Object from your macro and then create web services from the Integration Object. Creating the Integration Object 1. From the HATS Projects view, expand the Macros folder, right-click on your macro, getcustomerinfromation, and select Create Integration Object. Creating Web Services using HATS 33

34 HATS will generate the Integration Object Java class and some support files and place them in the IntegrationObject package under your Source folder. 2. Expand the Source and IntegrationObjects folders in the HATS Projects view. Look for your Integration Object now. Notice it has the same name as the macro used to create it (except the first letter has been converted to uppercase in order to maintain Java naming conventions). Lesson checkpoint In the previous sections, you learned how to: Create an Integration Object from a HATS macro Creating the SOAP-based web service Creating the web service support files for a SOAP-based web service Now you will use the Integration Object to create the web service support files for the SOAP-based web service. If you would like to create RESTful web service, jump to the next section Creating RESTful web services. Creating Web Services using HATS 34

35 Before you create the SOAP-based web service, you must first create web service support files. Web service support files are Java class files that describe methods contained in the Integration Object. 3. To create web service support files, from the HATS Projects view, right-click on your Integration Object and select Create Web Service Support Files. 4. In the Project field, select HATS5250SOA. 5. In the Name field, type CustomerServices. Because a web service can contain multiple operations, the name of the service should reflect the collection of services it might contain. Your wizard panel will look like this: 6. Click Next. 7. Ensure your Integration Object, GetCustomerInformation, is checked. 8. Click Properties button to launch the Choose Properties panel. 9. From the Input Properties table, enter the alias name id for the property customernumber. Creating Web Services using HATS 35

36 10. From the Output Properties table, enter the alias name name for the property customername. 11. Click OK to resturn to the Create Web Service Support Files wizard. If your project contained other Integration Objects, you could include them in the same web service. Each would be exposed as a different operation on the service. 12. Click Finish to complete the wizard. HATS will generate the support files necessary for creating a web service using the IBM Rational Software Delivery Platform tools. Notice the new Java classes, including CustomerServices, in the webserviceclasses folder under your Source folder: Lesson checkpoint In the previous sections, you learned how to: Create web service support files, which are needed to create the actual web service Creating the SOAP-based web service You are now ready to create the SOAP-based web service, including the WSDL (Web Services Description Language). A WSDL describes a web service and its operations, including its inputs and outputs. The Creating Web Services using HATS 36

37 caller of the web service will consume this WSDL file in order to know what operations are available and inputs required for each (if applicable). 13. Select the CustomerServices file, right-click and select Web Services > Create Web Service. The Web Service wizard will appear. This wizard enables you to generate the actual WSDL and to select whether or not to deploy and start the service on the server. The wizard also enables you to create a sample client. For this tutorial, you will not generate a sample client since you have the ability to test the service using the Web Services Explorer. 14. Ensure the Web service type field says Bottom up Java bean Web Service. This means the web service will be constructed from an existing Java class. Also ensure the Service implementation field says webserviceclasses.customerservices. 15. Ensure the first section says Start service. If not, use the slider on the left side to select Start. This section controls whether the service is just built, built and installed, or built, installed, and started. Creating Web Services using HATS 37

38 16. Ensure the second section indicates No client since you do not need to build an actual client at this time (you will use the Web Services Explorer later to test the service). 17. Click Next. 18. In the WebSphere JAX-WS Bottom Up Web Service Configuration panel, enable the setting Generate WSDL file into the project to generate the WSDL file. 19. Click Next, leave the WSDL options as default. Click Next again to update the application to the server. Creating Web Services using HATS 38

39 20. Leave the publication options as default. Click Finish to complete the wizard. Your web service has been created and is installed on your local WebSphere Application Server. The next step is to test the service to confirm it works properly. Testing the SOAP-based web service The IBM Rational Software Delivery Platform provides the Web Services Explorer tool to test web services. In this section you will learn how to test your web service using this tool. 21. To launch the Web Services Explorer, expand the Web Content > /WEB-INF/Web Service Definitions folder, select CustomerServices, right-click and select Web Services > Test with Web Services Explorer. Creating Web Services using HATS 39

40 After a few moments, the Web Services Explorer browser window will open. You should see your getcustomerinformationprocessws method listed. 22. Click the getcustomerinformationprocessws link. In the body section, click the Add link next to arg0 to add input parameters. 23. Find the customernumber parameter. Recall this is the name of the prompt action you added to the macro earlier. Click the Add link next to customernumber to create the input field. 24. In the customernumber field, supply a valid value such as and click the Go button. Creating Web Services using HATS 40

41 When the operation is called, HATS will initiate a new connection to the host system and play the macro. Prompt actions will be filled from values supplied by the caller and extract actions will collect data. Results are then displayed in the Status area. 25. In the Web Services Explorer, notice the outputs in the Status panel. Remember these are the macro extracts you created in your macro. For example, notice customername shows the name of the customer with the supplied customer number. Now scroll up and switch to the Source view. 26. In the Source view, notice the SOAP Request Envelope and SOAP Response Envelope. This is the actual XML that was sent and received during the operation. You will now test the web service operation with an invalid customer number. Recall how you created an alternate flow for this scenario in your macro using the Visual Macro Editor. Creating Web Services using HATS 41

42 27. Switch back to the Actions area, find the customernumber field, type an invalid value such as 00200, and click Go. 28. Switch back to the Status area, click the Form link near the top to switch to the Form view, and scroll down and find the errormessage output parameter. Notice it shows the extracted error message. The caller of the web service can use this information to determine what step to take next. For example, the caller might display the message to a user. Lesson checkpoint In the previous sections, you learned how to: Create a SOAP-based web service and deploy it to the server Test a web service using the Web Services Explorer Creating RESTful web service The Integration Object can also be used to create RESTful web services. Next, you will use the Integration Object to create RESTful web services. There are different HTTP methods and parameters that you can use to create the services. Which one you choose depends upon your specific needs. For example, if you want to expose a service to the caller for getting data, a web service using the HTTP GET method would be a good idea. In the other hand, when submitting the sensitive information to the service provider, the HTTP POST method may be more suitable. In the next section, we will create four different RESTful services using the HTTP GET method with the query/path parameter and the HTTP POST method with the entity/form parameter. You may choose your preferred section to create the service; completion of all sections is not required. Create the RESTful web service using the HTTP GET method with the query parameter The HTTP GET method is typically used to list the collection of resources and perhaps other details of the collection's members. Now you will learn how to create a service using the HTTP method with the query parameter. A query string is appended to the request URL with a leading "?" and then name/value pairs. To create the service, right-click on your Integration Object and select Create RESTful Service Files. 1. In the Name field, type GetCustInfoService1. Your wizard panel will look like this: Creating Web Services using HATS 42

43 2. Click Next. 3. In the URI Suffix field, enter the URI suffix to which you want to map the resource class. Type get_cust_info_1. You will see the panel like this: 4. Click the Add button to add a HTTP method for the service. 5. In the HTTP Method field, select GET. 6. Click Next twice to go to the Configure JAX-RS resource method panel. You will see this panel: Creating Web Services using HATS 43

44 7. Notice that QueryParameter is chosen by default. Click Finish to return to the Configure Jax-RS Resource class panel. 8. Click Finish to create the service class files. Now you have created a service that uses HTTP GET method with the query parameter. The query parameter specified will be used as the input in the Integration Object. The web service client may use an URL similar below to access the service: You may go on to next sections to create another service or jump to Testing RESTful web services to test your service. Create the RESTful web service using the HTTP GET method with the path parameter 9. You may also create the service using the HTTP method with the path parameter. When using path parameters, you specify parameters in the request URL. To create the service, right-click on your Integration Object and select Create RESTful Service Files. 10. In the Name field, type GetCustInfoService2. Your wizard panel will look like this: Creating Web Services using HATS 44

45 11. Click Next. 12. In the URI Suffix field, type get_cust_info_2. You will see the panel like this: 13. Click the Add button to add a HTTP method for the service. 14. In the HTTP Method field, select GET. 15. Click Next twice to go to the Configure JAX-RS resource method panel. 16. In the URI Suffix field, enter the suffix you want to add to the URI for mapping this method to your JAX-RS resource. Type {customernumber}. 17. Edit the method parameter customernumber then select the parameter type to PathParam. 18. Click OK. Creating Web Services using HATS 45

46 You will see the panel like this: 19. Click Finish to return to the Configure Jax-RS Resource class panel. 20. Click Finish to create the service class files. Now you ve created a service that uses HTTP GET method with the path parameter. The path parameter specified will be used as the input in the Integration Object. The web service client may use an URL similar to the sample as below to access the service: You may go on to next sections to create another service or jump to Testing RESTful web services to test your service. Create the RESTful web service using HTTP POST method with the entity parameter 21. The HTTP POST method is typically used to create a new entry in the collection. The new entry's URL is assigned automatically and is usually returned by the operation. In addition, the HTTP POST requests may be used in the service and include parameters in the POST body when passing sensitive information or long/complex parameters to the server. There are two types of parameter that you can use in the service using the HTTP POST method: the entity parameter and the form parameter. Now you will learn how to create the service using HTTP POST method with the entity prarmeter. To create the service using HTTP POST method with the entity prarmeter, right-click on your Integration Object and select Create RESTful Service Files. 22. In the Name field, type GetCustInfoService3. Creating Web Services using HATS 46

47 Your wizard panel will look like this: 23. Click Next. 24. In the URI Suffix field, type get_cust_info_3. You will see the panel like this: 25. Click the Add button to add a HTTP method for the service. 26. In the HTTP Method field, select POST. 27. Click Next twice to go to the Configure JAX-RS resource method panel. 28. If the resource is using HTTP POST method (or PUT method) in the service, you can specify the content type of request message in the Consumes field. You may specify multiple formats with a comma, such as application/xml, application/json. In this tutorial, keep the default value in the field. Creating Web Services using HATS 47

48 29. The content type of the response message is definded in the Produces field. You can specify multiple formats with a comma, such as application/xml, application/json. In this tutorial, keep the default value in the field. 30. Click Finish. 31. Click Finish to create the service class files. Now you ve created a service that uses HTTP POST method with the entity parameter. You may go on to next sections to create another service or jump to Testing RESTful web services to test your service. Create the RESTful web service using HTTP POST method with the form parameter An HTML form is a section of a document containing the content and control elements. When the web service client accessing the service, the form will be sent to the server using the HTTP POST method. Next, we will create the service using HTTP POST method with the form parameter. 32. To create a service using HTTP POST method with the form parameter, right-click on your Integration Object and select Create RESTful Service Files. 33. In the Name field, type GetCustInfoService4. Your wizard panel will look like this: Creating Web Services using HATS 48

49 34. Click Next. 35. In the URI Suffix field, type get_cust_info_4. You will see the panel like this: 36. Click the Add button to add a HTTP method for the service. 37. In the HTTP Method field, select POST. 38. Click Next twice to go to the Configure JAX-RS resource method panel. 39. In the Consumes field, type application/x-www-form-urlencoded. 40. Click the entity parameter, then the Edit button. You will see this panel: Creating Web Services using HATS 49

50 41. In the Parameter Type drop-down, select FormParam. 42. In the Parameter Name field, type customernumber. 43. In the Type field, click Browser button. 44. In the Choose a type field, type java.lang.string. You will see the panel like this: 45. Select String java.lang, click OK. 46. In the Name field, type customernumber. Creating Web Services using HATS 50

51 47. Click OK. 48. Click Finish to create the service class files. Now you ve created a service that uses HTTP POST method with the form parameter. Lesson checkpoint In the previous sections, you learned how to: Create RESTful web services using HTTP GET method with the query parameter and path parameter. Create RESTful web services using HTTP POST method with the entity parameter and form parameter Testing the RESTful web services Now you are ready to test your RESTful web service. To test RESTful web services, there are numbers of tools available for you, such as Poster (a Firefox Addon), rest-client from Google, or Eclipse plugin RestClient Tool, etc. In this section, you will learn how to use the Firefox web browser and the Firefox Add-on Poster to test your RESTful web services. 49. Before testing the web service, you need to download and install the Poster. To do this, launch your Firefox web browser. Go to Add-ons Manager by clicking on Tools > Add-ons. 50. In Search all add-ons field, type poster, press the ENTER key. 51. Find the Add-on Poster from the search result and click Install to install the add-on. 52. Restart the Firefox web browser as requested. 53. To launch Poster, click on Open AddPoster button on the Firefox Add-on bar. Creating Web Services using HATS 51

52 You will see the Poster panel like this: Now you will learn how to test your web services. You may jump to the appropriate section to test the service that you have been created. Test the RESTful web service that uses HTTP GET method with the query parameter 54. To test the service get_cust_info_1, type in the Poster main window. 55. Assum that the customer number you are going to query is Move to the Parameter tab, type customernumber in the Name field and in the Value field. Click Add/Change button to add the parameter. Creating Web Services using HATS 52

53 Your panel should look like this: 56. Click on the Get button in the Actions section to submit the request. You will see the progress window like this: Once the server responds, you will receive the output in the Response window including the customer information in it: Creating Web Services using HATS 53

54 57. Alternatively, you may paste the URL in the URL Address Bar in the Poster main window and submit the request. The URL of the request looks like: After you submitted the request, the output page will look like: Now you have learned how to test your service that uses HTTP GET method with query parameter. You may jump to the lesson checkpoint if you have completed all tests for your service(s). Creating Web Services using HATS 54

55 Test the RESTful web service that uses HTTP GET method with the path parameter Next, you will test the service get_cust_info_2 that uses HTTP GET method with the path parameter. When using the path parameter, you specify the parameters in your request URL and submit. You specified the URI suffix in the Configure JAX-RS Resource Method wizard when creating this service previously. Now you will enter the path parameter for the customer number in the request URL. To do this, type in the URL Address Bar in the Firefox browser and press the ENTER key. The output will look like the following: 58. Next, you will test the service with an invalid customer number 300. To do this, type to the URL Address bar and press the ENTER key. The invalid customer number 300 will result an invalid number error from host system like: Creating Web Services using HATS 55

56 Now you ve learned how to test your service that uses the HTTP GET method with the path parameter. You may jump to the lesson checkpoint if you have completed all tests for your service(s). Test the RESTful web service that uses HTTP POST method with the entity parameter Next, you will test the service get_cust_info_3 that uses HTTP POST method with the entity parameter. To do this, type in the Poster main window. 59. Move to the Content to Send tab. 60. In the Content Type field, type application/json to specify the content type to JSON type. 61. In the text area, type the content to send in JSON format: {"input":{"customernumber": " "}} Your panel should look like this: Creating Web Services using HATS 56

57 Note: You may also input the content to send in XML format. To do this, specify the content type to application/xml in the step 61 and enter the content in XML format as shown below: <input> <customernumber> </customernumber> </input> Your panel should look like this: Creating Web Services using HATS 57

58 62. The content type of the response message that you specified in the Produces field is application/xml, application/json. The response message will be in XML format if you don t specify the content type when calling the service: Creating Web Services using HATS 58

59 63. To specify the content type of the response message to JSON type, move to the Headers tab. 64. In the Name field, type Accept. 65. In the Value field, type application/json. Click Add/Change button to add the header. Your panel will look like this: Note: If you want the output data to be in in XML format, you may specify the content type to application/xml here. 66. Click the POST button to invoke the request. You will see the progress window: 67. Once the server responds, you will receive the output in the Response window including the customer information in it: Creating Web Services using HATS 59

60 Now you have learned how to test your service that uses the HTTP POST method with the entity parameter. You may jump to the lesson checkpoint if you have completed all tests for your service(s). Test the RESTful web service that uses HTTP POST method with the form parameter 68. And finally, you will test the service get_cust_info_4 that uses HTTP POST method with the form parameter. To do this, type in the Poster main window. 69. Move to the Content to Send tab. Specify the content type to application/x-www-formurlencoded in the Content Type field. 70. In the text box, type customernumber= Your panel should look like this: Creating Web Services using HATS 60

61 71. Move to Headers tab and ensure that no header specified. 72. Move to the Parameters tab and ensure that no parameter specified. 73. Click the POST button to invoke the request. You will see the progress window: 74. Once the server responds, you will receive the output in the Response window including the customer information in it: Creating Web Services using HATS 61

62 Now you have learned how to test your service that uses HTTP POST method with the form parameter. Lesson checkpoint In the previous sections, you learned how to: Test RESTful web services using the web browser and Poster. Conclusion This concludes the tutorial on creating web services using IBM Rational Host Access Transformation Services (HATS). This tutorial has shown the tools available to a HATS developer to create web services that provide access to proven, critical green screen application processes and data. These services can be hosted on the proven WebSphere Application Server and safely exposed and accessed by external partners or internal organizations. Please report any errors in this tutorial to Jude Hung (judehung@tw.ibm.com). Creating Web Services using HATS 62

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

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

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

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

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

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

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

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

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

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

How to Edit Your Website

How to Edit Your Website How to Edit Your Website A guide to using your Content Management System Overview 2 Accessing the CMS 2 Choosing Your Language 2 Resetting Your Password 3 Sites 4 Favorites 4 Pages 5 Creating Pages 5 Managing

More information

Maintain an ILE RPG application using Remote System Explorer

Maintain an ILE RPG application using Remote System Explorer Maintain an ILE RPG application using Remote System Explorer ii Maintain an ILE RPG application using Remote System Explorer Contents Maintain an ILE RPG application using Remote System Explorer.......

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

Microsoft Office 2016 Mail Merge

Microsoft Office 2016 Mail Merge Microsoft Office 2016 Mail Merge Mail Merge Components In order to understand how mail merge works you need to examine the elements involved in the process. In any mail merge, you'll deal with three different

More information

Working with Mailbox Manager

Working with Mailbox Manager Working with Mailbox Manager A user guide for Mailbox Manager supporting the Message Storage Server component of the Avaya S3400 Message Server Mailbox Manager Version 5.0 February 2003 Copyright 2003

More information

Rational Developer for Power Systems Software

Rational Developer for Power Systems Software Lab 01 Maintain an IBM i application using Remote Systems Explorer Level: Introductory April 2010 Copyright International Business Machines Corporation, 2010. All rights reserved. US Government Users Restricted

More information

How to Edit Your Website

How to Edit Your Website How to Edit Your Website A guide to using your Content Management System Overview 2 Accessing the CMS 2 Choosing Your Language 2 Resetting Your Password 3 Sites 4 Favorites 4 Pages 5 Creating Pages 5 Managing

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

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

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

Oracle General Navigation Overview

Oracle General Navigation Overview Oracle 11.5.9 General Navigation Overview 1 Logging On to Oracle Applications You may access Oracle, by logging onto the ATC Applications Login System Status page located at www.atc.caltech.edu/support/index.php

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

Visual Workflow Implementation Guide

Visual Workflow Implementation Guide Version 30.0: Spring 14 Visual Workflow Implementation Guide Note: Any unreleased services or features referenced in this or other press releases or public statements are not currently available and may

More information

The following instructions cover how to edit an existing report in IBM Cognos Analytics.

The following instructions cover how to edit an existing report in IBM Cognos Analytics. IBM Cognos Analytics Edit a Report The following instructions cover how to edit an existing report in IBM Cognos Analytics. Navigate to Cognos Cognos Analytics supports all browsers with the exception

More information

IBM z/os Management Facility Hands-on Lab

IBM z/os Management Facility Hands-on Lab IBM z/os Management Facility Hands-on Lab Session 9075 SHARE in Anaheim March 2011 Anuja Deedwaniya anujad@us.ibm.com Page 1 of 45 Lab Agenda Brief overview of z/osmf Start the hands on Lab Logon to z/osmf

More information

ARCAD 5250 Emulator for RDi and Eclipse. Tutorial

ARCAD 5250 Emulator for RDi and Eclipse. Tutorial ARCAD 5250 Emulator for RDi and Eclipse Tutorial For IBM Rational Developer for i version: 7.5+ For Eclipse version: 3.4+ Date: Jun-09 Copyright 1992, 2009 by ARCAD Software, Inc. All rights reserved.

More information

Navigate to Cognos Cognos Analytics supports all browsers with the exception of Microsoft Edge.

Navigate to Cognos Cognos Analytics supports all browsers with the exception of Microsoft Edge. IBM Cognos Analytics Create a List The following instructions cover how to create a list report in IBM Cognos Analytics. A list is a report type in Cognos that displays a series of data columns listing

More information

Sage Estimating (SQL) v17.13

Sage Estimating (SQL) v17.13 Sage Estimating (SQL) v17.13 Sage 100 Contractor (SQL) Integration Guide December 2017 This is a publication of Sage Software, Inc. 2017 The Sage Group plc or its licensors. All rights reserved. Sage,

More information

Login: Quick Guide for Qualtrics May 2018 Training:

Login:   Quick Guide for Qualtrics May 2018 Training: Qualtrics Basics Creating a New Qualtrics Account Note: Anyone with a Purdue career account can create a Qualtrics account. 1. In a Web browser, navigate to purdue.qualtrics.com. 2. Enter your Purdue Career

More information

Introductory Exercises in Microsoft Access XP

Introductory Exercises in Microsoft Access XP INFORMATION SYSTEMS SERVICES Introductory Exercises in Microsoft Access XP This document contains a series of exercises which give an introduction to the Access relational database program. AUTHOR: Information

More information

Introduction to Cognos

Introduction to Cognos Introduction to Cognos User Handbook 7800 E Orchard Road, Suite 280 Greenwood Village, CO 80111 Table of Contents... 3 Logging In To the Portal... 3 Understanding IBM Cognos Connection... 4 The IBM Cognos

More information

Welcome In this chapter

Welcome In this chapter 1 Welcome In this chapter Welcome to ProWORX NxT 2.10 2 Installing ProWORX NxT 3 Starting ProWORX NxT 5 Authorizing ProWORX NxT 8 Customer support 11 ProWORX NxT User s Guide Welcome to ProWORX NxT 2.10

More information

Oracle Enterprise Manager Oracle Database and Application Testing. Application Testing Suite Lab. Session S318966

Oracle Enterprise Manager Oracle Database and Application Testing. Application Testing Suite Lab. Session S318966 Oracle Enterprise Manager Oracle Database and Application Testing Application Testing Suite Lab Session S318966 Oracle Enterprise Manager 11g Application Testing Suite 9.1 Hands on Lab Introduction to

More information

FileNET Guide for AHC PageMasters

FileNET Guide for AHC PageMasters ACADEMIC HEALTH CENTER 2 PageMasters have the permissions necessary to perform the following tasks with Site Tools: Application Requirements...3 Access FileNET...3 Login to FileNET...3 Navigate the Site...3

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

CA Gen. Gen Studio Overview Guide. Release 8.5. Third Edition

CA Gen. Gen Studio Overview Guide. Release 8.5. Third Edition CA Gen Gen Studio Overview Guide Release 8.5 Third Edition This Documentation, which includes embedded help systems and electronically distributed materials (hereinafter referred to as the Documentation

More information

Advanced Training Manual: Surveys Last Updated: October 2013

Advanced Training Manual: Surveys Last Updated: October 2013 Advanced Training Manual: Surveys Last Updated: October 2013 Advanced Training Manual: Surveys Page 1 of 28 Table of Contents Introduction Training Objective Surveys Overview Survey Table Survey Options

More information

Poet Image Description Tool: Step-by-step Guide

Poet Image Description Tool: Step-by-step Guide Poet Image Description Tool: Step-by-step Guide Introduction This guide is designed to help you use the Poet image description tool to add image descriptions to DAISY books. The tool assumes you have access

More information

WebStudio User Guide. OpenL Tablets BRMS Release 5.18

WebStudio User Guide. OpenL Tablets BRMS Release 5.18 WebStudio User Guide OpenL Tablets BRMS Release 5.18 Document number: TP_OpenL_WS_UG_3.2_LSh Revised: 07-12-2017 OpenL Tablets Documentation is licensed under a Creative Commons Attribution 3.0 United

More information

There are six main steps in creating web pages in FrontPage98:

There are six main steps in creating web pages in FrontPage98: This guide will show you how to create a basic web page using FrontPage98 software. These instructions are written for IBM (Windows) computers only. However, FrontPage is available for Macintosh users

More information

Checkbox Quick Start Guide

Checkbox Quick Start Guide Checkbox 5.0 - Quick Start Guide This How-To Guide will guide you though the process of creating a survey and adding a survey item to a page. Contents: - Log-In - How to create a survey - How to add/change

More information

Introduction to Microsoft Word 2007 Prepared by:

Introduction to Microsoft Word 2007 Prepared by: Introduction to Microsoft Word 2007 Prepared by: INSTITUTE for ADVANCED STUDY IAS Information Technology Group Einstein Drive, Princeton, NJ 08540 10/28/08 2 TABLE OF CONTENTS INTRODUCTION... 6 GETTING

More information

Procedures Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E

Procedures Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E Procedures Oracle FLEXCUBE Universal Banking Release 12.0 [May] [2012] Oracle Part Number E51527-01 Table of Contents Procedures 1. ABOUT THIS MANUAL... 1-1 1.1 INTRODUCTION... 1-1 1.2 AUDIENCE... 1-1

More information

Wholesale Lockbox User Guide

Wholesale Lockbox User Guide Wholesale Lockbox User Guide August 2017 Copyright 2017 City National Bank City National Bank Member FDIC For Client Use Only Table of Contents Introduction... 3 Getting Started... 4 System Requirements...

More information

EDAConnect-Dashboard User s Guide Version 3.4.0

EDAConnect-Dashboard User s Guide Version 3.4.0 EDAConnect-Dashboard User s Guide Version 3.4.0 Oracle Part Number: E61758-02 Perception Software Company Confidential Copyright 2015 Perception Software All Rights Reserved This document contains information

More information

ARCAD 5250 Emulator for WDSc and Eclipse. Tutorial

ARCAD 5250 Emulator for WDSc and Eclipse. Tutorial ARCAD 5250 Emulator for WDSc and Eclipse Tutorial For WDSc version: For Eclipse version: Date: 6.x+ 3.2.x+ Jun-09 Copyright 1992, 2009 by ARCAD Software, Inc. All rights reserved. The following terms are

More information

Useful Google Apps for Teaching and Learning

Useful Google Apps for Teaching and Learning Useful Google Apps for Teaching and Learning Centre for Development of Teaching and Learning (CDTL) National University of Singapore email: edtech@groups.nus.edu.sg Table of Contents About the Workshop...

More information

Building and Customizing an Interactive Report

Building and Customizing an Interactive Report Building and Customizing an Interactive Report Purpose This tutorial shows you how to build, use and customize an Interactive Report in Oracle Application Express 3.1. Time to Complete Approximately 30

More information

OU EDUCATE TRAINING MANUAL

OU EDUCATE TRAINING MANUAL OU EDUCATE TRAINING MANUAL OmniUpdate Web Content Management System El Camino College Staff Development 310-660-3868 Course Topics: Section 1: OU Educate Overview and Login Section 2: The OmniUpdate Interface

More information

WebConnect Through the Internet

WebConnect Through the Internet WebConnect Through the Internet WebConnect Table of Contents i Chapter 1. Table of Contents Page INTRODUCTION...1 Chapter 2. ACCESSING DataLink SM...2 Chapter 3. FEATURES OF WebConnect...10 File Menu Options...10

More information

WA L KT H R O U G H 1

WA L KT H R O U G H 1 WA L KT H R O U G H 1 udig Install and Introduction 08 June 2008 TABLE OF CONTENTS 1Goals...3 2Installing and Running The udig Application...4 3Online Documentation and Tutorials...8 3.1Help Categories...9

More information

MAIL MERGE DIRECTORY USE THE MAIL MERGE WIZARD

MAIL MERGE DIRECTORY USE THE MAIL MERGE WIZARD MAIL MERGE DIRECTORY USE THE MAIL MERGE WIZARD When working with the Mail Merge feature, it is possible to create several types of documents, such as directories. A directory is a list of the data in the

More information

WA2018 Programming REST Web Services with JAX-RS WebLogic 12c / Eclipse. Student Labs. Web Age Solutions Inc.

WA2018 Programming REST Web Services with JAX-RS WebLogic 12c / Eclipse. Student Labs. Web Age Solutions Inc. WA2018 Programming REST Web Services with JAX-RS 1.1 - WebLogic 12c / Eclipse Student Labs Web Age Solutions Inc. Copyright 2012 Web Age Solutions Inc. 1 Table of Contents Lab 1 - Configure the Development

More information

Microsoft Excel is a spreadsheet tool capable of performing calculations, analyzing data and integrating information from different programs.

Microsoft Excel is a spreadsheet tool capable of performing calculations, analyzing data and integrating information from different programs. About the Tutorial Microsoft Excel is a commercial spreadsheet application, written and distributed by Microsoft for Microsoft Windows and Mac OS X. At the time of writing this tutorial the Microsoft excel

More information

Skills Exam Objective Objective Number

Skills Exam Objective Objective Number Overview 1 LESSON SKILL MATRIX Skills Exam Objective Objective Number Starting Excel Create a workbook. 1.1.1 Working in the Excel Window Customize the Quick Access Toolbar. 1.4.3 Changing Workbook and

More information

Website Management with the CMS

Website Management with the CMS Website Management with the CMS In Class Step-by-Step Guidebook Updated 12/22/2010 Quick Reference Links CMS Login http://staging.montgomerycollege.edu/cmslogin.aspx Sample Department Site URLs (staging

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

The first time you open Word

The first time you open Word Microsoft Word 2010 The first time you open Word When you open Word, you see two things, or main parts: The ribbon, which sits above the document, and includes a set of buttons and commands that you use

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

CIS 231 Windows 7 Install Lab #2

CIS 231 Windows 7 Install Lab #2 CIS 231 Windows 7 Install Lab #2 1) To avoid certain problems later in the lab, use Chrome as your browser: open this url: https://vweb.bristolcc.edu 2) Here again, to avoid certain problems later in the

More information

User Guide Using AuraPlayer

User Guide Using AuraPlayer User Guide Using AuraPlayer AuraPlayer Support Team Version 2 2/7/2011 This document is the sole property of AuraPlayer Ltd., it cannot be communicated to third parties and/or reproduced without the written

More information

TECHNOLOGY COMPETENCY ASSESSMENT MODULE Microsoft Access

TECHNOLOGY COMPETENCY ASSESSMENT MODULE Microsoft Access TECHNOLOGY COMPETENCY ASSESSMENT MODULE Microsoft Access This module was developed to assist students in passing the SkillCheck Incorporated Access 2003 Technology Competency Assessment. It was last updated

More information

Mend for Eclipse quick start guide local analysis

Mend for Eclipse quick start guide local analysis The Semmle Mend for Eclipse plugin allows users to view Semmle results in Eclipse. This document describes how to install and use the plugin for local analysis. You can install the plugin using a Semmle

More information

Basic Millennium INTRODUCTION

Basic Millennium INTRODUCTION Basic Millennium INTRODUCTION Welcome to the Basic Millennium tutorial. Navigation tools, such as the Continue button, will display as you progress through the presentation, while playback functions are

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

User Guide. Web Intelligence Rich Client. Business Objects 4.1

User Guide. Web Intelligence Rich Client. Business Objects 4.1 User Guide Web Intelligence Rich Client Business Objects 4.1 2 P a g e Web Intelligence 4.1 User Guide Web Intelligence 4.1 User Guide Contents Getting Started in Web Intelligence 4.1... 5 Log into EDDIE...

More information

Using Mapmaker s Toolkit. In this tutorial, you will learn the following basic elements of Mapmaker s Toolkit:

Using Mapmaker s Toolkit. In this tutorial, you will learn the following basic elements of Mapmaker s Toolkit: Using Mapmaker s Toolkit Mapmaker s Toolkit is a useful piece of software that allows you and your students to create customized physical, cultural and historical maps of hundreds of countries, states

More information

Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR

Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR REPORT... 3 DECIDE WHICH DATA TO PUT IN EACH REPORT SECTION...

More information

ChemSense Studio Client Version 3.0.7

ChemSense Studio Client Version 3.0.7 Quick Start Guide: ChemSense Studio Client Version 3.0.7 January 5, 2005 Comments/Questions/Bug Report? E-mail: chemsense-contact@ctl.sri.com Background The ChemSense Studio Client software supports the

More information

2015 Beta 2 Tutorials

2015 Beta 2 Tutorials 2015 Beta 2 Tutorials 2015 Beta 2 FOR WINDOWS & UNIX & LINUX Contents 1 Tutorial 2: Config, Deploy & Run the Application... 1 1.1 Task 1: Configure the database type... 1 1.2 Task 2: Configure the database

More information

Module 3: Working with C/C++

Module 3: Working with C/C++ Module 3: Working with C/C++ Objective Learn basic Eclipse concepts: Perspectives, Views, Learn how to use Eclipse to manage a remote project Learn how to use Eclipse to develop C programs Learn how to

More information

FrontPage 2000 Tutorial -- Advanced

FrontPage 2000 Tutorial -- Advanced FrontPage 2000 Tutorial -- Advanced Shared Borders Shared Borders are parts of the web page that share content with the other pages in the web. They are located at the top, bottom, left side, or right

More information

EVALUATION ONLY. WA2097 WebSphere Application Server 8.5 Administration on Linux. Student Labs. Web Age Solutions Inc.

EVALUATION ONLY. WA2097 WebSphere Application Server 8.5 Administration on Linux. Student Labs. Web Age Solutions Inc. WA2097 WebSphere Application Server 8.5 Administration on Linux Student Labs Web Age Solutions Inc. Copyright 2013 Web Age Solutions Inc. 1 Table of Contents Directory Paths Used in Labs...3 Lab Notes...4

More information

In this Tutorial we present tips and trick for the development enviroment eclipse and the extension MyEclipse.

In this Tutorial we present tips and trick for the development enviroment eclipse and the extension MyEclipse. Tips and tricks for eclipse and the IDE MyEclipse In this Tutorial we present tips and trick for the development enviroment eclipse and the extension MyEclipse. Generals Author: Sascha Wolski Sebastian

More information

Welcome to Keyboarding Pro DELUXE Online (KPDO)

Welcome to Keyboarding Pro DELUXE Online (KPDO) Welcome to Keyboarding Pro DELUXE Online (KPDO) Introduction to the KPDO Instructor Portal The KPDO Instructor Portal provides you the tools you need to set up classes, monitor each student's work closely,

More information

CSCI 161: Introduction to Programming I Lab 1a: Programming Environment: Linux and Eclipse

CSCI 161: Introduction to Programming I Lab 1a: Programming Environment: Linux and Eclipse CSCI 161: Introduction to Programming I Lab 1a: Programming Environment: Linux and Eclipse Goals - to become acquainted with the Linux/Gnome environment Overview For this lab, you will login to a workstation

More information

Funasset Limited Foundry House Foundry Road Taunton Somerset TA1 1JJ. Tel: +44 (0) Fax: +44 (0) mailmarkup.com funasset.

Funasset Limited Foundry House Foundry Road Taunton Somerset TA1 1JJ. Tel: +44 (0) Fax: +44 (0) mailmarkup.com funasset. Funasset Limited Foundry House Foundry Road Taunton Somerset TA1 1JJ Tel: +44 (0)1823 365864 Fax: +44 (0)1823 277266 mailmarkup.com funasset.com Copyright 2012 Funasset Limited. All rights reserved. Products

More information

Version 2.0. Campus 2.0 Student s Guide

Version 2.0. Campus 2.0 Student s Guide Campus 2.0 Student s Guide Version 2.0 Campus 2.0 Student s Guide Error! No text of specified style in document. i Important Notice Copyright 2008 Tegrity, Inc. Disclaimer 2008 Tegrity, Inc. all rights

More information

version 7.6 user manual

version 7.6 user manual version 7.6 user manual 2 Copyright JAVS 1981-2014 Table of Contents Introduction... 4 Getting Started... 5 Login... 5 JAVS Publisher 7 Overview... 6 Search Tool Overview... 7 Search Tool-Detailed Operation...

More information

Rational Developer for IBM i (RDI) Distance Learning hands-on Labs IBM Rational Developer for i. Maintain an ILE RPG application using.

Rational Developer for IBM i (RDI) Distance Learning hands-on Labs IBM Rational Developer for i. Maintain an ILE RPG application using. Rational Developer for IBM i (RDI) IBM Software Distance Learning hands-on Labs IBM Rational Developer for i Maintain an ILE RPG application using Remote System Explorer Verify/compile an RPG source member

More information

Hands-on Lab Session 9909 Introduction to Application Performance Management: Monitoring. Timothy Burris, Cloud Adoption & Technical Enablement

Hands-on Lab Session 9909 Introduction to Application Performance Management: Monitoring. Timothy Burris, Cloud Adoption & Technical Enablement Hands-on Lab Session 9909 Introduction to Application Performance Management: Monitoring Timothy Burris, Cloud Adoption & Technical Enablement Copyright IBM Corporation 2017 IBM, the IBM logo and ibm.com

More information

This document contains information that will help you to create and send graphically-rich and compelling HTML s through the Create Wizard.

This document contains information that will help you to create and send graphically-rich and compelling HTML  s through the Create  Wizard. This document contains information that will help you to create and send graphically-rich and compelling HTML emails through the Create Email Wizard. or warranty by AT&T and is subject to change. 1 Contents

More information

Joomla! 2.5.x Training Manual

Joomla! 2.5.x Training Manual Joomla! 2.5.x Training Manual 1 Joomla is an online content management system that keeps track of all content on your website including text, images, links, and documents. This manual includes several

More information

Kewill Customs Getting Started

Kewill Customs Getting Started Kewill Customs Getting Started Table of Contents Overview of Getting Started... 3 Kewill Customs Navigation... 4 Kewill Customs Navigation... 4 Opening Page Icons... 5 Warning/Status Icons... 7 Opening

More information

VMp Technical Support Phone: Online request:

VMp Technical Support Phone: Online request: Copyright 2011 ViewCast Corporation. All rights reserved. ViewCast, Niagara SCX, ViewCast logo, Osprey, Niagara, SimulStream, Niagara logo, SchedulStream, GoStream, and ViewCast Media Platform (VMp) are

More information

WA2031 WebSphere Application Server 8.0 Administration on Windows. Student Labs. Web Age Solutions Inc. Copyright 2012 Web Age Solutions Inc.

WA2031 WebSphere Application Server 8.0 Administration on Windows. Student Labs. Web Age Solutions Inc. Copyright 2012 Web Age Solutions Inc. WA2031 WebSphere Application Server 8.0 Administration on Windows Student Labs Web Age Solutions Inc. Copyright 2012 Web Age Solutions Inc. 1 Table of Contents Directory Paths Used in Labs...3 Lab Notes...4

More information

In Depth: Writer. The word processor is arguably the most popular element within any office suite. That. Formatting Text CHAPTER 23

In Depth: Writer. The word processor is arguably the most popular element within any office suite. That. Formatting Text CHAPTER 23 CHAPTER 23 In Depth: Writer The word processor is arguably the most popular element within any office suite. That said, you ll be happy to know that OpenOffice.org s Writer component doesn t skimp on features.

More information

FileNET Guide for AHC PageMasters

FileNET Guide for AHC PageMasters PageMasters have the permissions necessary to perform the following tasks with Site Tools: ACADEMIC HEALTH CENTER 2 Application Requirements...3 Access FileNET...3 Log in to FileNET...3 Navigate the Site...3

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

Virtual Infrastructure Web Access Administrator s Guide ESX Server 3.0 and VirtualCenter 2.0

Virtual Infrastructure Web Access Administrator s Guide ESX Server 3.0 and VirtualCenter 2.0 Virtual Infrastructure Web Access Administrator s Guide ESX Server 3.0 and VirtualCenter 2.0 Virtual Infrastructure Web Access Administrator s Guide Revision: 20060615 Item: VI-ENG-Q206-217 You can find

More information

Microsoft Word: Steps To Success (The Bare Essentials)

Microsoft Word: Steps To Success (The Bare Essentials) Microsoft Word: Steps To Success (The Bare Essentials) Workbook by Joyce Kirst 2005 Microsoft Word: Step to Success (The Bare Essentials) Page Contents 1 Starting Word 2 Save 3 Exit 5 Toolbars, Alignment,

More information

Documentation Tool Tutorial Tutorial for Creating a Documentation Tool Interactive in the Texas Gateway

Documentation Tool Tutorial Tutorial for Creating a Documentation Tool Interactive in the Texas Gateway Tutorial for Creating a Documentation Tool Interactive in the Texas Gateway Introduction The Documentation Tool interactive serves as a wizard that can help learners easily document and evaluate goal driven

More information

Workstation Configuration

Workstation Configuration Workstation Configuration December 15, 2017 - Version 9.3 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

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

New Finance Officer & Staff Training

New Finance Officer & Staff Training New Finance Officer & Staff Training Overview MUNIS includes many programs and tools to allow for the management of the District financials. As newer finance officers and staff, you are charged with understanding,

More information

Workstation Configuration

Workstation Configuration Workstation Configuration September 22, 2015 - Version 9 & 9.1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

More information

Microsoft Word Introduction

Microsoft Word Introduction Academic Computing Services www.ku.edu/acs Abstract: This document introduces users to basic Microsoft Word 2000 tasks, such as creating a new document, formatting that document, using the toolbars, setting

More information

Customizing and Administering Project Server Access

Customizing and Administering Project Server Access WEB Customizing and Administering Project Server Access In this chapter Creating and Deleting Users from Project Server 2 Managing User Groups Project Server User Security 4 Using Categories to Control

More information

Microsoft Word 2016 LEVEL 1

Microsoft Word 2016 LEVEL 1 TECH TUTOR ONE-ON-ONE COMPUTER HELP COMPUTER CLASSES Microsoft Word 2016 LEVEL 1 kcls.org/techtutor Microsoft Word 2016 Level 1 Manual Rev 11/2017 instruction@kcls.org Microsoft Word 2016 Level 1 Welcome

More information

Figure 1 Forms category in the Insert panel. You set up a form by inserting it and configuring options through the Properties panel.

Figure 1 Forms category in the Insert panel. You set up a form by inserting it and configuring options through the Properties panel. Adobe Dreamweaver CS6 Project 3 guide How to create forms You can use forms to interact with or gather information from site visitors. With forms, visitors can provide feedback, sign a guest book, take

More information