You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by st...@apache.org on 2005/05/16 19:33:59 UTC

svn commit: r170414 - in /incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs: pageflow/sample_netui-blank.xml wsm/sample_wsm-blank.xml

Author: steveh
Date: Mon May 16 10:33:58 2005
New Revision: 170414

URL: http://svn.apache.org/viewcvs?rev=170414&view=rev
Log:
Removing references to to.dir build variable.

Modified:
    incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/pageflow/sample_netui-blank.xml
    incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/wsm/sample_wsm-blank.xml

Modified: incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/pageflow/sample_netui-blank.xml
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/pageflow/sample_netui-blank.xml?rev=170414&r1=170413&r2=170414&view=diff
==============================================================================
--- incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/pageflow/sample_netui-blank.xml (original)
+++ incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/pageflow/sample_netui-blank.xml Mon May 16 10:33:58 2005
@@ -83,23 +83,9 @@
 				<title>To Deploy and Run the Template Web App</title>
 				<p>Before deploying the application, ensure that Tomcat is turned on.</p>
 <source>%CATALINA_HOME%\bin\startup.bat</source>				
-	<p>To deploy the web application copy the applcation WAR file to Tomcat's <code>webapps</code> dir.</p>
+	<p>To deploy the web application copy the application WAR file to Tomcat's <code>webapps</code> dir.</p>
 	<source>copy C:\webDevelopementDirectory\&lt;SomeContext>.war %CATALINA_HOME%\webapps</source>
-		
-	<!--<p>, visit the following URL in a web browser.  (We recommend that you open the 
-		link in a new browser window.  Each time you want to redeploy the application,
-		simply refresh the browser.)</p>
-	<p>In the URL below replace <strong>&lt;SomeContext></strong> with some string that is appropriate for your
-		application.  This string will appear in the URL when users visit your application.
-		Replace <strong>&lt;Project-Folder></strong> with the path to your project folder (e.g., <code>C:/myDevelopmentDirectory/myWebApplication</code>).</p>  
-    <p class="quote">
-	  http://localhost:8080/manager/deploy?path=/<strong>&lt;SomeContext></strong>&amp;war=file:<strong>&lt;Project-Folder></strong>&amp;update=true
-	</p>
-	<p>This method of application deployment assumes that you have added the <code>manager</code>
-		role to your Tomcat installation.  For instructions on adding the <code>manager</code> role, 
-		see <a class="fork" href="../setup.html#optional">Beehive Installation and Setup</a>.</p>
-	<p>If you are prompted for a username/password, enter: <code>manager/manager</code></p>
-	-->
+
 				<p>You can now try out the web app by pointing your browser at 
 					the following link.</p>
 				<ul>

Modified: incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/wsm/sample_wsm-blank.xml
URL: http://svn.apache.org/viewcvs/incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/wsm/sample_wsm-blank.xml?rev=170414&r1=170413&r2=170414&view=diff
==============================================================================
--- incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/wsm/sample_wsm-blank.xml (original)
+++ incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/wsm/sample_wsm-blank.xml Mon May 16 10:33:58 2005
@@ -60,17 +60,20 @@
 		<p>The URL will be <code>http://localhost:8080/&lt;SomeContext>WS/</code></p>
 					</section>			
 			<section><title>Build and Deploy the Template Web App</title>
-				<p>To build the template web service and deploy it the resulting WAR file, run the following Ant command.</p>
-				<p>The following command assumes that you are using Tomcat server.</p>
+				<p>To build the template web service, run the following Ant command.
+					(The result of the build will be a WAR file: <code>&lt;SomeContext>WS.war</code>.
+					The WAR file will be saved to the parent directory of <code>&lt;Project-Folder</code>.
+					Assume that this parent directory is named <code>C:/webDevelopementDirectory</code>.)</p>
 <source>ant 
-  -f &lt;Project-Folder>WEB-INF\build.xml
-  -Dto.dir=%CATALINA_HOME%\webapps 
+  -f &lt;Project-Folder>WEB-INF\build.xml 
   clean 
   build 
   deploy
 
 <strong>Copy and Paste version:</strong>
-ant -f &lt;Project-Folder>\WEB-INF\build.xml -Dto.dir=%CATALINA_HOME%\webapps clean build deploy</source>
+ant -f &lt;Project-Folder>\WEB-INF\build.xml clean build deploy</source>
+	<p>To deploy the web application copy the application's WAR file to Tomcat's <code>webapps</code> dir.</p>
+	<source>copy C:\webDevelopementDirectory\&lt;SomeContext>WS.war %CATALINA_HOME%\webapps</source>
 </section>
 			<section>
 				<title>To Run the Template Web Service</title>