Installing Upgrading Designing Configuring Deploying Monitoring Administering Troubleshooting Reference JBI Components
Close Print View
Deploying: Windows Platform Procedures
 

Classic Java CAPS

Deploying Java CAPS Projects

Creating a Deployment Profile

To create a Deployment Profile

Naming the Application File

Automapping

Mapping Variables

Version Control

Creating Snapshots

Retrieving Snapshots

Building an Application File

Building an Application File From the Command Line

Windows Platform Procedures

UNIX Platform Procedures

Deploying Application Files from the NetBeans IDE

To Deploy an Application File from the NetBeans IDE

Deploying Application Files from Enterprise Manager

Adding the Application Server Domain to Enterprise Manager

Deploying the Application File

Deploying Application Files from the Admin Console

To Deploy an Application File from the Admin Console

Deploying Application Files from the Command Line

Deploying from the asadmin Utility

Deploying from the asant Utility

Deploying Master Indexes (Repository)

Java EE Based Components

Deploying JMSJCA on WebLogic

Windows Platform Procedures

To build an application file based on a property file only (Windows)
  1. Locate the file build.properties in your commandlinecodegen directory.
  2. Open the file using a text editor such as Notepad. The contents are as follows:
    commandline.rep.url=http://host:port/repositoryname
    commandline.rep.user=
    commandline.rep.pass=
    commandline.rep.dir=localrepository
    commandline.rep.projectName=
    commandline.rep.projectDeployName=
    commandline.rep.projectDeploymentTag=
    commandline.rep.projectBranchName=
  3. Fill in the property values as described in Table 1 (optional properties may be left blank).
  4. Run commandline codegen by issuing the following command from the command-line prompt in your commandlinecodegen directory:
    ant -propertyfile build.properties
To build an application file by passing parameters in the command line only (Windows)
To build an application file based on both a property file and by passing parameters in the command line (Windows)
  1. Locate the file build.properties in your commandlinecodegen directory.
  2. Open the file using a text editor such as Notepad. The contents are as follows:
    commandline.rep.url=http://host:port/repositoryname
    commandline.rep.user=
    commandline.rep.pass=
    commandline.rep.dir=localrepository
    commandline.rep.projectName=
    commandline.rep.projectDeployName=
    commandline.rep.projectDeploymentTag=
    commandline.rep.projectBranchName=
  3. Fill in the property values as described in Table 1.
  4. Run commandline codegen by issuing the following command from the command-line prompt in your commandlinecodegen directory:
    ant -propertyfile build.properties "-D{propertyname1}={propertyvalue1}"
    "-D{propertyname2}={propertyvalue2}" … "-D{propertynameN}={propertyvalueN}"

    Note - When using a combination of a property file and command-line properties, the command-line properties override those specified in the property file. You need to list only those properties that you want to override.