Large File Non-XML Sample Readme

Introduction
Intended Audience
Installing the Sample

Set the Prerequisite Environment
Set the Domain Properties
Create the Domain

Tune the Performance Parameters (Optional)
Build the Applications
Create the Database Tables
Start the Server
Deploy the Application

Test the Installation
To Use the IDE
To Modify the Sample Defaults

Sample Installation Sequence (Windows)

Sample Directory Structure
Sample Contents

Introduction

This readme describes the steps to build, deploy, and run the Large File Non-XML sample. For more information on this sample, see the Large File Non-XML Sample Description.

For an example of the installation process, see Sample Installation Sequence (Windows).

Note: This sample is provided on dev2dev for your convenience and is not supported by BEA.

Intended Audience

This sample is intended for programmers and advanced users familiar with BEA products, DOS Command Prompt or Unix shell environment, and Ant.

Installing the Sample

The following sections provide step-by-step instructions for installing a sample.

Note: Unzip the sample files into any directory that does not contain spaces in the directory path. For example, you can unzip the files into a directory named c:\sample_files, but not to a directory named c:\sample files. WebLogic Integration and the WLI Common Utilities must also be installed to directories that do not contain spaces.

Set the Prerequisite Environment

Before you begin the installation, open a Command Prompt and follow the steps below to set the environment variables and bootstrap the sample environment. The LargeFileNonXML/scripts/ directory contains bootstrap, ant build files, and the domain properties file. Execute the bootstrap and ant tasks from this directory.

Note: ANT_HOME should be unset. ANT_HOME is not required to run the sample and may produce undesired behavior. The sample automatically uses ant contained in the WebLogic Server installation.

Note: WLST Offline and WLST Online are available for download and evaluation from BEA's dev2dev site, but have not been formally included in the WebLogic Platform 8.1 product. WLST is supported through BEA newsgroups only, and the utility and APIs are subject to change. BEA intends to formally support this capability in a future release of WebLogic Platform.

1.      Set the environment variables as follows:

·         For Windows installations, enter the following:
set ANT_HOME=
set BEA_HOME=[bea_home] (e.g., C:/bea)
set JAVA_HOME=[java_home] (e.g., %BEA_HOME%/jdk150_11)
set JYTHON_HOME=[jython_home](Default:  %BEA_HOME%/wlserver_10.0/common/lib)
set WLI_UTIL_HOME=[wli_util_home] (The location of WLI Common Utilities, e.g., C:/wli_util)
set WL_HOME=[wl_home] (Default:  %BEA_HOME%/wlserver_10.0)

