Additional Features

This chapter introduces other services of X-UP that were not covered in the previous chapter and explains how to handle them.

X-UP Global Event

This section explains the X-UP Global Events that can be used in all models or Invoker in X-UP.

X-UP applies the concept of AOP (Aspect-Oriented Programming) to provide Join Points for method execution. The target of the execution can be configured for the Event items of the model being developed.

Through X-UP Global Events, the following tasks can be handled

X-UP Global Events are applied by domain.

The following example demonstrates how to apply X-UP Global Events for logging during model execution. The development steps are as follows

This section uses the model created in the Developing a Model Using SAP RFC Invokesection.

Creating an X-UP Global Event

  1. Select Create Global Event icon[](1) or menu [X-UP > Create Global Event] (2) to create a Global Event.

  1. If a confirmation window appears, click the OK button.

  1. The screen showing the created Global Event is as follows.

Setting the target for Event application.

X-UP Global Event configuration options.

Name

Description

ID

It is a unique identifier for each Global Event.

TagetClass

TagetClass is the target to which the Event will be applied. The applicable targets in X-UP are the Automation model, FlowEvent for each Invoke, and DataSourceEvent for database connection management.

TargetMethod

Specify the method of the target to which the Event will be applied. The Events for each applicable target are as follows.

TargetClass

TargetMethod

Description

AutomationLogic

start

Events that can be applied when the model is executed.

end

Events that can be applied just before the model terminates.

XXXFlowEvent

onBegin

Events that can be applied when the Invoke is executed.

onEnd

Events that can be applied just before the Invoke terminates.

onExceptionOccured

Events that can be applied when an exception occurs during the execution of the Invoke.

XXXDataSourceEvent

onBeforeExecute

Events that can be applied just before establishing a connection to Legacy through the datasource.

onAfterExecute

Events that can be applied immediately after establishing a connection to Legacy through the datasource.

UserClass

Insert the Business Logic to be applied to the Event.

You can either create or select a class for each TargetClass.

Depending on the package structure, the TargetClass and TargetMethod items may vary.

  1. Click the Add button [] to add the applicable Event for setting the Global Event.

  2. Select AutomationLogic as the TargetClass and start as the TargetMethod to apply it to all models.

  3. Create a UserClass to insert the Business Logic.

  4. Enter the desired class name and click the Class button [] to create the class.

  1. The created UserClass is as follows.

package user.globalEvent; 
 
import com.nexacro.xup.aop.intercept.interceptor.AutomationModelInterceptor; 
import com.nexacro.xup.ParameterSet; 
import com.nexacro.xup.component.automation.AutomationFailException; 
 
public class AutomationModelTracer extends AutomationModelInterceptor { 
                                                                                   
  public void start(ParameterSet globalParameterSet) throws AutomationFailException{ 

  }

}

The names of the created Class, Method, and input arguments should not be changed.

Writing the Interceptor Class

  1. To enable data logging, add the following code inside the start method.

log("DEBUG", "AutomationModel start. data=["+globalParameterSet.getDebugInfo()+"]");

The available methods vary for each applied Event.

Test

  1. To test if the Global Event has been applied, execute the model (1).

  1. When performing the test, you can check the logged data (2).

Session Handling

This section explains how to handle sessions in X-UP.

X-UP provides a UserSession object for handling sessions.

UserSession is an object that wraps the httpSession object. In this section, we will explain how to use the UserSession object to perform functions such as session creation, session value checking, and session termination. We will demonstrate this using a sample model for login, retrieving user information, and terminating the login session.

The steps to develop a service for handling sessions are as follows

Create an X-UP project

  1. Select the [File > New > X-UP Project] menu to launch the New X-UP Project Wizard.

  2. In the New X-UP Project Wizard, enter the desired project name in the Project name field and click the Finish button.

  1. Confirm that the X-UP project has been created in the X-UP Explorer as shown below.

Create an Automation model.

  1. Select [File > New > X-UP Automation Model] menu to launch the New Model Wizard.

  2. In the New Model Wizard, enter the model name in the Model Name field and click the OK button.

  1. The screen that appears after completing the New Model Wizard is as shown below.

Create the UserMethod.

  1. Double-click the UserMethod and enter the source code as shown below.

// session 생성
UserSession session = this.getUserSession();
session.setAttribute("USER_ID","test");
session.setAttribute("USER_PW","1234");

Create a session value check Automation model

  1. Select [File > New > X-UP Automation Model] menu to launch the New Model Wizard.

  2. In the New Model Wizard, enter the model name in the Model Name field and click the OK button.

  1. The screen that appears after completing the New Model Wizard is as follows.

