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

Size: px
Start display at page:

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

Transcription

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

2 Lab instructions The objective of this exercise is to illustrate how to create a HATS portlet that uses Web Express Logon to provide users with single sign on capability to their host application. The end user of the HATS portlet application will not be prompted for host credentials. In this lab exercise, the host credentials are automatically obtained from the Websphere Portal Server Credential Vault and inserted into the host terminal data stream for automatic sign on. Learning objectives Build a HATS v7.1 Portlet Insert and use business logic to access global variables to read and write information to the Portal Credential vault Configure a session to use Web Express Logon, and use the Portal Credential Vault as the repository Use Global variables to perform sophisticated screen recognition Configure the Portal Credential Vault for use with HATS and Web Express Logon Total time: 90 minutes Skill level Intermediate to advanced Audience Programmer Requirements IBM Rational Application Developer (or above) IBM Rational Host Access Transformation Services (HATS) 7.1 WebSphere Portal Toolkit WebSphere Portal v6.0 Test Environment Prerequisites Basic IDE skills Basic understanding of terminal applications Conventions used in this lab Bold font for user interface controls Mono-spaced font for user input and code blocks Italic font for variable names and glossary terms Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 2

3 Create a HATS Portlet 1. Click Create HATS Project ( )from the HATS toolbar. 2. Complete the resulting panel as follows: 3. Type cicsa as the project name. 4. Select Web project. 5. Select WebSphere Portal v6.0 as the Target server. 6. Select the default EAR file name, WPS6_EAR, which will only be used in the studio test environment. 7. Select IBM Portlet as the Portlet API (WEL is not yet supported for JSR 168 Portlet). You will notice a warning at the top of the wizard now that can be ignored. 8. Do not check the Add administrative console support. Administrative console support is not recommended for portlets. 9. You may optionally type additional description and comments such as those indicated in the figure below to fully document your project. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 3

4 10. Fill out the Connection Settings panel using the values listed below, then click Next. 11. Type zserveros.dfw.ibm.com in the Host name field. 12. Type 23 in the Port field. 13. Select 3270E from the Type drop-down list. (Note: if your host is an iseries host, look for comments in the business logic generated later in this lab for adjustments to make) 14. Select 24x80 from the Screen size drop-down list. Note: This host name must match the host name that the Portal administrator uses when creating the Credential Vault slot, The host name must also match the value assigned to the global variable, host. 15. Click Next >. 16. Configure a custom Project Theme. 17. Click Custom. 18. You may select the Project Theme options of your choice. This lab was written for a Custom appearance with the following settings selected: Automatic field advance Field extended attributes Keyboard support Overwrite mode Rendering using Monospaced font Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 4

5 19. Click Next >. 20. Select Blank.jsp from the Template table, and then click Finish to build the HATS portlet, cicsa. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 5

6 Create business logic classes In this section you will create two business logic classes. These classes are required to control the operation of the screen customization events at logon, and to modify the user s credential in the Portal Credential vault when they change. Both of these classes will be placed in the same package, credentialvault. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 6

7 Getcredentials The Getcredential business class reads the slot, host, and applic variables. These variables are required to query the Credential Vault, via the getglobalvariable() method. The getglobalvariable() method returns the user s credentials or a null value if no credentials are found. If a value other than null is returned, the credstatus global variable is set to found, else a value of not_found is set. The status of this global variable is important in the screen customization event logic. All queries to the Credential Vault are always made relative to the current user. Do not modify or remove any of the methods included by the wizard. 21. Select the Create a Java file to Run Custom Business Logic wizard from the toolbar. 22. On the Create a Java class panel select the cicsa project, type Getcredentials as the Class name, type credentialvault as the package name. 23. This class file requires that both global variable helper methods and portlet sample methods be selected, so ensure that there are checks in both of these boxes. 24. Click Finish to build the class file shell. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 7

8 25. Copy the business logic shown below from the sample getcredentials.txt. This file is found on the HATS Materials page, or you may copy it from below. 26. Below is the business logic required to add to the class just created. The source is provided in two places, here below in this document for your reference. In addition a file, getcredentials.txt, has been provided to on the Web site. //Initialize local variables. String credstatus = null; String[] cred = null; String host = null; String slot = null; Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 8

9 String applic = null; //retrieve part one of the slot_id, as defined by the SLOT_ID in the WEL configuration panel slot = blinfo.getglobalvariable("slot").getstring(); //retrieve part two of the slot_id, the host system address as defined in the project host = blinfo.getglobalvariable("host").getstring(); //retrieve part three of the slot_id, the application ID //if you implement this to an iseries, the application ID is not used. //In that case you must comment out the following statement applic = blinfo.getglobalvariable("applic").getstring(); //this next statement attempts to receive the host credentials cred = getusercredential(blinfo, slot, host, applic); //The next two println statements are only used for debugging purposes //Remove these two println statements before deploying System.out.println("Get: Slot="+slot+"_"+host+"_"+applic); if (cred!= null) else credstatus= "found"; credstatus= "not_found"; setglobalvariable(blinfo,"credstatus", credstatus); System.out.println("Get: credstatus="+credstatus); 27. Copy the sample text and paste it into the execute method just below the comment //add code here to perform your business logic. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 9

10 28. Save the file by clicking the save icon,, or press Ctrl+S. 29. Close the window. Setcredentials 30. Select the Create a Java file to Run Custom Business Logic wizard from the toolbar. 31. On the Create a Java class panel select the cicsa project, type Setcredentials as the Class name, and type credentialvault as the package name. This class file requires that both global variable helper methods and portlet sample methods be selected, so ensure that there are checks in both of these boxes. 32. Click Finish to build the class file. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 10

11 33. Below is the business logic required to add to the class just created. The source is provided in two places, here below in this document for your reference. In addition a file, setcredentials.txt, has been provided to on the Web site. This code is shown in the example below //Define the variables required String[] cred = null; String uid = null; String pword = null; String host = null; String slot = null; String applic = null; // retrieve the global variable = slot Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 11

