You are viewing a plain text version of this content. The canonical link for it is here.
Posted to soap-dev@xml.apache.org by gd...@apache.org on 2001/03/19 07:47:43 UTC

cvs commit: xml-soap/java/docs/install JRun.html

gdaniels    01/03/18 22:47:43

  Modified:    java/docs/install JRun.html
  Log:
  Fix path typo, and a few readability updates.
  
  Revision  Changes    Path
  1.3       +14 -10    xml-soap/java/docs/install/JRun.html
  
  Index: JRun.html
  ===================================================================
  RCS file: /home/cvs/xml-soap/java/docs/install/JRun.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- JRun.html	2001/02/14 00:40:26	1.2
  +++ JRun.html	2001/03/19 06:47:43	1.3
  @@ -19,34 +19,38 @@
   and add the Xerces .jar file to the beginning of the jrun.classpath line.
   Mine looks like this:
   <br>
  -<blockquote><code>jrun.classpath=E:/Projects/xerces-1_1_3/xerces.jar;{jrun.rootdir}/lib/ext;{jrun.rootdir}/lib/jrun.jar;{jrun.rootdir}/lib/install.jar</code></blockquote>
  +<blockquote><code>jrun.classpath=E:/xerces-1_2_3/xerces.jar;{jrun.rootdir}/lib/ext;{jrun.rootdir}/lib/jrun.jar;{jrun.rootdir}/lib/install.jar</code></blockquote>
   <li>Go into the JMC, and select the "Web Applications" section of your server
   (I use the JRun Default Server).  Click on "deploy an application".<br>
   <br>
  -<li>Select the Apache-SOAP /java/webapps directory in the "Servlet War File
  +<li>Select the Apache-SOAP /webapps/soap directory (under java/ in the source distribution, or off the root directory of the binary dist.) in the "Servlet War File
   or Directory" box.<br>
   <br>
   <li>Name the application (I call it "xml-soap"), and pick a base URL (I use
  -"/xml-soap")<br>
  +"/soap")<br>
   <br>
   <li>Select a deploy directory (I use the default, which is JRun's default
  -server directory, plus /xml-soap, so for me <code>C:/JRun/servers/default/xml-soap</code><br>
  +server directory, plus the name of the app, so for me it ends up being <code>C:/JRun/servers/default/xml-soap</code><br>
   <br>
  -<li>Click "deploy"<br>
  +<li>Click "deploy"<br><i>(at this point you should get a message telling you the app has been successfully deployed)</i>
   <br>
  -<li>Go to the "java settings" area of your default server, and add the
  -Apache-SOAP lib directory (<code>path-to-SOAP/lib</code>) and the base directory (this is so you get access to the samples) to the classpath.<br>
   <br>
  +<li>Go to the "java settings" area of your default server, and add the
  +Apache-SOAP jar file and base directory to the classpath.  For the source distribution, these would be <code>SOAPROOT/java/build/lib/soap.jar</code> and <code>SOAPROOT/java/build</code>.  For the binary distribution, they would be <code>SOAPROOT/lib/soap.jar</code> and <code>SOAPROOT</code>.  Mine looks like this (source dist, living at D:/xml-soap):<br>
  +<pre>{jrun.rootdir}/servers/lib
  +{jrun.server.rootdir}/lib
  +D:/xml-soap/java/build/lib/soap.jar
  +D:/xml-soap/java/build</pre>
   <li>Restart the server.  <b>NOTE: You must shut down and restart BOTH the admin
   server and the default server for the change you made to the
  -global.properties file to take.</b><br>
  +global.properties file to take.  That only needs to be done once.</b><br>
   <br>
  -<li>Try it out - access http://localhost/xml-soap/servlet/rpcrouter and see
  +<li>Try it out - access <a href="http://localhost/soap/servlet/rpcrouter">http://localhost/soap/servlet/rpcrouter</a> and see
   if you get the "I can't do GET" message.</ol>
   
   If the above worked, you know the servlet was succesfully installed.  You should now be able to deploy services by pointing your browser at:
   
  -<blockquote><a href="http://localhost/xml-soap">http://localhost/xml-soap</a></blockquote>
  +<blockquote><a href="http://localhost/soap/index.html">http://localhost/soap/index.html</a></blockquote>
   
   <p>Happy SOAP-ing!</p>
   </body>