summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--java/sca/samples/chat-webapp/README22
1 files changed, 22 insertions, 0 deletions
diff --git a/java/sca/samples/chat-webapp/README b/java/sca/samples/chat-webapp/README
index dddd7e3f94..09b9c6f6be 100644
--- a/java/sca/samples/chat-webapp/README
+++ b/java/sca/samples/chat-webapp/README
@@ -46,6 +46,28 @@ chat-webapp/
pom.xml - the Maven build file
+Building And Running The Sample Using Ant
+-----------------------------------------
+With the binary distribution the sample can be built using Ant as
+follows
+
+cd chat-webapp
+ant package
+
+This should result in a war file (sample-chat-webapp.war) in the target
+directory. Copy this war file to your web app deployment directory in you
+web app container.
+
+The process for getting the web app running will depend on which web app container
+you are using. For example, if you are using Tomcat then it is simply a matter
+of copying the WAR file to the webapps directory.
+
+Once the web app is deployed use your browser to visit the following URL;
+
+http://localhost:8080/sample-chat-webapp
+
+The port and hostname will of course vary depending on your local installation.
+
Building And Running The Sample Using Maven
-------------------------------------------
With either the binary or source distributions the sample can be built and run