craigmcc    2002/12/07 16:54:35

  Modified:    doc/userGuide installation.xml
  Added:       doc/userGuide installation-novell.xml
  Log:
  Add documentation for the installation steps on Novell ExteNd Application
  Server.
  
  PR: 15116
  Submitted by: John Berry <jberry at novell.com>
  
  Revision  Changes    Path
  1.16      +3 -0      jakarta-struts/doc/userGuide/installation.xml
  
  Index: installation.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/installation.xml,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- installation.xml  2 Dec 2002 13:09:07 -0000       1.15
  +++ installation.xml  8 Dec 2002 00:54:34 -0000       1.16
  @@ -17,6 +17,7 @@
       <author>Stanley Santiago</author>
       <author>Wong Kok Kai</author>
       <author>Rob Leland</author>
  +    <author>John Berry</author>
       <title>The Struts Framework Project - Installation (1.1)</title>
     </properties>
   
  @@ -312,6 +313,8 @@
     <li>iPortal Application Server - <a href="installation-ipas.html">Additional 
steps required.</a></li>
     <li>Jetty - <a href="installation-jetty.html">Additional steps required.</a></li>
     <li>JRun - <a href="installation-jr30.html">Additional steps required.</a></li>
  +  <li>Novell ExteNd Application Server 4.0+ -
  +      <a href="installation-novell.html">Additional steps requird.</a></li>
     <li>Orion Application Server - <a href="installation-oas.html">Additional steps
       required.</a></li>
     <li>Resin 1.2+ "standalone" - No additional steps required.</li>
  
  
  
  1.1                  jakarta-struts/doc/userGuide/installation-novell.xml
  
  Index: installation-novell.xml
  ===================================================================
  <?xml version="1.0"?>
  <document url="./installation-novell.xml">
  
    <properties>
      <author>John Berry</author>
      <title>The Struts Framework Project - Installation - Novell ExteNd Application 
Server</title>
    </properties>
  
    <body>
  <chapter name="5.2 Installation" href="installation">
  <section name="Installing Struts with your servlet container" href="Containers">
  
  <h4><a name="orion">Novell ExteNd Application Server 4.0</a></h4>
  
  <b>Using the ExteNd Workbench to deploy a WAR to the Novell ExteNd
  application server:</b>
  <ul>
    <li>Start the Novell ExteNd application server.</li>
    <li>Using the ExteNd Workbench, create a new project:
      <ol>
      <li>File &gt; New Project</li>
      <li>Select <em>Deploy-Only</em> and click <code>OK</code></li>
      <li>Under Archive File select the appropriate Struts WAR file</li>
      <li>Indicate the type of file (i.e. WAR 1.2)</li>
      <li>Give the Deploy-Only project a name (i.e. struts-example)</li>
      <li>Give the Deploy-Only project a location
          (i.e. <code>D:\Struts</code>)</li>
      <li>Click <code>Next</code></li>
      <li>Review the material to be sure everything is correct</li>
      <li>Click <code>Finish</code></li>
      </ol>
    </li>
    <li>Setting up a deployment plan and server profile:
      <ol>
      <li>Right click on the project icon you just created and
          select <em>Deployment Plan</em></li>
      <li>Select <code>OK</code> when asked to create a new deployment
          plan</li>
      <li>Save the deployment plan</li>
      <li>Create a server profile:  Projects &gt; Deployment Settings</li>
      <li>Click on the Server Profiles tab</li>
      <li>Select a server profile and click <code>OK</code></li>
      </ol>
    </li>
    <li>Deploy the project:
      <ol>
      <li>Project &gt; Deploy Archive</li>
      </ol>
    </li>
  </ul>
  
  <b>Deploying a WAR from a command line using SilverCmd:</b>
  <ul>
    <li>Start the SilverStream application server.</li>
    <li>Create an XML deployment plan for the <code>struts-example.war</code>
        application.</li>
    <li>Call the file <code>struts-example-depl-plan.xml</code>.  You
        can use the following contents for the file:
  <pre><![CDATA[
  <?xml version="1.0" encoding="UTF-8"?>
  <!DOCTYPE warJarOptions PUBLIC
    "-//Silverstream Software, Inc.//DTD J2EE WAR Deployment Plan//EN"
    "deploy_war.dtd">
  <warJarOptions>
    <warJar>
      <warJarName>struts-example.war</warJarName>
      <isEnabled>true</isEnabled>
      <urls>
        <el>struts-example</el>
      </urls>
    </warJar>
  </warJarOptions>
  ]]></pre>
    </li>
    <li>Create an XML deployment plan for the
        <code>struts-documentation.war</code> application.</li>
    <li>Call the file <code>struts-documentation-depl-plan.xml</code>.  You
        can use the following contents for the file:
  <pre><![CDATA[
  <?xml version="1.0" encoding="UTF-8"?>
  <!DOCTYPE warJarOptions PUBLIC
    "-//Silverstream Software, Inc.//DTD J2EE WAR Deployment Plan//EN"
    "deploy_war.dtd">
  <warJarOptions>
    <warJar>
      <warJarName>struts-documentation.war</warJarName>
      <isEnabled>true</isEnabled>
      <urls>
        <el>struts-documentation</el>
      </urls>
    </warJar>
  </warJarOptions>
  ]]></pre>
    </li>
    <li>Run the following "SilverCmd DeployWAR" commands to deploy the
        applications.  You can change 'localhost' to whatever server you
        are deploying to.  You can change 'Silvermaster' to whatever
        database you are deploying to.
  <pre><![CDATA[
  SilverCmd DeployWar localhost Silvermaster struts-example.war
    -f struts-example-depl-plan.xml
  SilverCmd DeployWar localhost Silvermaster struts-documentation.war
    -f struts-documentation-depl-plan.xml
  ]]></pre>
    </li>
  </ul>
  
    <hr/>
    <p>Back to <a href="installation.html#Containers">Installation</a></p>
  </section>
  </chapter>
  </body>
  </document>
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to