X-UP Setting

In this section, the environment settings for the X-UP server and X-UP Builder that are necessary for users during development are explained.

X-UP Server Settings

To configure the X-UP server, several environment configuration files are provided. This explanation assumes that the X-UP server has been installed.

By navigating to the [webapps > xup > WEB-INF > xup > conf] path in the WAS installation directory, you will find various configuration files as shown in the image below.

Name

Description

authInfo.xml

This file contains account information for the X-UP server.

xup_config.xml

This file contains configuration information required for X-UP to operate.

xup_env.property

This file contains information about X-UP's environment settings.

X-UP_Server_License.xml

This is the license file for the X-UP server.

xup_config.xml

The xup_config.xml file contains the following configuration information for the X-UP Server.

Name

Type

Description

isBundleDevMode

Boolean

Option used when developing bundles that run in X-UP.

isManageMode

Boolean

Whether X-UP administrator is running.

isDebugMode

Boolean

Whether debug mode is enabled. Logs are saved only if set to true, regardless of log settings (system or user logs).

exception.loglevel

Int

Log level setting for exception handling.

enableModelSingleton

Boolean

Whether the model can be a singleton.

logger.Api.enabled

Boolean

Whether to log internal API logs of the X-UP server.

logger.Parameter.enabled

Boolean

Whether to log the handling of parameters in the X-UP server.

logger.DataSetBuilder.enabled

Boolean

Whether to log when raw data is converted into datasets in the Gathering model.

logger.ParameterSetBuilder.enabled

Boolean

Whether to log when logs are generated during Invoke processing.

lazyModelLoading

Boolean

Option to load models only when called, without loading all models at the X-UP Engine startup.

minEvictableIdleTimeMillis

Int

The option to remove connections from the pool if the Db DataSource connection is idle for the specified time.

timeBetweenEvictionRunsMillis

Int

The frequency at which the minEvictableIdleTimeMillis option runs.

enableFileWatcher

Boolean

Option to monitor changes in X-UP models and reload them when modifications occur.

fileWatcherPath

String

Default is "/WEB-INF/xup/model". If the model storage location is changed using "XUP_BASE_PATH", it can be set here.

enableModelSingleton - When set to singleton, caution should be exercised when editing Java source code for models that use class member fields (Variables). This is because member fields (Variables) are shared across threads.

The exception log levels used by X-UP Server are as follows:

레벨

설명

1

allException

Displays the full StackTrace and message for all exceptions.

2

allException shortly

Displays only a simplified StackTrace and message for all exceptions.

3

userException

Displays the full StackTrace and message for the current exception.

4

userException

Displays only a simplified StackTrace and message for the current exception. Level 4 represents the most minimal exception logging.

Regarding logging, the setting of isDebugMode in the xup_config.xml file takes the highest priority. If isDebugMode is set to 'False', logging will not occur regardless of the settings in the log4j.xml

auth_info.xml

The auth_info file contains account information for X-UP.

By default, no accounts are provided in the distribution, and accounts need to be configured using the bin/encrypt.bat file. Below are the steps for configuring an account.

To set up the account, navigate to the bin folder.

Set the name and password values.

Here is the content of the authInfo.xml file after adding the account.

<?xml version="1.0" encoding="utf-8"?>
<authInfo>
  <userList>
    <user>
      <name>xup</name>
      <password>n1M4xHQzLqhyIJjrzPIsFg==</password>
    </user>
  </userList>
</authInfo>

To add a new account, run encrypt.bat with the command: encrypt.bat newName newPassword.

If you change the account and password in the auth_info, the updated credentials will also be applied to the X-UP administrator account and other related accounts.

web.xml

The web.xml file, located under the xup/WEB-INF folder in the X-UP server's web application root directory, handles servlet configurations, servlet mappings, filters, and encoding settings.

<?xml version="1.0" encoding="ISO-8859-1"?>

<!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd">