Create the user_id and user_pw parameters, and then create the UserMethod.

  1. Declare two Variable parameters and name them user_id and user_pw.

  2. Double-click the UserMethod component and enter the following source code

// session 생성
UserSession session = this.getUserSession();
globalParameterSet.add("user_id",session.getAttribute("USER_ID"));
globalParameterSet.add("user_pw",session.getAttribute("USER_PW"));
  1. Connect the user_id and user_pw variables as output parameters to the UserMethod.

Create a session termination Automation model.

  1. Select [File > New > X-UP Automation Model] menu to launch the New Model Wizard.

  2. In the New Model Wizard, enter the model name in the Model Name field and click the OK button.

  1. The screen that appears after completing the New Model Wizard is as shown below.

Create the UserMethod.

  1. Double-click the UserMethod component and enter the following source code

// session 해제
UserSession session = this.getUserSession();
session.invalidate(true);

Cookie Handling

A cookie is a piece of text sent by a web server to the client, which is stored on the client side. When the client accesses the same web server again, the cookie is automatically sent to the server in the request header in a key=value format.

This section explains how to handle cookies. It describes how to read the header values coming from the client using X-UP's header parameters and how to modify the cookie values among them.

The development steps for the model in this section are as follows

Create an X-UP project

  1. Select [File > New > X-UP Project] menu to launch the New X-UP Project Wizard.

  2. In the New X-UP Project Wizard, enter the desired project name in the Project name field and click the Finish button.

  1. Confirm that the X-UP project has been created in the X-UP Explorer as shown below.

Create an Automation model

  1. Select [File > New > X-UP Automation Model] menu to launch the New Model Wizard.

  2. In the New Model Wizard, enter the model name in the Model Name field and click the OK button.

  1. The screen that appears after completing the New Model Wizard is as follows.

Create the Header parameter and the UserMethod

  1. Add the header parameter, and set the name as "cookie" and the schema as "cookie".

  2. Add the UserMethod and connect the cookie parameter as an input parameter to the created UserMethod.

Implement the logic in the UserMethod and configure the output parameters accordingly

  1. Double-click the UserMethod and enter the following source code

//Get the cookie value from the header received from the client.
MashupHeader cookie= globalParameterSet.getHeader("cookie");
//Parse the value in the key=value format.
String [] arrCookie = cookie.getValue().trim().split(";");
String cookieFullValue = "";
for(int iKey = 0; iKey < arrCookie.length; iKey++) {
	String[] cookieKeyVal = arrCookie[iKey].trim().split("=");
	String key = "";
	String value = "";
	if(cookieKeyVal.length == 1) {
		key = cookieKeyVal[0];
		value = "";
	} else {
		key = cookieKeyVal[0];
		value = cookieKeyVal[1];
	}
	if(key.equals("g_emp_no")) {
		value = "54321";
	}
	cookieFullValue += key+"="+value+"; ";
}
MashupHeader cookie1= globalParameterSet.getHeader("out_cookie");
cookie1.setValue(cookieFullValue);
  1. Add the header parameter, set the name as "out_cookie", the schema as "Set-Cookie", and the InOut type as "out".

  2. Connect the UserMethod with the created out_cookie parameter.

Create Test Screen

Creating a Project in UX-Studio and Creating a Form Screen are omitted.

  1. Launch UX-Studio and create a form screen named "header_Form."

  2. Create the following variables in GlobalVariables.

  1. Add a button to the created screen and double-click it to enter the following function script.

function Button00_onclick(obj:Button, e:ClickEventInfo)
{
	alert(g_emp_no);
	var svcID = "testService";
	var svcparam = "domain=XupCOMM" // X-UP 도메인 이름
		+"&model=header_sample&service=xupservice" // X-UP 모델 이름
		+"&format=xml"
		+"&version=xplatform";

	var svcurl = "SERVER::xupservice.do?" + svcparam;
	var inputDataset = "";
	var outputDataset = "";
	var strArgument = "";
	transaction(svcID, svcurl, inputDataset, outputDataset, strArgument, 	
		"CallbackFunc",false);
}

function CallbackFunc(strSvcID, nErrorCode, strErrorMag)
{
	if (nErrorCode != 0)
	{
		alert(nErrorCode + " : " + strErrorMag);
		return;
	}
	alert(g_emp_no);
}
  1. Run the form screen and click the button.

  2. Verify that the initial cookie value is displayed as empty.

  1. Click the OK button once again to verify if the updated cookie value is received.