12 // this variable defines part one of the Credential Vault slot_id slot = blinfo.getglobalvariable("slot").getstring(); // retrieve the global variable = host that defines the system being accessed // this variable makes the second part of the full Credential Vault slot_id host = blinfo.getglobalvariable("host").getstring(); // retrieve the global variable = applic // this variable makes the third part of the full Credential Vault slot_id applic = blinfo.getglobalvariable("applic").getstring(); // retrieve the global variable = password // this class is called when a valid password entered by the user pword = blinfo.getglobalvariable("password").getstring(); // retrieve the global variable = user uid = blinfo.getglobalvariable("user").getstring(); //The following is a debug statement that should be removed before placing it into production. System.out.println("Set: User="+uid+" Password="+pword+" Slot="+slot+" host="+host+" Application="+applic); /** * This statement will replace the one below if using an iseries host * setusercredential(blinfo, slot, uid, pword, host, null); */ //Insert the user's credentials into the credential vault setusercredential(blinfo, slot, uid, pword, host, applic); //Clear the user ID and the password global variable. //These statement are here for customers who are concerned that this data //remains in memory longer than necessary. setglobalvariable(blinfo,"user", null); setglobalvariable(blinfo,"password", null); 34. Copy the sample text and paste it into the execute method just below the comment //add code here to perform your business logic. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 12

13 35. Save the file by clicking the save icon,, or press Ctrl+S. 36. Close the window. Add Actions to the Start Event The following actions are set in the Start Event. Define a global variable, credstatus, and set to not_found Define a global variable, host, and set to the value of the host address to zserveros.dfw.ibm.com Define a global variable, slot, and set it to the value of the slot ID specified when the Credential Vault is defined, CICS. This value must match the Slot_ID in the Web Express Logon Credential Mapper configuration. Define a global variable, applic, and set the value to the application ID used when creating the Web Express Logon macro, e.g. cicsa. Finally, the business logic class, getcredentials, must be added as the last action in the Start Event. This class is used to determine if the appropriate credentials already exist in the vault for the current user. Note: All the values are case sensitive. Add global variable credstatus 37. Click the Events tab of the project settings and click Start in the Application Events section. 38. Click the Actions tab and then click Add to add the credstatus global variable. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 13

14 39. Select Set global variable and then click Next. 40. Type credstatus in the name field, type not_found in the value field as shown below, and click Finish. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 14

15 Add global variable - slot 41. Add another global variable, slot, and type CICS in the value field and then click Finish. Add global variable - host 42. Add another global variable, host, and type zserveros.dfw.ibm.com in the value field and then click Finish. Add global variable applic 43. Add another global variable, applic, and type cicsa in the value field and then click Finish. Add business logic - Getcredentials Now add the Getcredentials business logic class to the Start Event in order to properly set the value of credstatus. 44. Click Add, select Execute Business logic and click Next. 45. Click Browse to get a list of the available business logic classes, select Getcredentials and click OK. 46. Click Finish to store the action. Start Event actions The actions in the Start Event should look similar to that shown in the figure below. The items may be in any order with one exception, the Run a Java method action must be the last item in the actions list. 47. Click the Run a Java method action and use the Down button to push it to the bottom of the list. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 15

16 48. Save the file by clicking the save icon,, or press Ctrl+S. 49. Close the window Configure Portlet for Web Express Logon This section explains how to enable Web Express Logon for the Portlet. 50. Select the cicsa Settings window. 51. Click the Connections tab, highlight the connection then click Edit. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 16

17 52. Click the Security tab to configure Network Security plug-in. 53. Check Use Web Express Logon then click Configure. 54. Select WebSphere Portal Network Security from the Plug-in type drop-down box then click the Credential Mapper Plug-ins tab. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 17

18 55. Click the Credential Mapper Plugins tab. 56. Click Add and select WebSphere Portal Credential Vault Credential Mapper from the drop-down list, then click OK. 57. Select AuthType_3270Host, type a host mask, *.dfw.ibm.com, to identify the host system. 58. Type CICS as the SLOT_ID and 2 as the SLOT_TYPE. Notes: The host mask may be explicit as we have specified; however, you may also supply a mask of only wild cards, such as *. For example *.dfw.ibm.com would match any host that end in in dfw.ibm.com. The SLOT ID may be any value that you choose, but remember that the value specified here must also be used in the slot global variable. An administrative slot, SLOT_TYPE of 2, is recommended. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 18

19 59. Save the file by clicking the save icon,, or press Ctrl+S. 60. Select main.hco, then save the file by clicking the save icon,, or press Ctrl+S. 61. Close all open panels. Record cicsa macro For this system a macro is required to select the cicsa application and position the system at the CICS logon panel. The Host Terminal Emulator will be used to create this macro. 62. Click on any icon in the cicsa project, right mouse click and select Open HATS Host Terminal -> main. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 19

20 63. Click the Create Screen Capture icon ( ) to capture the DemoNet screen for future use in a later step to automate the login process. 64. Type DemoNet as the screen name and click Finish. 65. Click Record Macro icon ( ) to start recording a macro that will automatically select the CICSA application when the DemoNet menu is recognized 66. Type cicsa as the macro name. Click Finish. 67. Type DemoNet as the screen name. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 20

21 68. Recognize the starting screen by dragging the dotted yellow rectangle (elastic) around the DemoNet logo. No other options are required to be selected on this panel. 69. Click Finish. 70. Type cicsa on the command line and press Enter. 71. Click the Stop Macro icon ( ) to stop recording the macro. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 21

22 72. Type CICSACB2 as the screen name. 73. Identify ending screen for the cicsa macro by selecting the top three lines of the screen with the yellow elastic. 74. Clear the Total number of fields, Number of input fields, and Cursor position checkboxes. 75. Click Finish. 76. Click the Save Macro icon ( ) 77. Capture the CICS sign-on screen for later use by clicking the Create Screen Capture icon ( ) on the Host Terminal toolbar. 78. Accept the default name for the screen, SignonToCics and click Finish. Customize DemoNet screen A screen customization for the DemoNet welcome screen is required with an action to play the cicsa macro to when the DemoNet screen is recognized. 79. Minimize the Host Terminal session for use later. 80. Expand the Screen Captures folder then right click on DemoNet and then click New HATS -> Screen Customization. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 22

23 81. Accept the default name of DemoNet and click Next. 82. Select Use a previously captured screen and select DemoNet from the dropdown list. 83. Identify the screen by stretching the elastic around the DemoNet logo on the screen then click Next. 84. Clear the check from Apply a transformation. 85. Check Play a macro. 86. Select cicsa from the macro dropdown list. 87. Click Finish. 88. Close the window. Record the Web Express Logon macro This section will instruct you on how to record the Web Express Logon macro. 89. Restore the minimized Host Terminal session. The host may terminate the host session due to inactivity, so you may need to disconnect and reconnect the session, or play the cicsa macro again. 90. Click the Record Macro icon, and when asked if you want to record a new macro or append to the open macro, click New. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 23

