6.2 Installation
Installing Struts with your servlet container
Novell ExteNd Application Server 4.0
Using the ExteNd Workbench to deploy a WAR to the Novell ExteNd application server:- Start the Novell ExteNd application server.
- Using the ExteNd Workbench, create a new project:
- File > New Project
- Select
Deploy-Only
and click
OK
- Under Archive File select the appropriate Struts WAR file
- Indicate the type of file (i.e. WAR 1.2)
- Give the Deploy-Only project a name (i.e. struts-example)
- Give the Deploy-Only project a location
(i.e.
D:\Struts
) - Click
Next
- Review the material to be sure everything is correct
- Click
Finish
- Setting up a deployment plan and server profile:
- Right click on the project icon you just created and select Deployment Plan
- Select
OK
when asked to create a new deployment plan - Save the deployment plan
- Create a server profile: Projects > Deployment Settings
- Click on the Server Profiles tab
- Select a server profile and click
OK
- Deploy the project:
- Project > Deploy Archive
- Start the SilverStream application server.
- Create an XML deployment plan for the
struts-example.war
application. - Call the file
struts-example-depl-plan.xml
. You can use the following contents for the file:<?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>
- Create an XML deployment plan for the
struts-documentation.war
application. - Call the file
struts-documentation-depl-plan.xml
. You can use the following contents for the file:<?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>
- 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.
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
Back to Installation