File Handling

This section explains the model development method using File parameters.

For the database table information used in this section, please refer to the Sample DB Table Creation Script

The model development steps using File parameters described in this section are as follows.

Create an X-UP Project

  1. Select the [File > New > X-UP Project] menu to launch the New X-UP Project Wizard.

  2. In the New X-UP Project Wizard, enter the desired project name in the Project name field and click the ‘Finish’ button.

  1. Confirm that the X-UP project has been created in X-UP Explorer as shown below.

Create an Automation Model

  1. Select the [File > New > X-UP Automation Model] menu to launch the New Model Wizard.

  2. In the New Model Wizard, enter the model name in the Model Name field and click the OK button.

  1. The screen displayed after completing the New Model Wizard is as follows.

Create File Parameter and UserMethod

  1. Add a File parameter, and set the name as 'file' and the schema as 'text/xml'.

  2. Add the UserMethod function, and then connect the previously added file parameter as an input parameter to the created UserMethod function.

Implement UserMethod Logic and Configure Test Parameters

  1. Double-click the UserMethod and enter the following source code.

MashupFile file = globalParameterSet.getParameter("file").getFile();

String name = file.getName();
String path = file.getPath();

DataSet dataset1 = globalParameterSet.getDataSet("dataset1");

int row = dataset1.newRow();
dataset1.set(row, "NAME", name);
dataset1.set(row, "PATH", path);

globalParameterSet.add("dataset1", dataset1);
  1. Add a DataSet with the name "dataset1" and define the schema as follows.

Name

Type

Size

NAME

string

20

PATH

string

100

  1. Connect the output parameter from the UserMethod to "dataset1".

Create Modify Invoke and Select Invoke, and configure the output logic

  1. Add Modify Invoke.

  2. The target DataSet is dataset1, and connect it as the input parameter to the Modify Invoke.

  1. Double-click the Modify Invoke and enter the insert query as follows.