24 91. Type cicsawel as the name of the macro and click Finish. 92. Name the screen SignonCICS. 93. Place the elastic around the first three lines of the display in order to identify the correct screen. 94. Click Finish. 95. Click the mouse into the first position of the user ID field until you see a mouse click action appear within the Macro Navigator on the left side of the window. It may take 2 or 3 clicks to set the action. 96. Click Add Prompt Action ( ) from the toolbar to insert the prompt for the user ID. Note: The WEL Credential Mapper uses global variables to pass the host user ID and password to the macro processor. Therefore a prompt action is required to retrieve the user ID and password from the global variable and place the data in the terminal presentation space. Extract actions are used when data is to be extracted from a host screen and placed into a global variable. 97. Complete the Add Prompt Action panel as follows. 98. Type user as the name of the prompt, this is the global variable name, 99. Select Use Web Express Logon and ensure Prompt type is set to User ID Type cicsa into the Application ID field Click OK Type atdemo into prompt for the User ID and click OK. This value is used to facilitate the recording of the macro in the live Host Terminal session. It is not recorded Use the mouse to click and place the cursor in the password field. Again, you may have to click more than once Click Add Prompt Action again to insert the prompt for the password Type password as the name, check Use Web Express Logon, select Password as the Prompt type, Type cicsa into the application ID field, and then click OK. Note: The application ID must be entered here again and it must match the value entered when defining the user ID prompt. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 24

25 107. Type demo4you into the prompt for the password and click OK Press Enter to submit the login When you see the screen that shows DFHCE3549 Sign-on is complete (Language ENU). beginning on row 24 column 1, press the Stop Macro icon on the toolbar Type the message number shown at the bottom of the screen as the screen name, DFHCE Specify the screen recognition criteria as follows: 112. Drag the yellow elastic around the message to recognize the screen Clear the checkboxes for Total number of fields Number of input fields Cursor position checkboxes 115. Click Finish Click the Save Macro icon ( ) on the toolbar Click the Screen Capture icon on the toolbar ( ). This screen signifies a successful logon and must be customized in order to store a new user s credentials the first time they log in. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 25

26 118. Type DFHCE3549 for the screen name and then click Finish Minimize the Host Terminal window. Create CICS customization to execute WEL macro 120. Expand the Screen Captures folder, then right mouse click on SignonToCics and then click New HATS >Screen Customization Type SignonToCics_WEL as the name of the new screen customization and then press Next Select Use a previously captured screen and select SignOnToCics Draw the yellow elastic to include the first three lines and then click Next. Note: Make sure that you do not include within the identified area any information that may change, or your screen recognition will fail when that data changes Clear Apply a transformation Check Play a macro, and select cicsawel from the dropdown list Click Finish Click the Screen Recognition Criteria tab, then click the twisty next to Add and select Global Variable Criterion The global variable credstatus must be tested to see if its value is found. Perform the following steps on this panel Select credstatus from the Global variable drop-down list 130. Select Check the string value of this global variable Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 26

27 131. Set the Global variable string value to equal to 132. Type found in the String value field 133. Click OK Save the file by clicking the save icon,, or press Ctrl+S. then close the window. Customize SignonToCics screen to capture credentials If the global variable credstatus is not equal to found, then a transformation must be applied, and once it is determined that the user has successfully logged in, the user s credentials are to be placed into global variables for storing into the Credential Vault From the Screen Capture folder right mouse click on SignonToCics and then click New HATS -> Screen Customization Accept the default name of SignonToCics and press Next Select Use previously captured screen and select SignOnToCics Draw the yellow elastic around the title then click Next Click Use existing transformation 140. Select default.jsp from the dropdown list Click Finish. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 27

28 142. Click the Actions tab Click Add to add an advanced action Click Extract global variable and then click Next Click on the Input checkbox to underline the input fields so that you can see them. Use the elastic to extract the Userid input field and then click Next. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 28

29 146. Type user in the Name field and press Finish Add another extract global variable action, this time use the elastic to capture the password. The password field is defined as a hidden field, so you my get the following pop-up window Click Yes Press Next. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 29

30 150. Type password as the global variable name then press Finish The transform must be performed first. This means that the extracts are performed after the user has entered the data. If necessary, highlight Apply a transform and press Up until the Apply a transform action is listed first Clear Send a host key when action list completes to cause screen to change Click the Screen Recognition Criteria tab, then click the twisty next to Add and select Global Variable Criterion. The only time this screen is to be executed is when the user credentials are not present in the credential vault; therefore, a condition must be added to the customization to test for the presence of the credentials The global variable credstatus must be tested to see if its value is not_found. Perform the following steps on this panel Select credstatus from the Global variable drop-down list Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 30

31 156. Select Check the string value of this global variable 157. Set the Global variable string value to equal to 158. Type not_found in the String value field 159. Click OK Save the file by clicking the save icon,, or press Ctrl+S. and then close the window. Customize DFHCE3549 This screen is used when credentials are present in the vault and the WEL macro is to be used. We will create the screen customization now, but disable the resulting transformation until the credentials are set in the vault From the Screen Captures folder, right mouse click on DFHCE3549 -> New HATS -> Screen Customization to start the Screen Customization Wizard On the Screen Customization panel accept the default name of DFHCE3549 and then click Next Click Use a previously captured screen and select DFHCE3549. You can uncheck the Input checkbox if you no longer want to see the input fields higlighted On the Screen Recognition Criteria panel stretch the yellow elastic around the message number 165. On the Actions panel click Blank in the Select a pattern section and then click Finish When the Insert Host Component screen is shown, just press the Cancel button. Transform DFHCE3549 The DFHCE3549 screen is the screen presented to all users when login is completed. The user is positioned on this screen when they complete their logon, but there is no menu or instructions on what to do next. This section is intended to provide a customized screen from which to initiate the CICS applications. The screen will be transformed to provide a drop-down list of applications from which the user may select, and a button to press to type the transaction code and launch the transaction Make sure you are on the Design tab and in the Free Layout Mode as shown below Click the Layout Mode icon and if necessary select Free Layout Tables to switch to Free Layout Mode. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 31

32 169. On the DFHCE3549.jsp page we will add a simple instruction to select the application, a drop-down list of applications, and add a button to press to launch the application If the Palette is not visible click Window -> Show View -> Palette Click HATS Components in the Palette panel Right mouse click on the HATS form and select Insert -> Paragraph -> Heading 2. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 32

33 173. Draw a box across the entire width of the form in which to insert the heading Click into the box and type Select Desired Application: 175. Click outside the box back onto the free form You will now add an input field which you will define as a drop down list. Open the HATS Components section of the palette and click on the Input field component. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 33