set WLI_HOME=[wl_home] (Default:  %BEA_HOME%/wli_10.2)
set DOMAIN_HOME=[domain_home] (e.g., %BEA_HOME%/user_projects)
set SERVER_URL=[URL of app server] (e.g., for single node t3://localhost:7001 or for a cluster t3://localhost:8001,localhost:9001,localhost:1001)

set CLIENT_HOME=[client_home] (e.g., C:/LargeFile)

·         For Unix installations—bash shell, enter the following:
export ANT_HOME=
export BEA_HOME=[bea_home] (e.g., /export/home/my_bea)
export JAVA_HOME=[java_home] (e.g., $BEA_HOME/jdk150_11)
export JYTHON_HOME=[jython_home] (Default:  $BEA_HOME/wlserver_10.0/common/lib)
export WLI_UTIL_HOME=[wli_util_home](The location of WLI Common Utilities, e.g., /export/home/wli_util)
export WL_HOME=[wl_home] (Default:  $BEA_HOME/wlserver_10.0)

export WLI_HOME=[wl_home] (Default:  $BEA_HOME/wli_10.2)
export DOMAIN_HOME=[domain_home] (e.g., /export/home/my_domain_home)
export SERVER_URL=[URL of app server] (e.g., for single node t3://localhost:7001 or for a cluster t3://localhost:8001,localhost:9001,localhost:1001)

export CLIENT_HOME=[client_home] (e.g., /export/home/LargeFile)

2.      Run the bootstrap as follows:

·         For Windows installations, enter:

bootstrap

This creates the LargeFileNonXML\scripts\env.properties file and sets environment variables.

·         For Unix installations, enter:

. ./bootstrap.sh


This creates the LargeFileNonXML/scripts/env.properties file and sets environment variables.

3.      Set the WLS Environment by entering setWLSEnv.cmd ( or setWLSEnv.sh for Unix).

 

 

Set the Domain Properties

By default, the domain user name and password are “weblogic” and “weblogic”.

Note: Use double backslashes (\\) when defining path names in the properties file.

To set the domain properties for a single node domain

Copy the samples domain property file as follows and then modify to suit your needs:

1.      If not already created, create the directories for the source.dir, error.dir, and archive.dir files.

2.      Copy the samples domain property file:

·         For Windows installations, enter the following:

copy domain.LargeFileNonXML.properties domain.properties

·         For Unix installations, enter the following:

cp domain.LargeFileNonXML.properties domain.properties

3.      Set the following variables in the domain.properties file:

·         source.dir - This is the directory to which the sample file event generator polls for input files

·         error.dir  - This is the directory to which the sample file event generator places files that could not be published

·         archive.dir - This is the directory to which the sample file event generator places files that have been successfully published as an archive

Note: You can configure the domain names (e.g., DOMAIN_HOME/domains/LargeFileNonXML) by editing the domain.name property in the scripts/domain.properties file.

To set the domain properties for a clustered domain

Note: To use this sample in a cluster, the domain must be configured with an Oracle database.

Edit the domain.properties file as follows:

1.      Comment out domain.cluster=single.

2.      Uncomment #domain.cluster=<clustername>.

3.      Replace <clustername> with a valid cluster name without brackets.

4.      Replace the following with valid values for your environment:

domain.cluster.multicast.address=237.0.2.1
domain.cluster.multicast.port=7345
domain.cluster.servers=2

domain.cluster.server1=server1
domain.cluster.server1.address=localhost
domain.cluster.server1.port=8001

domain.cluster.server2=server2
domain.cluster.server2.address=localhost
domain.cluster.server2.port=9001

5.      Based on domain.cluster.servers=<n>, create as many entries of domain.cluster.server<i>, domain.cluster.server<i>.address, and domain.cluster.server<i>.port.

6.      Save the domain.properties file.

Create the Domain

Create the domain by entering:

ant create_domain

Tune the Performance Parameters (Optional)

To tune the performance parameters:

1.      Edit <DOMAIN_HOME>/domains/LargeFileNonXML/setDomainEnv.{sh,cmd} and set the following:

set JAVA_VENDOR=BEA
if "%JAVA_VENDOR%"=="BEA" ( set MEM_ARGS to "-Xms512m -Xmx512m" )

Build the Applications

Building the applications builds ear files for all workshop applications under the apps directory. Build the applications as follows:

ant build

 

Start the Server

·         For Windows installations:

Start a new command window and enter

%DOMAIN_HOME%\domains\LargeFileNonXML\startWeblogic.cmd

·         For Unix installations:

$DOMAIN_HOME/domains/LargeFileNonXML/startWeblogic.sh &

 

Create the Database Tables

Note: If you are using Oracle, make sure the Oracle server is up and running.

To create the database tables:

1.      Enter:

ant create_app_db_scripts

Note: If you are using PointBase, start the Weblogic server before running the following step.

2.      If you are using PointBase:

·         For Windows, enter:

%DOMAIN_HOME%\domains\LargeFileNonXML\bin\startPointBaseConsole.cmd

·         For Unix, enter:

$DOMAIN_HOME/domains/LargeFileNonXML/bin/startPointBaseConsole.sh

This opens PointBase console window. Connect to the PointBase server by providing following values. Then you can execute the sql content in the next steps 3 and 4 for PointBase.

Jdbc url: jdbc:pointbase:server://localhost:9093/weblogic_eval

User: weblogic

Password: weblogic

3.      Execute the sql script <DOMAIN_HOME>/temp/LargeFileNonXML/appdbscripts.sql. If you are using PointBase, you can copy the sql content into the PointBase console and do execute all.

4.      If you are using PointBase, execute the sql script <CLIENT_HOME>/scripts/pointbase_dbscripts.sql. If you are using Oracle, execute  <CLIENT_HOME>/scripts/oracle_dbscripts.sql

Deploy the Application

Note: For a clustered domain, make sure that no other managed servers are running except the admin server.

For Windows installations, do the following:

1.      Enter:

ant deploy

Target deploy in turn calls targets create_app_queues, deploy_egs, and deploy_apps.

Note: At the end of the deployment, a message indicates that the deployment is deferred because no managed server is running. This is normal. Once you stop the admin server and restart with all other managed servers, the resources and the applications will appear.

2.      Run ant create_egs to create and deploy the sample file event generator and custom queues.

For Unix installations, do the following:

1.      Enter:

ant deploy

Target deploy in turn calls targets create_app_queues, deploy_egs, and deploy_apps.

Note: At the end of the deployment, a message indicates that the deployment is deferred because no managed server is running. This is normal. Once you stop the admin server and restart with all other managed servers, the resources and the applications will appear.

2.      Run ant create_egs to create and deploy the sample file event generator and custom queues.

Test the Installation

The sample test client places a sample file from <sample_home>/client/LargeFileTestData.txt into the source polling directory for the file event generator. The test must be run on the same machine as the server or should have access to a common file share where the file event generator is polling from.

To test the installation, enter:

ant test

If the test is successful, the following message appears in the cmd window:

sample run successfully

To run the application later:

1.      Open a Command Prompt to the sample’s scripts directory.

2.      Set the environment variables.

3.      Run the bootstrap command.

4.      Start the server(s).

5.      Run the application.

To Use the IDE

Workshop is an Eclipse based IDE. You can start Workshop by executing <BEA_HOME>/workshop_10.2/workshop4WP/workshop4WP.exe. You can use the IDE to deploy the application. If you deployed the ear files using ant and try to deploy using IDE again, the deployment will fail. IDE deploys the application as an exploded ear.

To see the application in IDE:

1.      Delete the .metadata and .temp folders from <CLIENT_HOME>/apps.

2.      Set wl.home environment variable to point to <BEA_HOME>/wlserver_10.0.

3.      Open Workshop and point to <CLIENT_HOME>/apps as workspace.

4.      Define WLI_HOME as a variable in Workshop and point it to <BEA_HOME>/wli_10.2( Window->Preferences->Java-> Build Path->Classpath Variables->New button )

5.      Use File->Import->Existing projects into Workspace and point to the <CLIENT_HOME>/apps folder.

To Modify Sample Defaults

The default input document (LargeFileTestData.data) is located in the LargeFileNonXML\client directory. To change the input document to another file in the LargeFileNonXML\client directory, run:

ant test –DINPUT_DOCUMENT=<input doc>

Sample Installation Sequence (Windows)

To build the applications, create the domain, deploy, and configure:

set CLIENT_HOME=[client_home]

set WLI_HOME=[WLI_home]

To start the server every time after that, enter:

pushd %DOMAIN_HOME%\domains\LargeFileNonXML
start cmd /c startWeblogic
popd

Sample Directory Structure

LargeFileNonXML

 ├───apps

    ├───LargeFile

        └───EarContent

    ├───Schemas  

    └───LargeFileNonXML   

           ├─────src

                  └───processes

                         ├───LargeFileBatch.jpd

                        ├───JMSCont1.jcx

                         ├───DB.jcx

                        ├───ReadFile.jcx

                         ├───LargeFileDBinsert.xq

                         └───LargeFileTransformation.dtf

           └─── .staging  

                    └───WEB-INF

                           ├───classes

                          ├───lib

                           └───xquery-functions

 ├───client

 └───scripts

Sample Contents

The sample consists of the following files:

Application - LargeFile

Process Project - LargeFileNonXML

processes/LargeFileBatch.java

- Accepts a message from containing the location of the large file from the File Event Generator
- Reads the file record by record using the file control
- Transform records using MFL transform into XML
- Insert records into a CUSTOMER table using the Database Control

processes/ReadFile.java

- File Control to read records from the input file

processes/DB1.java

- DB Control to insert records into the CUSTOMER table

processes/JMSCont1.java

- JMS control to send back response message to client program after completion of processing the file

processes/LargeFileTransformation.java

- DTF file that contains the XQuery to transform output of MFL transform to DBControl input

processes/LargeFileDBinsert.xq

- XQuery file to convert output of MFL to parameters required for DB Control

Schemas Project

customer.mfl

- MFL transform to convert customer record in CSV format to XML