Sun Java logo

Sun logo
Sun Java System Application Server Platform Edition 8.1 2005Q1 

Quick Start Guide

Welcome to the Quick Start Guide for the Sun Java™ System Application Server Platform Edition 8.1 software. This guide describes basic steps for starting the Application Server software, and packaging and deploying applications. It also provides information about the Admin Console and command-line tools.

The intended audience for this guide is the system administrator, network administrator, Application Server administrator, and developer who is interested in learning the basics about Application Server software.

This document contains information about the following topics:

Information about Documentation Conventions used in this guide is also included.


Starting and Verifying the Server

This section provides information for administrators who want to start and verify the Sun Java System Application Server software:

For administration tasks, the Application Server software provides these tools, which enable administrators to manage server instances:

A domain is a collection of configuration settings and deployed applications that make up a server instance. You specify a domain when starting a server instance. That instance then uses the configuration settings and runs the applications that make up the domain. A default domain called domain1 is created when you install Application Server.

Starting the Admin Server

To start the server, follow the steps below. Solaris and Linux steps are in the first column, and Windows steps are in the second column:

Solaris/Linux

Windows

  1. Add the install_dir/bin/ directory to the PATH environment variable:

         C Shell:
           % setenv PATH install_dir/bin:$PATH

        
     Bourne Shell:
           PATH=install_dir/bin:$PATH export PATH
  2. Start the server by entering this command from the install_dir:
    % asadmin start-domain domain1

From the Start menu, choose Programs -> Sun Microsystems -> Application Server PE-> Start Default Server.

Confirming That the Server is Running

When the server has completed startup, this message appears: Domain domain1 is ready to receive client requests. Additional services are being started in the background.

To verify that the server is running on your system, click this URL:

http://localhost:8080

The URL has two parts:

You should see the server Welcome page, shown below.

Page verifying that Application Server is up and running.

This might take a few seconds as the server completes initialization.

When you see this page, you know that the server is running. If the server is not running, but your system is operating normally, you get a server not found error. (In some browsers, that error automatically launches a search engine.) For other problems, you may need to check your server and browser settings, as described in the online Sun Java System Application Server Platform Edition 8.1 2005Q1 Troubleshooting Guide.

Later on, to stop the server, follow the steps below. Solaris and Linux steps are in the first column, and Windows steps are in the second column:

Solaris/Linux

Windows

From the install_dir/bin directory, type this command:

% asadmin stop-domain

From the Start menu, choose Programs -> Sun Microsystems -> Application Server PE -> Stop Default Server.

Deploying the hello Application

The server installation includes a pre-packaged application that says “Hello,” taken from The J2EE™ 1.4 Tutorial. To deploy it, you must give the Application Server software the information it needs to load the application, map a URL to it, and connect it to the resources it uses. That information is contained in deployment descriptors, which form part of the packaged application. The hello application is contained in a Web ARchive (WAR) file in the samples directory. Packaged applications can also be in the form of a Java ARchive (JAR) or Enterprise ARchive (EAR) file.

Dragging or copying to a domain’s autodeploy directory lets you put a pre-packaged application into use immediately, with minimal effort.

To deploy using autodeploy:

  1. Find install_dir/samples/quickstart/hello.war
  2. Copy it to install_dir/domains/domain1/autodeploy/

  3. Tip

    On Windows, you can create a shortcut to the autodeploy directory on your desktop and then drag and drop the hello.war file onto the shortcut.


When the server has finished deploying the application, it creates a file named hello.war_deployed in the autodeploy directory. Depending on the speed of your system, the process can take a few seconds. Until that file appears, a 404-File Not Found error occurs when you try to visit the application page.

Click this URL to visit the application page:

http://localhost:8080/hello

You should now see the application’s first page, which asks you to fill in your name:

Hi, my name is Duke. What’s yours?

Type your name, and click Submit.

You should now see the customized response, giving you a personal Hello.


Note

You can also use the asadmin command-line utility to deploy from the command line or in a shell script. The command is asadmin deploy.


Using the Admin Console

The Admin Console is a web-based interface that simplifies a variety of administration and configuration tasks. It is commonly used to:

For further information about using the Admin Console, consult the online help or the Sun Java System Application Server Platform Edition 8.1 2005Q1 Administration Guide.

To log in to the Admin Console:

  1. Click this URL:
  2. http://localhost:4848/asadmin

    • The localhost variable is the name of the system that the browser is currently running on. If Application Server software is running on another system, substitute the name of that system for localhost.
    • 4848 is the Admin Console’s default port number. If you changed the port number during the installation, use that number instead.

    • Tip

      Windows users can also use the Start menu option: Programs -> Sun Microsystems -> Application Server ->Admin Console.


  3. When the log in window appears, enter the admin user name and password.
  4. Click Log In.
  5. When the Admin Console appears, it looks like this:


    Admin Console home page. Left pane shows server tree and right pane shows common tasks and product information links.