34 177. Use the mouse and drag the component onto the HATS form as shown below When the Screen Region panel appears 179. Check Hidden and Input next to Highlight fields Draw the elastic around the first 8 characters in row Click Finish Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 34

35 182. To modify the properties of the component do the following: 183. Click the Properties tab of the panel below the DFHCD3549.jsp You should be in the Design tab of DFHCD3549.jsp. Click on the component to highlight it. You may have to click more than once. It should show HATS:Component on the tab on the left in the Properties view and Input field should be selected under Components Under Widgets, click Drop-down (data entry) Click on the Widget Settings button. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 35

36 187. Complete the Drop-down (data entry) panel as follows Clear the check from Use project defaults Check Fill from string Type the following string into the List items field: Account Management=menu;Share Trading=mytd; 191. Click OK. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 36

37 192. Now add a button to submit the transaction by performing a right mouse click on any blank area of the HATS form and selecting HATS Tools -> Insert Host Keypad -> Individual Key. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 37

38 193. Check the Enter key then click OK If necessary, use the mouse to draw a field in which the button will be placed The resulting form will look similar to the figure below Click the Preview tab to display how the screen should look when transformed. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 38

39 197. To preview the transformation in the Host Terminal view follow these instructions (if you get any script runtime errors, you can ignore them and just press the No button): 198. Click the Design tab Press Ctrl+S to save the changes 200. Restore the Host Terminal 201. Click Host Screen Preview 202. Now, we don t want this screen transformed until after the user credentials have been set into the vault by performing a regular signon when we first run on the portal server. To do this, open DFHCE3549 from the Screen Customizations folder and click on the Actions tab. Uncheck the Apply a transformation check box, then Save the file. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 39

40 Create StoreCredentials This screen customization, StoreCredentials, is to be recognized and the actions performed when the user manually logs in and credentials must be stored into the vault. To do this an additional screen recognition criteria must added to test to see if credstatus=not_found. When the DFHCE3549 screen appears and credstatus=not_found, an action to execute the setcredentials business logic to store the credentials is required to be run prior to the screen transform. Follow the instructions below to build this screen customization From the Screen Capture folder right mouse click on DFHCE3549 then click New HATS -> Screen Customization Type StoreCredentials as the name and then click Next On the Screen Recognition Criteria screen, click Use a previously captured screen and select DFCE Draw the elastic around the DFHCE3549 message on the last row and then press Next On the Actions page do the following: 208. Select Apply a transformation 209. Select Use existing transformation and select DFHCE3549.jsp from the drop down list Check Add advanced actions to allow additional actions to be added Click Next. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 40

41 212. On the Advanced Actions panel click Add in order to add the business logic that must be run to update the Credential Vault Select Execute Business logic and then click Next. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 41

42 214. On the Define Action Properties panel perform the following actions Click the Browse button to display the list of classes from which to select Select credentialvault.setcredentials from the list Click OK Click Finish to add the method as one of the actions to be performed when this screen is recognized. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 42

43 219. The Run a Java method action must be listed before the Apply a transform action. If it is necessary to move the Run a Java method action, then highlight it and press Up until it is listed first Uncheck Send a host key when action list completes to cause screen to change Click Finish It is necessary to add to the condition that the global variable credstatus must be equal to not_found in order to apply this customization, so double click StoreCredentials in the Screen Customizations folder Click the Screen Recognition Criteria tab then click the twisty next to Add and select Global Variable Criterion to add the global variable condition. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 43

44 224. Select the credstatus global variable from the drop-down list Select Check the string value of this global variable Select equal to from the drop-down list Type not_found Click OK Press Ctrl+S to save the customization then close the window. Test the portlet You are ready to test it in the WebSphere Portal Server Test Environment Right click on the cicsa project and select Debug on Server Click Yes when asked if you want to see the display (debug) terminal Click Manually define a new server when the Define a New Server panel appears Select WebSphere Portal v6.0 Server and then click Next > Type passw0rd in the WebSphere administrator password field and press Next >. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 44

45 235. Type passw0rd for the Portal administrator password Click Next > Click Finish. Note: This process will take several minutes, please be patient. You may monitor the progress by monitoring the Console. Logon to the Portal Server 238. If Automatic Logon is not set in the Websphere Portal Server settings, you will get the Login screen below. Type wpsadmin as the user ID and passw0rd as the password and then click Login in. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 45

46 239. Click the Getting Started section when the browser opens to the application If necessary, click the Rational portlets tab. The HATS panel as shown below will be displayed, but you must first define the Credential Vault slot that the HATS project will use. Define HATS Credential Vault slot In this section you will define the Credential Vault slot to be used by the HATS Portlet. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 46

47 241. Click the Welcome tab Click Administration to access the administration functions Click Access to access the Credential Vault administrative panels. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 47

48 245. Click Credential Vault to access the Credential Vault functions Click Add a vault slot to add the HATS slot. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 48

49 247. Type CICS zserveros.dfw.ibm.com cicsa as the slot name to be used by WEL when accessing this zseries host Click new in the column labeled Vault resource associated with vault slot. Do not use an existing slot or the project will not work Type HATSPortlet in the field next to new Click OK. Notes: Do not share the segment because each user must have unique credentials. If you do not assign a vault resource, then if you ever delete the slot, the data will not be cleared. This could be important as you test your application. The name of the resource can be anything you wish. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 49

50 The panel shown below will be displayed when the Credential Vault slot has been successfully created. Notice message VAUL0014I The vault slot was created successfully is displayed. Test the portlet You have configured the Credential Vault so you may now test your portlet. Switch back to the Rational portlets tab. The CICS Signon panel is displayed because the first time the user starts the project the credentials are not in the Credential Vault The user should type the host ID, atdemo, and Password, demo4you, in the appropriate fields and press the Enter key to log on When the user is successfully logged on they will see the screen shown below. The HATS portlet has now captured your host credentials and stored them into the Credential Vault Select the drop-down list, select Account Management, and click the ENTER button. The figure below will be displayed. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 50

51 254. Now to test the automatic logon functions of the portlet you must disconnect, change the screen event DFHCE3549 to apply the transformation, and reconnect the portlet. Disconnect from the host by clicking Disconnect Go back to you HATS project and open DFHCE3549 from the Screen Customizations folder. On the Actions tab, select the check box for Apply a transformation and Save the file. Make sure the application gets republished Click Restart. Your credentials will be found in the Credential Vault and the Web Express Logon macro will automatically log you on. You should now see the screen shown above signifying that the WEL macro process worked. Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 51

