You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@esme.apache.org by rh...@apache.org on 2011/07/17 10:23:39 UTC

svn commit: r1147551 - /esme/site/trunk/content/docs/install/windows-xp.mdtext

Author: rhirsch
Date: Sun Jul 17 08:23:39 2011
New Revision: 1147551

URL: http://svn.apache.org/viewvc?rev=1147551&view=rev
Log:
CMS commit to esme by rhirsch

Modified:
    esme/site/trunk/content/docs/install/windows-xp.mdtext

Modified: esme/site/trunk/content/docs/install/windows-xp.mdtext
URL: http://svn.apache.org/viewvc/esme/site/trunk/content/docs/install/windows-xp.mdtext?rev=1147551&r1=1147550&r2=1147551&view=diff
==============================================================================
--- esme/site/trunk/content/docs/install/windows-xp.mdtext (original)
+++ esme/site/trunk/content/docs/install/windows-xp.mdtext Sun Jul 17 08:23:39 2011
@@ -1,82 +1,82 @@
-Title: Windows XP Installation Guide
-
-## JRE6
-Get the latest JRE 6 from Sun: http://java.sun.com/javase/downloads/index.jsp
-Follow the installation instructions
-Check if the JAVA_HOME environment variable is set correctly
-
-Start > Control Panel > System > Advanced > Environment Variables
-Under "System variables" you should see a JAVA_HOME entry
-
-If there is such a variable click on "Edit" and check if the path lead to the corresponding JRE 6 path (e.g. C:/Program Files/Java/jre6)
-If the variable is missing click on "New", set the "Variable name" to JAVA_HOME and the "Variable value" to the right path (e.g. C:\Program Files\Java\jre6)
-In case you have a proxy for your internet connection you should check the Java network settings
-
-Start > Control Panel > Java > Network settings
-If the default setting is not correct (use browser settings) enter your proxy settings directly
-
-## Apache Tomcat
-Get the latest Tomcat release: http://tomcat.apache.org/download-55.cgi (the "Windows Service Installer" is the best choice), install and start it. Remember your port number.
-During the installation procedure you can take the default (port 8080) or port 80.
-
-## Maven
-Get the latest Maven release: http://maven.apache.org/download.html
-Unzip the file on your machine (preferably with no blanks in the path name, e.g. c:\maven)
-Some environment variables need to be set.
-
-Start > Control Panel > System > Advanced > Environment Variables
-Add the following system variables with the corresponding values
-<pre>
-Variable: M2_HOME	 Value: <path you've unzipped maven> (e.g. c:\maven)
-Variable: M2	 Value: %M2_HOME%\bin
-Variable: MAVEN_OPTS	 Value: -Xms256m -Xmx512m
-</pre> 
-In case you have a proxy for your internet connection you need to change the settings.xml file in the conf directory.
-<pre>
-<proxies>
-   <proxy>
-      <active>true</active>
-      <protocol>http</protocol>
-      <host>proxy</host>
-      <port>8080</port>
-    </proxy>
-  </proxies>
-</pre> 
-On windows, the file can be found at C:\Documents and Settings\<user>\.m2
-
-## Get the ESME source
-Get the latest source at http://svn.apache.org/repos/asf/esme/trunk/site/build/site/en/download/download.html
-Be aware that the source code might have errors/bugs. Therefore you can try out the following revisions that I've tried out and build successfully:
-
-Ideally you should have a subversion client installed on your machine (e.g. Tortoise SVN: http://tortoisesvn.net/downloads).
-
-The next steps describe how you can download the code with the Tortoise svn client:
-
-In case you have a proxy for your internet connection you need to change the Tortoise SVN settings. After changing click on "OK". 
-
-
-
-
-Start the checkout with the SVN client (right-click mouse on an empty directory). 
-
-
-Enter the URL to the ESME repository. In case you want to have the most current sources select "HEAD revision". If you want to be on the safe side take one of the revisions listed above. 
-
-
-
-After clicking "OK" the code should start downloading.
-
-## Building ESME
-Start the command line: press the <windows > and <R> key.
-Change to the trunk\server directory of the downloaded ESME code (with cd xxxxx).
-Start the build with mvn install.
-If no errors appeared you can find a .WAR file in the trunk\server\target directory.
-
-## Deploying ESME
-Ensure that the Tomcat service is running.
-Take the .war file and rename it to esme.war.
-Copy the file to the tomcat webapps directory (e.g. C:\tomcat60\webapps). Tomcat will expand the war file automatically.
-Now you've deployed ESME on the tomcat server.
-
-## Starting ESME
+Title: Windows XP Installation Guide
+
+## JRE6
+Get the latest JRE 6 from Sun: http://java.sun.com/javase/downloads/index.jsp
+Follow the installation instructions
+Check if the JAVA_HOME environment variable is set correctly
+
+Start > Control Panel > System > Advanced > Environment Variables
+Under "System variables" you should see a JAVA_HOME entry
+
+If there is such a variable click on "Edit" and check if the path lead to the corresponding JRE 6 path (e.g. C:&#47;Program Files&#47;Java&#47;jre6)
+If the variable is missing click on "New", set the "Variable name" to JAVA_HOME and the "Variable value" to the right path (e.g. C:\Program Files\Java\jre6)
+In case you have a proxy for your internet connection you should check the Java network settings
+
+Start > Control Panel > Java > Network settings
+If the default setting is not correct (use browser settings) enter your proxy settings directly
+
+## Apache Tomcat
+Get the latest Tomcat release: http://tomcat.apache.org/download-55.cgi (the "Windows Service Installer" is the best choice), install and start it. Remember your port number.
+During the installation procedure you can take the default (port 8080) or port 80.
+
+## Maven
+Get the latest Maven release: http://maven.apache.org/download.html
+Unzip the file on your machine (preferably with no blanks in the path name, e.g. c:\maven)
+Some environment variables need to be set.
+
+Start > Control Panel > System > Advanced > Environment Variables
+Add the following system variables with the corresponding values
+<pre>
+Variable: M2_HOME	 Value: <path you've unzipped maven> (e.g. c:\maven)
+Variable: M2	 Value: %M2_HOME%\bin
+Variable: MAVEN_OPTS	 Value: -Xms256m -Xmx512m
+</pre> 
+In case you have a proxy for your internet connection you need to change the settings.xml file in the conf directory.
+
+    <proxies>
+       <proxy>
+          <active>true</active>
+          <protocol>http</protocol>
+          <host>proxy</host>
+          <port>8080</port>
+        </proxy>
+      </proxies>
+ 
+On windows, the file can be found at C:\Documents and Settings\<user>\.m2
+
+## Get the ESME source
+Get the latest source at http://svn.apache.org/repos/asf/esme/trunk/site/build/site/en/download/download.html
+Be aware that the source code might have errors/bugs. Therefore you can try out the following revisions that I've tried out and build successfully:
+
+Ideally you should have a subversion client installed on your machine (e.g. Tortoise SVN: http://tortoisesvn.net/downloads).
+
+The next steps describe how you can download the code with the Tortoise svn client:
+
+In case you have a proxy for your internet connection you need to change the Tortoise SVN settings. After changing click on "OK". 
+
+
+
+
+Start the checkout with the SVN client (right-click mouse on an empty directory). 
+
+
+Enter the URL to the ESME repository. In case you want to have the most current sources select "HEAD revision". If you want to be on the safe side take one of the revisions listed above. 
+
+
+
+After clicking "OK" the code should start downloading.
+
+## Building ESME
+Start the command line: press the <windows > and <R> key.
+Change to the trunk\server directory of the downloaded ESME code (with cd xxxxx).
+Start the build with mvn install.
+If no errors appeared you can find a .WAR file in the trunk\server\target directory.
+
+## Deploying ESME
+Ensure that the Tomcat service is running.
+Take the .war file and rename it to esme.war.
+Copy the file to the tomcat webapps directory (e.g. C:\tomcat60\webapps). Tomcat will expand the war file automatically.
+Now you've deployed ESME on the tomcat server.
+
+## Starting ESME
 Go to your browser and call the address http://localhost:<tomcat port you've selected>/esme
\ No newline at end of file