You can use the options at the top of the information panel to configure a variety of operational settings for Application Server software.

To see the server’s log file, click “Search Log Files” under the Common Tasks heading in the right-hand pane. When the Log Viewer window appears, you can see status messages from the server and output from your J2EE application.

This ends the first section of the Quick Start Guide. You have successfully started the Application Server, deployed the Hello application, and viewed the Admin Console.


Packaging and Deploying Applications

This section provides information for packaging and deploying applications in the Application Server software.

This section describes two techniques for packaging and deploying applications:

For more information, see “Getting Started with Web Applications” in The J2EE 1.4 Tutorial.

Using the deploytool Utility

The deploytool utility is recommended for configuring complex Java™ 2 Platform, Enterprise Edition (J2EE™ platform) applications that require security controls, context parameters, enterprise beans, property-group settings (for HTML templates), or database connections.

The deploytool utility lets you:

Get Ready

The install_dir/samples/quickstart/ directory contains the files used in the Hello World application.

The web subdirectory contains the index.jsp and response.jsp files and the images directory, which contains the duke.waving.gif file.

The web/WEB-INF subdirectory contains the sun-web.xml and web.xml files.

The src/conf subdirectory contains the LocalStrings.properties file.

The Hello World application contains two JSP™ pages and the two files that they reference.

Package the Application

In this section, you practice packaging the Hello World application using deploytool.

Begin by starting deploytool using the instructions below. Solaris and Linux steps are in the first column, and Windows steps are in the second column:

Solaris/Linux

Windows

From the install_dir/bin directory, start the tool:

% deploytool

From the Start menu, choose Programs -> Sun Microsystems -> Application Server PE -> Deploytool.

When deploytool starts, it looks like this:

Deployment Tool start image

The tree structure in the pane at the left shows currently active files. It also indicates that the admin server is available to carry out deployment operations at its assigned port number.

To do the packaging, complete the following steps:

  1. Select File -> New -> Web Component.
  2. The wizard’s Introduction appears.

  3. Click Next to display the Wizard’s main screen.
  4. You will create a new stand-alone WAR module, so accept the default selection for the WAR Location panel.

    With the hello.war file open, the default WAR File location is shown as install_dir/samples/quickstart/. With no WAR files open, the field is blank. Either way, click the Browse button to specify the name of the WAR file to create. (“WAR File” must specify the full path to a WAR file.)

  5. If you are not already there, navigate to install_dir/samples/quickstart.
  6. Enter the filename as hello2 and click “Create Module File” to create the WAR file and return to the Wizard.
  7. The Wizard now shows WAR Name as hello2. WAR Display Name is the title that appears in administration utilities like deploytool and the Admin Console. It defaults to the same name as the WAR file in the Wizard, but it can be different.

  8. In Context Root enter /hello2 to define the URL for the web application as http://server:port/hello2. In most production systems, of course, the Application Server software uses a default port, so the port number is not part of the URL that users type.
  9. Click Edit Contents to add the files that make up the application.
  10. The Edit Content dialog appears.

    You can press the Control key and click multiple files.

  11. Navigate to install_dir/samples/quickstart.

  12. Note

    You can use the drop-down list of shortcuts.


  13. In the lower panel, “Contents of hello2,” click the WEB-INF node to expand it.
  14. In the upper panel, “Available Files,” under src/conf, click the file LocalStrings.properties and drag and drop it on the WEB-INF/classes directory in the lower panel.
  15. This adds the LocalStrings.properties file under the WEB-INF/classes directory.

  16. In the web/ directory, select the images/ directory and the index.jsp and response.jsp files.
  17. Click Add. The dialog shows that the selected files have been added.

  18. Dialog showing directory tree of Hello2 application’s contents

  19. Click OK to return to the Wizard’s WAR File definition window.
  20. Click Next to complete the process of defining the WAR file.
  21. The Choose Component Type dialog appears.

  22. Select JSP Page and click Next.
  23. The Component General Properties screen appears.

  24. From the drop-down list for “JSP Filename,” select index.jsp.
  25. This selection populates the other fields with default values based on the name.

  26. Click Next and read the notes about the next steps you can take.
  27. Click Finish to end the Wizard and return to the deploytool screen.

You have just packaged a simple application. In The J2EE 1.4 Tutorial, you can learn how to package more complex applications, but the general outline of the process is similar. Now that it is packaged, deploying the application is a simple operation. You will do that next.

Deploy the Packaged Application

The deploytool utility now shows the hello2 application, and has it selected.