52 Conclusion You used HATS V7.1 to accomplish the following tasks: Built a HATS v7.1 Portlet Inserted and used business logic to access global variables Inserted and used business logic to read and write information to the Portal Credential vault Configured a session to use Web Express Logon that used the Portal Credential Vault as the repository Used Global variables to perform sophisticated screen recognition Transformed a sample application page using the new Free Layout mode Used Host Terminal Preview Tab to preview transformations Configured the Portal Credential Vault for use with HATS and Web Express Logon You should now be familiar with building HATS portlets, using global variables to make decisions as to what screen to display, and how to enable and use Web Express Logon. Please report any errors in this tutorial to Lori Ruffing (lruffing@us.ibm.com). Creating a HATS Portlet Using Web Express Logon and Portal Credential Vault 52

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

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

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 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

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

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

Creating Web Services using IBM Rational HATS For IBM i (5250) Creating Web Services using IBM Rational HATS For IBM i (5250) Creating Web Services using HATS 1 Lab instructions This lab teaches you how to use IBM Rational HATS to create web services that expose logic

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

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

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

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

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

MN Studio Website - User Guide

MN Studio Website - User Guide MN Studio Website - User Guide Version 1.1 MN Studio Website Program 1. Introduction Welcome to the new website program! The MN Studio Website program allows you to create your own website with customized

More information

SQL Server 2005: Reporting Services

SQL Server 2005: Reporting Services SQL Server 2005: Reporting Services Table of Contents SQL Server 2005: Reporting Services...3 Lab Setup...4 Exercise 1 Creating a Report Using the Wizard...5 Exercise 2 Creating a List Report...7 Exercise

More information

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next.

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next. Getting Started From the Start menu, located the Adobe folder which should contain the Adobe GoLive 6.0 folder. Inside this folder, click Adobe GoLive 6.0. GoLive will open to its initial project selection

More information

CENTAUR S REAL-TIME GRAPHIC INTERFACE V4.0 OPERATOR S MANUAL

CENTAUR S REAL-TIME GRAPHIC INTERFACE V4.0 OPERATOR S MANUAL CENTAUR S REAL-TIME GRAPHIC INTERFACE V4.0 OPERATOR S MANUAL TABLE OF CONTENTS Installation... 6 Introduction to Centaur s real-time Graphic Interface... 6 Computer Requirements... 7 Operating System

More information

Using Styles In Microsoft Word 2002

Using Styles In Microsoft Word 2002 INFORMATION SYSTEMS SERVICES Using Styles In Microsoft Word 2002 This document contains a series of exercises in the use of styles in the Microsoft Word 2002 word processing software. AUTHOR: Information

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 Crosstab The following instructions cover how to create a crosstab report in IBM Cognos Analytics. A crosstab is a report type in Cognos that displays an analytical look at

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

WA1685 WebSphere Portal v6.1 Programming. Classroom Setup Guide. Web Age Solutions Inc. Web Age Solutions Inc

WA1685 WebSphere Portal v6.1 Programming. Classroom Setup Guide. Web Age Solutions Inc. Web Age Solutions Inc WA1685 WebSphere Portal v6.1 Programming Classroom Setup Guide Web Age Solutions Inc. Web Age Solutions Inc. 2011 1 Table of Contents Part 1 - Minimum Hardware Requirements...3 Part 2 - Minimum Software

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

Using Respondus with D2L

Using Respondus with D2L Using Respondus with D2L What does Respondus do? Respondus s greatest strength is importing tests into D2L. These tests can come from textbook publishers or Word documents, or they can be created directly

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 7.2 Content Author's Reference and Cookbook Rev. 140225 Sitecore CMS 7.2 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents

More information

HP ALM Overview. Exercise Outline. Administration and Customization Lab Guide

HP ALM Overview. Exercise Outline. Administration and Customization Lab Guide HP ALM 11.00 Administration and Customization Lab Guide Overview This Lab Guide contains the exercises for Administration and Customization of HP ALM 11 Essentials training. The labs are designed to enhance

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

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

Editing the Home Page

Editing the Home Page Editing the Home Page Logging on to Your Web site 1. Go to https://extension.usu.edu/admin/ 2. Enter your Login and Password. 3. Click Submit. If you do not have a login and password you can request one

More information

Impossible Solutions, Inc. JDF Ticket Creator & DP2 to Indigo scripts Reference Manual Rev

Impossible Solutions, Inc. JDF Ticket Creator & DP2 to Indigo scripts Reference Manual Rev Impossible Solutions, Inc. JDF Ticket Creator & DP2 to Indigo scripts Reference Manual Rev. 06.29.09 Overview: This reference manual will cover two separate applications that work together to produce a

More information

Lab 11-1 Lab User Profiles and Tracking

Lab 11-1 Lab User Profiles and Tracking In the following lab instructions, you will be setting up groups, users, and passwords to require password-protected login to Kofax Capture modules. Rights will be assigned to the groups and users that

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 7.0 Content Author's Reference and Cookbook Rev. 130425 Sitecore CMS 7.0 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents

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

The figure below shows the Dreamweaver Interface.

The figure below shows the Dreamweaver Interface. Dreamweaver Interface Dreamweaver Interface In this section you will learn about the interface of Dreamweaver. You will also learn about the various panels and properties of Dreamweaver. The Macromedia

More information

Contents. Announcer Pro Version 4.6 Page 2 of 35 Version V4.6

Contents. Announcer Pro Version 4.6 Page 2 of 35 Version V4.6 User Guide Contents 1. Introduction... 3 1.1. Getting Started... 3 1.2. Navigation... 4 2. Create a Newsletter... 6 2.1. Confirm Company Details... 6 2.2. Choose Template... 8 2.3. Edit Newsletter... 8

More information

IBM WebSphere Java Batch Lab

IBM WebSphere Java Batch Lab IBM WebSphere Java Batch Lab What are we going to do? First we are going to set up a development environment on your workstation. Download and install Eclipse IBM WebSphere Developer Tools IBM Liberty

More information

NC User Conference Tips and Tricks for SAS FM June 16, 2009

NC User Conference Tips and Tricks for SAS FM June 16, 2009 NC User Conference Tips and Tricks for SAS FM June 16, 2009 Reporting 1. CDA Formula (Formatted Statement): To switch out the cell reference for the hardcoded member or dim name, you can go into the formula

More information

The Veritext Vault. User Guide. Veritext s Secure Online Depository. THE VAULT USER GUIDE Updated 8/24/16 1

The Veritext Vault. User Guide. Veritext s Secure Online Depository. THE VAULT USER GUIDE Updated 8/24/16 1 The Veritext Vault Veritext s Secure Online Depository User Guide THE VAULT USER GUIDE Updated 8/24/16 1 Logging In First step is to obtain a username and password from Veritext. Once you have that: 1.