<web-app>

	<!-- xupservice, webservice, ui5 -->
	<servlet>
		<servlet-name>FrontControllerServlet</servlet-name>
		<servlet-class>com.nexacro.xup.service.FrontControllerServlet</servlet-class>
		<load-on-startup>1</load-on-startup>
	</servlet>
	
	<!-- serviceInfo, webServiceWSDL -->
	<servlet>
		<servlet-name>ServiceInfoServiceServlet</servlet-name>
		<servlet-class>com.nexacro.xup.service.ServiceInfoServiceServlet</servlet-class>
	</servlet>
	

	<!-- Servlet Mapping -->
	<servlet-mapping>
		<servlet-name>FrontControllerServlet</servlet-name>
		<url-pattern>/FrontControllerServlet.do</url-pattern>
	</servlet-mapping>
	
	<servlet-mapping>
		<servlet-name>ServiceInfoServiceServlet</servlet-name>
		<url-pattern>/ServiceInfoServiceServlet.do</url-pattern>
	</servlet-mapping>

</web-app>

JCO Library

The following libraries are recommended by the SAP guide to be placed in the system's specified path for use.

Windows 계열

The libraries required for JCO 2.0 Version

The libraries required for JCO 3.0 Version

librfc32.dll

sapjcorfc.dll

sapjco.jar

sapjco3.dll

sapjco3.jar

In X-UP, these libraries are distributed for easier use during development through X-UP Builder. In X-UP, when using JCO 2.0, it loads librfc32 and internally loads sapjcorfc.dll. For JCO 3.0, it internally loads sapjco3.dll, so X-UP does not need to load it separately.

For JCO 3.0, the installation method when applying sapjco3.dll is as follows:

If the following error occurs, make sure that the OS platform, JRE, and SAP DLL bit version are set to the same:

caused by java.lang.NoClassDefFoundError :

message=Could not initialize class com.sap.conn.jco.rt.JCoRuntimeFactory

혹은 Error getting the version of the native layer:

java.lang.UnsatisfiedLinkError: no sapjco3 in java.library.path

X-UP Builder Preference Settings

X-UP Preference allows configuration of the overall environment settings for X-UP Builder. Access X-UP Preference by navigating to [Window > Preferences.. > X-UP].

Currently, X-UP Preference is organized into the following sections

X-UP

Common environment settings can be defined.

The "Is show X-UP Builder log message to console" option allows setting whether to output logs to the console. Additionally, the "include package and class debug line message" option defines whether to include the "package" and "class line message" in the logs when the output is directed to the console.

The "SAP RFC GROUP Search limit count" option limits the number of records displayed during group searches, preventing excessive data from being shown. Only the defined number of records will be displayed. More environment setting options will be added in the future.

DataSource

X-UP Builder allows saving frequently used data sources in advance for easy reference or reuse when creating X-UP models.

Registered data sources can be referenced from anywhere, regardless of the project or model.


Name

Description

1

DataSource Table

The data source list table displays the list of registered data sources.

Name: The name of the data source.

CheckBox: Only the checked data sources will appear in the data source selection screen during model development.

Description: The description registered when creating the data source.

Service: Displays the type of the registered data source.

2

Action Buttons

New: Create a new data source.

Edit: Edit an existing data source.

Remove: Delete the selected data source.

Copy as: Copy the selected data source.

Import: Register an external data source.

Export: Save all registered data sources as an XML file to a desired external directory (backup).

3

Preview

Displays the detailed information of the selected data source.

In X-UP Builder's Preference, you can define and use data sources using the following method.

  1. Click the [Window > Preferences..] menu to open the Preferences wizard.

  1. Select the X-UP DataSource menu to display the data source settings screen.

  1. Click the New button to define a new data source.

  1. The defined data sources can be copied and used in X-UP projects. In the X-UP model creation wizard, click the 'Define DataSource' window and select the Copy From… button to copy the data source defined in Preferences.

Compile Version Change

The JRE version used by X-UP Builder is 1.6. Therefore, users can change the compile version in X-UP Builder as follows.

The compile version can be changed to 1.5 in the X-UP Builder's Preference settings as described below.

  1. Click on the [Window > Preferences] menu to open the Preferences wizard.

  1. Click on the Java Compiler menu.

  1. Select the Compiler compliance level as 1.5 under JDK Compliance and click the Apply button.