View of Deploytool with hello2 application selected

To deploy the application, complete the following steps:

  1. From the toolbar, choose the Tools option and then Deploy.
  2. The security dialog appears.

  3. Supply the admin user name and password. (If you chose “Don’t prompt for username” during the installation, these fields are already filled in.)
  4. Click OK.
  5. The server now starts loading the application. A dialog appears to inform you of the server’s progress, so that you know when the deployment operation has completed. Click Close to close the dialog.

  6. Verify that the application is running by going to this URL: http://localhost:8080/hello2.
  7. You should now see the hello application’s first page, which provides a greeting from Duke, asking you to fill in your name.

  8. Type in your name, and click Submit.
  9. You should now see the customized response, giving you a personal Hello.

Deploying from a Development Directory

You can deploy an application directly from a development directory, if the appropriate directory hierarchy and deployment descriptors have been created. Because the process is complex for non-trivial applications, it is a procedure that is recommended only for advanced users, or simple applications. But when it is feasible to do so, deploying directly from a directory, instead of using the deploytool utility, can speed up the development cycle.

The process can be performed interactively by using the Admin Console, or by using asadmin deploydir from the command line or in a script. The steps for the command line are presented here, since most developers want to automate the procedure in command scripts.

To deploy from a development directory, follow these steps:

  1. In the install_dir/samples/quickstart/ directory, create a new directory called build/.
  2. Unzip the contents of the hello.war file into the build/ directory.
  3. Preserve the directory structure of the hello.war file when you unzip it. It is a template for the kind of file structure you need to deploy directly from a directory.

  4. If you already have an application hello deployed, undeploy it now using the command asadmin undeploy hello.
  5. Issue the following command to deploy the application:
  6. asadmin deploydir install_dir/samples/quickstart/build


    Note

    Specify the full path to the build/ directory.

    If you did not install the Application Server with the “Don’t prompt” option, also specify --user username --password password, where username is the admin user name and password is the admin password.


  7. Verify that this message appears to confirm that the redeployment succeeded:
  8. Command deploydir executed successfully.

  9. Verify that the application is running by going to this URL: http://localhost:8080/hello.


Using Command-line Tools

The Application Server software offers a variety of command-line tools for performing administrative functions, in addition to the Admin Console. This section explains what command-line tools are available.

To launch a tool, type the name of the tool in a command window. This table lists tools by name in the first column and describes them in the second column.

Name of Tool

Description

appclient

Launches the Application Client Container and invokes the client application packaged in the application Java archive (JAR) file.

asadmin

Application Server admin tool for configuring the Application Server software.

asant

Launches the Jakarta Ant tool, so that you can automate repetitive development and deployment tasks.

asupgrade

Application Server admin tool for upgrading the Application Server software.

capture-schema

Extracts schema information from a database and produces a schema file that the server can use for Container Managed Persistence (CMP).

deploytool

Creates deployment descriptors for J2EE applications, packages them into JAR, Web archive (WAR), and enterprise archive (EAR) files, and deploys them on the server.

This tool also provides a graphical user interface.

jspc

Compiles JSP pages.

package-appclient

Packages the application client container libraries and JAR files.

verifier

Validates the J2EE deployment descriptors with the DTDs.

This tool also provides a graphical user interface. To see the GUI, specify the -u option.

Some Windows systems launch a driver verifier utility with the same name. To launch the Application Server verifier, you must be in the install_dir/bin directory.

wscompile

Takes the service definition interface and generates the client stubs or server-side skeletons for JAX-RPC; or generates a Web Services Description Language (WSDL) description for the provided interface.

wsdeploy

Generates an implementation-specific, ready-to-deploy WAR file for web services applications that use JAX-RPC.

To configure the Windows environment to use the command-line tools:

  1. From the Explorer window or desktop, right click My Computer.
  2. Choose Properties to display the System Properties dialog.
  3. Click the Advanced tab.
  4. Click Environment Variables.
  5. In the User variables section,
    If a PATH variable exists:
       Click Edit.
       In Variable Value, enter the path to the server’s bin directory, separated from other entries by a semicolon:
       install_dir/bin;other_entries

    If a PATH variable is not present:
       Click New.
       In Variable Name, type PATH.
       In Variable Value, type the path to the server’s bin directory:
         install_dir/bin

    Add an environment variable AS_ADMIN_USER and set it to the Administrative User Name that you assigned during installation.

  6. Click OK to commit the change and close the remaining open windows.


Where to Go Next

Other resources for learning about and using Application Server are available. They include:


Documentation Conventions

This section describes the types of conventions used throughout this guide.

General Conventions

The following general conventions are used in this guide:


819-1004.   Copyright 2004-2005 Sun Microsystems, Inc. All rights reserved.