More information

Working with Pages... 9 Edit a Page... 9 Add a Page... 9 Delete a Page Approve a Page... 10

Working with Pages... 9 Edit a Page... 9 Add a Page... 9 Delete a Page Approve a Page... 10 Land Information Access Association Community Center Software Community Center Editor Manual May 10, 2007 - DRAFT This document describes a series of procedures that you will typically use as an Editor

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

Basic Concepts 1. For this workshop, select Template

Basic Concepts 1. For this workshop, select Template Basic Concepts 1 When you create a new presentation, you re prompted to choose between: Autocontent wizard Prompts you through a series of questions about the context and content of your presentation not

More information

Table of Contents COURSE OVERVIEW... 5

Table of Contents COURSE OVERVIEW... 5 Table of Contents COURSE OVERVIEW... 5 DISCUSSION... 5 THE NEW DATABASE FORMAT... 5 COURSE TOPICS... 6 CONVENTIONS USED IN THIS MANUAL... 7 Tip Open a File... 7 LESSON 1: THE NEW INTERFACE... 8 LESSON

More information

HOSPICE ABSTRACTION REPORTING TOOL (HART) USER GUIDE

HOSPICE ABSTRACTION REPORTING TOOL (HART) USER GUIDE HOSPICE ABSTRACTION REPORTING TOOL (HART) USER GUIDE IN SUPPORT OF VERSION 1.5.0 (APRIL 2019) Page 1 of 60 TABLE OF CONTENT TABLE OF CONTENT... 2 INTRODUCTION... 4 INSTALLATION... 4 Installers Access Rights...

More information

Tivoli Common Reporting V Cognos report in a Tivoli Integrated Portal dashboard

Tivoli Common Reporting V Cognos report in a Tivoli Integrated Portal dashboard Tivoli Common Reporting V2.1.1 Cognos report in a Tivoli Integrated Portal dashboard Preethi C Mohan IBM India Ltd. India Software Labs, Bangalore +91 80 40255077 preethi.mohan@in.ibm.com Copyright IBM

More information

PRESENCE. RadEditor Guide. SchoolMessenger 100 Enterprise Way, Suite A-300 Scotts Valley, CA

PRESENCE. RadEditor Guide. SchoolMessenger 100 Enterprise Way, Suite A-300 Scotts Valley, CA PRESENCE RadEditor Guide SchoolMessenger 100 Enterprise Way, Suite A-300 Scotts Valley, CA 95066 800-920-3897 www.schoolmessenger.com Contents Contents... 2 Introduction... 3 What is RadEditor?... 3 RadEditor

More information

BROWSER-BASED SUPPORT CONSOLE USER S GUIDE. 31 January 2017

BROWSER-BASED SUPPORT CONSOLE USER S GUIDE. 31 January 2017 BROWSER-BASED SUPPORT CONSOLE USER S GUIDE 31 January 2017 Contents 1 Introduction... 2 2 Netop Host Configuration... 2 2.1 Connecting through HTTPS using Certificates... 3 2.1.1 Self-signed certificate...

More information

Akkadian Console 4.0

Akkadian Console 4.0 Akkadian Console 4.0 User Guide Copyright and Trademarks: I. Copyright: This website and its content is copyright 2015 Akkadian Labs, LLC. All rights reserved. Except with the prior written permission

More information

PASS4TEST. IT Certification Guaranteed, The Easy Way! We offer free update service for one year

PASS4TEST. IT Certification Guaranteed, The Easy Way!   We offer free update service for one year PASS4TEST IT Certification Guaranteed, The Easy Way! \ http://www.pass4test.com We offer free update service for one year Exam : C2040-915 Title : IBM WebSphere Portal 7.0 Solution Development Vendors

More information

Query Studio Training Guide Cognos 8 February 2010 DRAFT. Arkansas Public School Computer Network 101 East Capitol, Suite 101 Little Rock, AR 72201

Query Studio Training Guide Cognos 8 February 2010 DRAFT. Arkansas Public School Computer Network 101 East Capitol, Suite 101 Little Rock, AR 72201 Query Studio Training Guide Cognos 8 February 2010 DRAFT Arkansas Public School Computer Network 101 East Capitol, Suite 101 Little Rock, AR 72201 2 Table of Contents Accessing Cognos Query Studio... 5

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

Electrical System Functional Definition

Electrical System Functional Definition Electrical System Functional Definition Preface What's New? Getting Started Basic Tasks Advanced Tasks Workbench Description Customizing Glossary Index Dassault Systèmes 1994-2000. All rights reserved.

More information

Remote Support 19.1 Web Rep Console

Remote Support 19.1 Web Rep Console Remote Support 19.1 Web Rep Console 2003-2019 BeyondTrust Corporation. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust Corporation. Other trademarks are the property

More information

HATS APPLICATION DEVELOPMENT FOR A MOBILE DEVICE

HATS APPLICATION DEVELOPMENT FOR A MOBILE DEVICE HATS APPLICATION DEVELOPMENT FOR A MOBILE DEVICE The process for developing a Rational HATS Web application for a mobile device is the same as developing any Rational HATS Web application, with some considerations

More information

A Guided Tour of Doc-To-Help

A Guided Tour of Doc-To-Help A Guided Tour of Doc-To-Help ii Table of Contents Table of Contents...ii A Guided Tour of Doc-To-Help... 1 Converting Projects to Doc-To-Help 2005... 1 Using Microsoft Word... 10 Using HTML Source Documents...

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2013

DOING MORE WITH WORD: MICROSOFT OFFICE 2013 DOING MORE WITH WORD: MICROSOFT OFFICE 2013 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT WORD PAGE 03 Viewing Toolbars Adding and Removing Buttons MORE TASKS IN MICROSOFT WORD

More information

LONG TERM CARE HOSPITAL ASSESSMENT SUBMISSION ENTRY & REPORTING TOOL (LASER) USER GUIDE IN SUPPORT OF VERSION (APRIL 2017)

LONG TERM CARE HOSPITAL ASSESSMENT SUBMISSION ENTRY & REPORTING TOOL (LASER) USER GUIDE IN SUPPORT OF VERSION (APRIL 2017) LONG TERM CARE HOSPITAL ASSESSMENT SUBMISSION ENTRY & REPORTING TOOL (LASER) USER GUIDE IN SUPPORT OF VERSION 1.3.0 (APRIL 2017) Updated 3/2017 TABLE OF CONTENT INTRODUCTION... 4 INSTALLATION... 4 Installers

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

