Use the following procedures to create a UTS Data Source project and capture individual screens of the UTS application as a server message, a data source record, and a client message.
If you have not already done so, review the following before performing the procedures:
If a screen of the application is not captured, by default a page is generated dynamically and presented to the user at run time. This behavior can be changed using the Orchestration property AutoGeneratePages. Refer to Orchestration Properties for more information on AutoGeneratePages . The content of a master page can be applied to dynamically generated pages by making an ePortal configuration property change. Refer to Viewing or Changing ePortal Application Configuration Properties.
Procedure 1 - Creating a UTS Data Source Project and Setting the Connection Properties
On the File menu, point to New and click Project.
In the Create a new Project dialog box, do the following:
Notes:
Select C# or All Languages from the Language list.
Select Windows or All Platforms from the Platform list.
The ePortal templates are not displayed if other values are selected.
Select ePortal Data Source from the Project Type list.
The ePortal Data Source templates are displayed.
Do any one of the following to select the template:
From the templates list, select OS 2200 UTS Data Source, and then click Next.
Enter OS 2200 UTS Data Source in the search option, select the template from the search result, and then click Next.
In the Project name box, type a name for the ePortal data source project. The name must be a valid C# name.
Note: The project name should not contain any special characters.
In the Location box, identify the path to the location where you want to save the project.
(Optional) In the Framework box, select the desired .NET Framework version from the list. For information on selecting the .NET version, refer to Multi-Targeting Issues.
Note: If you do not select a desired Framework, a default Framework version is selected.
If the Add to Source Control checkbox is present and the project should be put under source control, ensure that the checkbox is selected.
Accept all other default settings.
Click Create.
In the Solution Explorer window, right-click the UTSEmulator.utscfg file, and click Open.
In the UTS Connection Properties Dialog, supply the requested information and click OK.
If necessary, change any terminal properties that are unique to your application by right-clicking anywhere in the terminal emulator and selecting Properties. If you modify any properties proceed as follows, otherwise, skip to step 6:
Save the file.
Right-click and select Disconnect from host.
Right-click and select Connect to host.
By default, every screen that is captured has a server message and a client message that matches the server message created. To cancel the creation of client messages, perform the following steps:
In the Solution Explorer window, select the <name of project> node, right-click, and click Properties.
Change the properties Auto Create Client Message and Auto Recreate Client Message to False. When set to False, client messages must be created manually. Refer to Creating Client Messages and Data Source Project Property Pages Dialog.
Procedure 2 - Adding UTS Screens to the UTS Data Source Project
If Procedure 1 was just completed or a screen was just captured, go to step 3.
If returning to add more screens after closing the project, do the following:
Open the project.
In the Solution Explorer window, right-click the UTSEmulator.utscfg file, and click Open.
Navigate to the screen to be captured. Press NumPad Enter/+ to transmit a screen.
To capture the screen, right-click and click Add Screen to Project.
In the Screen Name dialog box, type the name you want to use to identify the server message in ClearPath ePortal Developer and click OK. The ePortal data source record is created and saved. It appears in the Server Messages folder of Solution Explorer with a .UTSXML extension, and the file appears on the <name of the screen>.UTSxml tab. Each input field is given a default name.
Procedure 3 - Adding Runtime Information to the Server Message
Once a server message is added to the UTS data source project, you need to add runtime information to the message.
To identify a page identification region or regions on the record
If you plan to select page identification regions, follow the procedure below. Refer to Planning the Data Identification Strategy in Preparing to Capture the Screens of a UTS Application.
If the server message does not already appear on the <name of the server message>.UTSxml tab, open the UTS project in Solution Explorer, expand the project folder, expand the Server Messages folder, and double-click the appropriate <name of the server message>.UTSxml file.
In the <name of the server message>.UTSxml tab, use the cursor to select an area of the screen that contains text that is unique to this server message or combined with another page identification region or regions on the screen creates a unique identifier for the server message. Tip: Normally, the first couple of lines of a screen contain the title of the screen and some unique information about the screen. This is a good area to establish a page identification region or regions.
Right-click and click Add Page Identification Region. A default name for the region is assigned and appears in the Properties pane.
If all the screens have a region in the same place and with the same length that can be used for page identification, change the value of the DefaultField property to True. Once a region has been marked as a default field, that region is automatically selected as other screens are captured.
If the first region that was identified does not make the server message unique to the UTS data source project, identify another region that contains words that when combined with the first region makes the server message unique to the ePortal data source project using steps 2 through 4.
To identify a dynamic region of the server message that is needed on the new interface
If a screen has variable data on it that needs to appear on the new interface, you must identify that data as protected areas, known as dynamic regions in the ClearPath ePortal Developer environment. Such areas might contain date and time information or other information returned after a request is made. If the variable data is not identified as a dynamic region, the new interface does not include any of the updated information from the OS 2200 application at run time. When creating the layout of a Web application project, the dynamic regions can be moved anywhere on the Web page, can be positioned in table cells, or assigned a style.
On the <name of the server message>.utsxml tab, use the cursor to select the area of the screen that is used for dynamic information.
Right-click and click Add Dynamic Region.
A default name is assigned and appears in the Properties pane.
To create additional dynamic regions, repeat steps 1 and 2 until the screen has as many dynamic regions as needed or duplicate the existing dynamic region by doing the following steps:
Right-click the existing dynamic region and click Add Repeating Region.
Identify the number of times the region should be repeated.
Click OK.
If the highlighting attributes of a dynamic region will not change while the UTS application is running, change the value of the ApplyHostStylesOnInput property value to False.
If the dynamic region in the new interface does not require the white space of the region to be preserved, change the PreserveWhiteSpace property value to False.
If all the screens have the same dynamic region on them, change the value of the DefaultField property to True.
Once a region has been marked as a default field, that region is automatically selected as other screens are captured.
To modify property values
On the <name of the server message>.UTSxml tab, select a field, right-click, and click Properties.
In the Properties window, change the default name to an alphanumeric name that begins with a letter and contains no spaces, and press Enter. This name appears as a sub node of the server message in the ePortal Message View and can be used when selecting fields for inclusion in a client message.
Optionally, type a short text description for the field in the Description property.
The Description property is used for the following purposes:
As a tool tip for a web presentation
As documentation for a WCF web service
As a value appended to the validation error message if the Required or Pattern validation property is configured and an error is detected. Refer to Runtime Error Checking for Message Fields for more information.
Repeat steps 1 through 3 to change all the fields that need to be changed.
To save the changes
On the File menu, click Save.
The <name of server message>.UTSXML file is saved again in the Server Messages folder of the project. In addition, a file with an .eprec extension is saved in the Client Messages folder.
At this point, the server message and the client message appear in the ePortal Message View for use in any data flow changes that might need to happen. The file contains detailed information about the data required by the OS 2200 application.
Procedure 4 - Capturing Another Screen
To capture another screen in the UTS application, repeat procedures 2 and 3.
Procedure 5 - Next Step
If client messages must be created or modified, and orchestration done, start the process by going to Understanding Client Messages.
Otherwise, go to Getting Ready to Build a New Presentation Project.