insert into FILETEST (NAME, PATH) values (#dataset1.NAME#, #dataset1.PATH#)

  1. Click the Test button.

  2. After testing, delete the automatically generated RESULT0 output parameter.

  3. Add a Select Invoke and enter the following query in the Invoke Select SQL window.

select
	NAME,
	PATH
from FILETEST

  1. Click the Test button and then click the OK button.

Test

Right-clicking in the model editor will display a popup menu. By selecting "Test" from the popup menu, you can test the model.

After the test is completed, the model's output will be displayed in the Result ParameterSet view.

User Library Handling

When creating an X-UP model, in addition to the X-UP functions provided by the editor, users can add libraries to use custom functions.

The User Library is registered to the project via the Import User Library Dialog, making it available for use when developing the X-UP Model.

The Import User Library Dialog can be executed by selecting the project, right-clicking the mouse, then choosing Import > X-UP > User Libraries.

When selecting a user library and clicking Finish, if the userlib folder does not exist in the project, it will be automatically created. The selected JAR file will be copied to the userlib folder, and the JAR file will be automatically registered in the classpath.

The process of excluding a user library from the Build Path is as follows

After selecting the library to be deleted, choose [Build Path > Remove from Build Path].

Selecting "Remove from Build Path" will exclude the file from the build path, and the file will be visible under the userlib folder. Files visible under the userlib folder can be permanently deleted or added back to the build path later.

The process of adding a user library back to the Build Path after it has been excluded is as follows

After selecting the library you want to add, choose [Build Path > Add to Build Path].

The process of deleting a user library excluded from the Build Path in the project is as follows

Select the library you want to delete and then choose Delete.

X-UP Server Management

Execution and Stopping

X-UP operates as a web application on a Web Application Server (WAS). Therefore, the starting and stopping of the server depend on the startup methods of the WAS where X-UP is installed.

Project Reporting

X-UP Builder provides the Export Project Report Dialog, a feature that generates detailed documentation of X-UP Models developed with X-UP Builder, allowing you to view them at a glance. X-UP Project Reporting can be executed through [Select Project > mouse right-click > Export > X-UP > Project Report]

Clicking the Next button will proceed as follows.


Name

Description

1

Project Select List

Project selection list

2

Model Select List

Model selection list

3

File Format

Select file format (docx / xlsx / html / text)

4

Target Directory

Project Reporting File Save directory path

5

Browse

Project Reporting File Edit save directory path

6

Finish

Project Reporting File generation

After selecting the model for Project Reporting, choose the desired File Format. The available formats are HTML (html), Text (txt), MS Word (docx), and MS Excel (xlsx). The Target Directory specifies the folder where the Project Reporting file will be created. After configuring these settings, click the Finish button, and the file in the chosen format will be generated.

4o mini

The following images represent the reports in the four formats (Text, Excel, MS Word, HTML).

Text format report

Excel format Report

MS Word format Report

HTML format Report

Transaction Management

X-UP supports distributed transactions.

X-UP recommends that users do not explicitly perform commit and rollback operations. Transaction control is already handled by X-UP, and the details are as follows.

The Commit and Rollback of legacy connections, such as DB Connection and SAP JCO Connection, are determined according to the following policies

Therefore, if you want to perform a Rollback, you can either handle an exception or create an 'ErrorCode' parameter and set it to a negative value. In this case, a Rollback will be performed for the legacy connection related to the request.

Multilingual Support

X-UP handles multilingual support based on the following principles

For example, if the character set in the client's request is 'euc-kr', the dataset will use the 'euc-kr' character set to retrieve data. The collected and processed data will then be returned to the client in the 'euc-kr' character set. However, if the data retrieved from the data source is in 'UTF-8', it will not be re-encoded to 'euc-kr' but will be directly transmitted to the client in 'UTF-8'.

The following is the logic for determining the character set from the client's request.

  1. Get the character set specified in the data itself (e.g., in XML files).

  2. If not present, check the HttpRequest for the character set from the request.

  3. Get the character set from the 'CONTENT-TYPE' header.

  4. If not present, get the character set from the 'ACCEPT-CHARSET' header.

  5. If still not present, determine the character set based on the language in the 'ACCEPT-LANGUAGE' header.

  6. If none of the above, use the character set configured in the model.

  7. Retrieve the character set set in the model's metadata.

  8. If not available, get the character set configured for the datasource used by the model.

  9. If all else fails, default to 'UTF-8' as the character set.

Junit & Remote Class Creation

X-UP provides a feature that automatically generates JUnit classes and Remote classes to offer users convenient debugging capabilities.

When the user selects the model to test and clicks the menu below, a simple JUnit class and Remote class will be generated.

Name

Description

generate Remote Test Source

A test class for remote testing can be generated based on the selected model

generate Junit Test Class

A simple JUnit Test Case can be generated to test the selected model

generate All Junit Test Class

Generate JUnit Test Cases for all models in the selected project

How to Create JUnit Test Class

  1. Select the model to be tested.

  2. Click on the [] icon in the development toolbar.

  3. Verify that a JUnit Test class with the original class name followed by ‘_junit’ is created in the logics folder.

  1. Another method is to select the project and then right-click [Mouse Right-click > X-UP > Generate All JUnit Test Classes]

After generating the JUnit Test Class, run it in debug mode

To debug the model, add a BreakPoint and then generate the test case Java file through the JUnit Test Case auto-generation menu. After that, run it in Java debug mode.

After that, it's the same as regular Java debugging.

How to Generate Remote Test Source

  1. Select the model to be tested.

  2. Click the [] icon in the development tool bar.

  3. Confirm that the Remote Test Source class, with '_remote' appended to the original class name, has been created in the logics folder.

How to Create a Quick Model

SAP RFC Invoke

When a DataSource is available, select the desired DataSource [] from the X-UP DataSource view to retrieve the table list.

If there is no DataSource, create a DataSource as shown below.

In the X-UP DataSource view on the right side of the screen, select "new DataSource" to launch the Wizard.

Select the DataSource "RFC_EC6" and click the "search Entities" button [] to retrieve the list of functions registered on the server.

Search for the desired group.

You can perform a search using the '*' wildcard when searching for groups (functions).

Double-click the desired Function Group to query.

You can perform a search using the '*' wildcard when searching for groups (functions).

  1. Select the Function you want to create as an Automation Model (multiple Functions can be selected).

  2. Right-click the mouse.

  3. Click Create Automation SapRfc Model.

Click the Finish button.

You can confirm that the following files have been created.

Select Invoke

When a DataSource is available, select the desired DataSource [] from the X-UP DataSource view to retrieve the table list.

If there is no DataSource, create a DataSource as shown below.

In the X-UP DataSource view on the right side of the screen, select "new DataSource" to launch the Wizard.

Click the Finish button.

The result of the generated model is as follows

Modify Invoke

When a DataSource is available, select the desired DataSource [] from the X-UP DataSource view to retrieve the table list.

If there is no DataSource, create a DataSource as shown below.

In the X-UP DataSource view on the right side of the screen, select "new DataSource" to launch the Wizard.

Click the Finish button.

The result of the generated model is as follows.