IBM WebSphere Lombardi Edition 7.2 Business Process Management Workshop

IBM WebSphere Lombardi Edition 7.2 Business Process Management Workshop IBM IBM WebSphere Lombardi Edition 7.2 Business Process Management Workshop Lab Exercises Contents LAB 1 BUILD-FROM-SCRATCH LAB - PART 1... 4 1.1 START LOMBARDI AUTHORING ENVIRONMENT... 4 1.1.1 START THE

More information

ADRION PROJECT WEBSITES USER S MANUAL

ADRION PROJECT WEBSITES USER S MANUAL ADRION PROJECT WEBSITES USER S MANUAL September 2018 Summary 1. The ADRION Project Website... 3 2. Content instructions... 3 3. Contacts for technical assistance... 3 4. Login... 3 5. Editable contents...

More information

Start by launching Mozilla To start making a web page, go to File -> New -> Composer Page

Start by launching Mozilla To start making a web page, go to File -> New -> Composer Page Creating a Web Page using Mozilla Composer- A Free Open Source Application Emily Hebard IT Lab School of Information University of Texas at Austin Spring 2003 Objectives Orient to the Mozilla Composer

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

Document Manager 6.0 Users Manual by Scanlon Associates

Document Manager 6.0 Users Manual by Scanlon Associates Document Manager 6.0 Users Manual by Scanlon Associates Version 6.0.70725 I Document Manager 6.0.70725 Table of Contents Part I Getting Started 2 1 Steps to a Successful... Implementation 2 2 Edit Document...

More information

Installation Guide - Windows

Installation Guide - Windows Kony Visualizer Enterprise Installation Guide - Windows Release V8 SP3 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the document version

More information

At the shell prompt, enter idlde

At the shell prompt, enter idlde IDL Workbench Quick Reference The IDL Workbench is IDL s graphical user interface and integrated development environment. The IDL Workbench is based on the Eclipse framework; if you are already familiar

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

USER MANUAL. SalesPort Salesforce Customer Portal for WordPress (Lightning Mode) TABLE OF CONTENTS. Version: 3.1.0

USER MANUAL. SalesPort Salesforce Customer Portal for WordPress (Lightning Mode) TABLE OF CONTENTS. Version: 3.1.0 USER MANUAL TABLE OF CONTENTS Introduction...1 Benefits of Customer Portal...1 Prerequisites...1 Installation...2 Salesforce App Installation... 2 Salesforce Lightning... 2 WordPress Manual Plug-in installation...

More information

Creating a Website with Publisher 2016

Creating a Website with Publisher 2016 Creating a Website with Publisher 2016 Getting Started University Information Technology Services Learning Technologies, Training & Audiovisual Outreach Copyright 2017 KSU Division of University Information

More information

Multi-Sponsor Environment. SAS Clinical Trial Data Transparency User Guide

Multi-Sponsor Environment. SAS Clinical Trial Data Transparency User Guide Multi-Sponsor Environment SAS Clinical Trial Data Transparency User Guide Version 6.0 01 December 2017 Contents Contents 1 Overview...1 2 Setting up Your Account...3 2.1 Completing the Initial Email and

More information

User Guide. Product: GreenFolders. Version: 3.8

User Guide. Product: GreenFolders. Version: 3.8 User Guide Product: GreenFolders Version: 3.8 Release Date: October 2014 GreenFolders 3.8 User Guide Introduction Table of Contents 1 Introduction... 6 2 General Information... 7 2.1 Login Procedure...

More information

Getting Started With the Cisco PAM Desktop Software

Getting Started With the Cisco PAM Desktop Software CHAPTER 3 Getting Started With the Cisco PAM Desktop Software This chapter describes how to install the Cisco PAM desktop client software, log on to Cisco PAM, and begin configuring access control features

More information

Eng 110, Spring Week 03 Lab02- Dreamwaver Session

Eng 110, Spring Week 03 Lab02- Dreamwaver Session Eng 110, Spring 2008 Week 03 Lab02- Dreamwaver Session Assignment Recreate the 3-page website you did last week by using Dreamweaver. You should use tables to control your layout. You should modify fonts,

More information

USING PERFORMANCE PRO An Appraiser s Quickstart Guide. Hrperformancesolutions.net 4/2017 v. 3.9

USING PERFORMANCE PRO An Appraiser s Quickstart Guide. Hrperformancesolutions.net 4/2017 v. 3.9 USING PERFORMANCE PRO An Appraiser s Quickstart Guide Hrperformancesolutions.net 4/2017 v. 3.9 Appraiser Quickstart Guide You have been asked to provide input on an appraisal as a primary appraiser. If

More information

File Cabinet Manager

File Cabinet Manager Tool Box File Cabinet Manager Java File Cabinet Manager Password Protection Website Statistics Image Tool Image Tool - Resize Image Tool - Crop Image Tool - Transparent Form Processor Manager Form Processor

More information

Ektron Advanced. Learning Objectives. Getting Started

Ektron Advanced. Learning Objectives. Getting Started Ektron Advanced 1 Learning Objectives This workshop introduces you beyond the basics of Ektron, the USF web content management system that is being used to modify department web pages. This workshop focuses

More information

MagicInfo VideoWall Author

MagicInfo VideoWall Author MagicInfo VideoWall Author MagicInfo VideoWall Author User Guide MagicInfo VideoWall Author is a program designed to construct a VideoWall layout and create VideoWall content by adding various elements

More information

Microsoft Access II 1.) Opening a Saved Database Music Click the Options Enable this Content Click OK. *

Microsoft Access II 1.) Opening a Saved Database Music Click the Options Enable this Content Click OK. * Microsoft Access II 1.) Opening a Saved Database Open the Music database saved on your computer s hard drive. *I added more songs and records to the Songs and Artist tables. Click the Options button next

More information

Microsoft Word 2010 Basics

Microsoft Word 2010 Basics 1 Starting Word 2010 with XP Click the Start Button, All Programs, Microsoft Office, Microsoft Word 2010 Starting Word 2010 with 07 Click the Microsoft Office Button with the Windows flag logo Start Button,

More information

Boise State University. Getting To Know FrontPage 2000: A Tutorial

Boise State University. Getting To Know FrontPage 2000: A Tutorial Boise State University Getting To Know FrontPage 2000: A Tutorial Writers: Kevin Gibb, Megan Laub, and Gayle Sieckert December 19, 2001 Table of Contents Table of Contents...2 Getting To Know FrontPage

More information

WA1937 WebSphere Portal 7.0 Programming. Classroom Setup Guide. Web Age Solutions Inc. Copyright 2012 Web Age Solutions Inc. 1

WA1937 WebSphere Portal 7.0 Programming. Classroom Setup Guide. Web Age Solutions Inc. Copyright 2012 Web Age Solutions Inc. 1 WA1937 WebSphere Portal 7.0 Programming Classroom Setup Guide Web Age Solutions Inc. Copyright 2012 Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum Hardware Requirements...3 Part 2 - Minimum

More information

Obtaining a login and password to the Online Application

Obtaining a login and password to the Online Application Obtaining a login and password to the Online Application You should have received a password to the online application from Regional Credentialing. If you ve forgotten your password, please contact us.

More information

OU Campus. Web Editors Guide. University Information Technology Services. Training, Outreach, Learning Technologies, & Video Production

OU Campus. Web Editors Guide. University Information Technology Services. Training, Outreach, Learning Technologies, & Video Production OU Campus Web Editors Guide University Information Technology Services Training, Outreach, Learning Technologies, & Video Production Copyright 2015 University Information Technology Services Kennesaw State

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

eschoolplus+ Cognos Query Studio Training Guide Version 2.4

eschoolplus+ Cognos Query Studio Training Guide Version 2.4 + Training Guide Version 2.4 May 2015 Arkansas Public School Computer Network This page was intentionally left blank Page 2 of 68 Table of Contents... 5 Accessing... 5 Working in Query Studio... 8 Query

More information

Tutorials. Lesson 3 Work with Text

Tutorials. Lesson 3 Work with Text In this lesson you will learn how to: Add a border and shadow to the title. Add a block of freeform text. Customize freeform text. Tutorials Display dates with symbols. Annotate a symbol using symbol text.

More information

Remote Support Web Rep Console

Remote Support Web Rep Console Remote Support Web Rep Console 2017 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their

More information

Interactive Powerpoint. Jessica Stenzel Hunter Singleton

Interactive Powerpoint. Jessica Stenzel Hunter Singleton Interactive Powerpoint Jessica Stenzel Hunter Singleton Table of Contents iii Table of Contents Table of Contents... iii Introduction... 1 Basics of Powerpoint... 3 How to Insert Shapes... 3 How to Insert

More information

Creating Pages with the CivicPlus System

Creating Pages with the CivicPlus System Creating Pages with the CivicPlus System Getting Started...2 Logging into the Administration Side...2 Icon Glossary...3 Mouse Over Menus...4 Description of Menu Options...4 Creating a Page...5 Menu Item

More information

BCI.com Sitecore Publishing Guide. November 2017

BCI.com Sitecore Publishing Guide. November 2017 BCI.com Sitecore Publishing Guide November 2017 Table of contents 3 Introduction 63 Search 4 Sitecore terms 66 Change your personal settings 5 Publishing basics 5 Log in to Sitecore Editing 69 BCI.com

More information

USER MANUAL. SuiteCRM Customer Portal for Joomla TABLE OF CONTENTS. Version: 2.0

USER MANUAL. SuiteCRM Customer Portal for Joomla TABLE OF CONTENTS. Version: 2.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation... 2 SuiteCRM Plug-in Installation... 2 Joomla Manual Plug-in installation... 3 Plug-in

More information

Introduction to Microsoft Publisher

Introduction to Microsoft Publisher Introduction to Microsoft Publisher Day One Agenda: Introduction Templates Layout Inserting and Formatting Text Inserting and Formatting Pictures Practice, Questions Day Two Agenda: Review Day One Tables

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

Training Manual and Help File

Training Manual and Help File Training Manual and Help File 30.06.2011 Update Manage Grow Welcome to your new Juniper Website Management System with CMS Introduction The Juniper Website Management System with CMS (Website Content Management

More information

ADOBE DREAMWEAVER CS4 BASICS

ADOBE DREAMWEAVER CS4 BASICS ADOBE DREAMWEAVER CS4 BASICS Dreamweaver CS4 2 This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site layout,

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

DOING MORE WITH WORD: MICROSOFT OFFICE 2010

DOING MORE WITH WORD: MICROSOFT OFFICE 2010 DOING MORE WITH WORD: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT WORD PAGE 03 Viewing Toolbars Adding and Removing Buttons MORE TASKS IN MICROSOFT WORD

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

WebStore by Amazon: Quick Start Guide

WebStore by Amazon: Quick Start Guide WebStore by Amazon: Quick Start Guide Introduction to WebStore by Amazon WebStore by Amazon is a powerful tool that allows you to create a complete e- commerce site. The WebStore by Amazon setup wizard

More information

UTAS CMS. Easy Edit Suite Workshop V3 UNIVERSITY OF TASMANIA. Web Services Service Delivery & Support

UTAS CMS. Easy Edit Suite Workshop V3 UNIVERSITY OF TASMANIA. Web Services Service Delivery & Support Web Services Service Delivery & Support UNIVERSITY OF TASMANIA UTAS CMS Easy Edit Suite Workshop V3 Web Service, Service Delivery & Support UWCMS Easy Edit Suite Workshop: v3 Contents What is Easy Edit

More information

NYLearns Curriculum Administration:

NYLearns Curriculum Administration: NYLearns Curriculum Administration: Creating a Curriculum Map May 2014 2 This page left intentionally blank 3 Contents Signing in to NYLearns... 4 Curriculum Mapping... 6 Creating Curriculum Maps... 7

More information

End User Guide. 2.1 Getting Started Toolbar Right-click Contextual Menu Navigation Panels... 2

End User Guide. 2.1 Getting Started Toolbar Right-click Contextual Menu Navigation Panels... 2 TABLE OF CONTENTS 1 OVERVIEW...1 2 WEB VIEWER DEMO ON DESKTOP...1 2.1 Getting Started... 1 2.1.1 Toolbar... 1 2.1.2 Right-click Contextual Menu... 2 2.1.3 Navigation Panels... 2 2.1.4 Floating Toolbar...

More information

Exor Managed Service. Getting Connected. exor corporation ltd.

Exor Managed Service. Getting Connected. exor corporation ltd. Exor Managed Service Getting Connected exor corporation ltd. Table of Contents Table of Contents... 1 Document Control... 2 Author... 2 Document Summary... 2 Document History... 2 Reference Documents...

More information

Remote Access to the CIS VLab (308)

Remote Access to the CIS VLab (308) Remote Access to the CIS VLab (308) This Howto shows to remotely access the CIS 90 Arya VMs (virtual machines) in the CIS Virtual Lab (VLab). The CIS VLab was developed to remotely provide Distance Education

More information