roshan 2004/05/11 02:29:40
Modified: targets/axis/cpp lininstall-guide.pdf lininstall-guide.html
Log:
Changed Apache 2.0 to 1.3 at one place in the Linux Installation guide doc
Revision Changes Path
1.12 +180 -174 ws-site/targets/axis/cpp/lininstall-guide.pdf
<<Binary file>>
1.13 +21 -18 ws-site/targets/axis/cpp/lininstall-guide.html
Index: lininstall-guide.html
===================================================================
RCS file: /home/cvs/ws-site/targets/axis/cpp/lininstall-guide.html,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- lininstall-guide.html 7 May 2004 04:29:37 -0000 1.12
+++ lininstall-guide.html 11 May 2004 09:29:39 -0000 1.13
@@ -168,7 +168,7 @@
<span class="menuLabel">Axis (C++)</span>
<div class="menuItem">
-<a href="../cpp/index.html">Axis C++ 1.1 released!</a>
+<a href="../cpp/index.html">Latest Axis C++ Release!</a>
</div>
<div class="menuItem">
@@ -322,7 +322,7 @@
</div>
<p>We tested with the following</p>
<ul>
-<li>RedhatLinux9.0(2.4.20-8), Dabian(2.6.3-1-686)(unstable), Redhat
Linux8.0(2.4.18-14)</li>
+<li>Redhat Linux 8.0(2.4.18-14) RedhatLinux9.0(2.4.20-8),
Dabian(2.6.3-1-686)(unstable)</li>
<li>Apache 1.3 [apache_1.3.27.tar .gz, apache_1.3.28.tar.gz)] (Source), Apache2.0
(source)</li>
<li>expat [expat-1.95.7.tar.gz](Source) </li>
</ul>
@@ -426,12 +426,12 @@
</p>
<p>If you are using xercesc parser copy the xercesc include files</p>
<p>
-<strong>$ cp -rf <xercescinstdirectory>/include/xercesc/*
$AXISCPP_HOME/include/xercesc/</strong>
+<strong>$ cp -rf <xercescinstdirectory>/include/*
$AXISCPP_HOME/include/xercesc/</strong>
</p>
<p>
<strong>$ cd $AXISCPP_HOME</strong>
</p>
-<p>The Folder called deploy in the $AXISCPP_HOME/ should be copied to your place of
choice. Rename the deploy folder as "Axis" . Give all permissions to this folder.<br>
+<p>The Folder called deploy in the $AXISCPP_HOME/ should be copied to apache root
folder .Rename the deploy folder as "Axis" . Give all permissions to this folder.<br>
<br>
<br>
<strong>$ cp -rf $AXISCPP_HOME/deploy /usr/local</strong>
@@ -461,7 +461,7 @@
<p>If you are using expat parser do the following<br>
</p>
<p>set <strong>EXPAT_HOME</strong>="<Your expat installation root folder>"</p>
-<p>set
<strong>LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$EXPAT_HOME/lib:$AXISCPP_HOME/bin:$AXIS_HOME"</strong>
(do this in your .bash_profile)<br>
+<p>set <strong>LD_LIBRARY_PATH="$EXPAT_HOME/lib:AXISCPP_HOME/bin"</strong> (do this
in your .bash_profile)<br>
<br>
<br>
<strong>cd $AXISCPP_HOME/src/soap</strong>
@@ -475,7 +475,10 @@
</p>
<p>If you are using Xerces-c parser do the following</p>
<p>set <strong>XERCESC_HOME</strong>="<Your xercesc installation root
folder>"</p>
-<p>set
<strong>LD_LIBRARY_PATH="$XERCESC_HOME/lib:$AXISCPP_HOME/bin:$AXIS_HOME"</strong> (do
this in your .bash_profile)<br>
+<p>set <strong>LD_LIBRARY_PATH="$XERCESC_HOME/lib"</strong> (do this in your
.bash_profile)<br>
+<br>
+<strong>cp -rf $XERCESC_HOME/include/xercesc/*
$AXISCPP_HOME/include/xercesc/</strong>
+<br>
<br>
<strong>cd $AXISCPP_HOME/src/soap</strong>
<br>
@@ -520,28 +523,28 @@
<br>
<br>
</p>
-<p>libaxiscpp_mod.so (If you built for apache2 this is libaxiscpp_mod2.so),
libaxiscpp_client.so, libserver_engine.so, libAdminService.so, adminclient,
simple-axis_server should have been created in $AXISCPP_HOME/bin directory. Note:- you
can give the install path inside the runconfigure script.</p>
+<p>libaxiscpp_mod.so (If you built for apache2 this is libaxiscpp_mod2.so) should
have been created in $AXISCPP_HOME/bin directory. Note:- you can give the install path
inside the runconfigure script.</p>
<p>Now there is no need to seperately build client side and server side. When
execute build.sh it will lookafter
everything.<br>-----------------------------------------------------------------------</p>
<p>
-<strong>NOTE:</strong> If you use apache2.0 following two small changes has to be
done in $AXISCPP_HOME/configure.ac and $AXISCPP_HOME/src/server/Makefile.am)</p>
+<strong>NOTE:</strong> If you use apache1.3 following two small changes have to be
done in $AXISCPP_HOME/configure.ac and $AXISCPP_HOME/src/server/Makefile.am)</p>
<p>in $AXISCPP_HOME/configure.ac</p>
-<p>comment</p>
+<p>uncomment</p>
<p>
<strong>AC_OUTPUT(Makefile src/Makefile src/common/Makefile src/engine/Makefile
src/soap/Makefile src/wsdd/Makefile src/xml/Makefile src/server/Makefile
src/server/apache/Makefile)</strong>
</p>
-<p>and uncomment</p>
+<p>and comment</p>
<p>
<strong>#AC_OUTPUT(Makefile src/Makefile src/common/Makefile src/engine/Makefile
src/soap/Makefile src/wsdd/Makefile src/xml/Makefile src/server/Makefile
src/server/apache2/Makefile)</strong>
</p>
<p>in $AXISCPP_HOME/src/server/Makefile.am</p>
-<p>change SUBDIRS = apache to SUBDIRS =
apache2<br>------------------------------------------------------------------------------<br>
+<p>change SUBDIRS = apache2 to SUBDIRS = apache<br>
------------------------------------------------------------------------------<br>
<br>
<br>Then to deploy it on apache<br>
<br>
</p>
-<p>First you need to edit <apache install directory>/conf/httpd.conf</p>
+<p>First you need to edit /usr/local/apache/conf/httpd.conf</p>
<p>
-<strong>$ vi <apache install directory>/conf/httpd.conf</strong>
+<strong>$ vi /usr/local/apache/conf/httpd.conf</strong>
</p>
<p>At the bottom of the file you have to include following lines and save it.</p>
<p>
@@ -558,7 +561,7 @@
</p>
<br>
<p>
-<strong>cd /usr/local/Axis</strong>
+<strong>cd /usr/local/apache/libexec (If apache2
/usr/local/apache2/modules)</strong>
</p>
<p>
<strong>cp -f $AXIS_HOME/deploy.sh_apache ./deploy.sh</strong>
@@ -600,7 +603,7 @@
<p>
<strong>$ cd $AXISCPP_HOME</strong>
</p>
-<p>The Folder called deploy in the $AXISCPP_HOME/ should be copied to a folder of
your choice .Rename the deploy folder as "Axis" . Give all permissions to this
folder.<br>
+<p>The Folder called deploy in the $AXISCPP_HOME/ should be copied to apache root
folder .Rename the deploy folder as "Axis" . Give all permissions to this folder.<br>
<br>
<br>
<strong>$ cp -rf $AXISCPP_HOME/deploy /usr/local</strong>
@@ -634,9 +637,9 @@
<br>Then to deploy it on apache<br>
<br>
</p>
-<p>First you need to edit <apache install directory>/conf/httpd.conf</p>
+<p>First you need to edit /usr/local/apache/conf/httpd.conf</p>
<p>
-<strong>$ vi <apache install directory>/conf/httpd.conf</strong>
+<strong>$ vi /usr/local/apache/conf/httpd.conf</strong>
</p>
<p>At the bottom of the file you have to include following lines and save it.</p>
<p>
@@ -653,7 +656,7 @@
</p>
<br>
<p>
-<strong>cd /usr/local/Axis</strong>
+<strong>cd /usr/local/apache/libexec (If apache2
/usr/local/apache2/modules)</strong>
</p>
<p>
<strong>cp -f $AXIS_HOME/deploy.sh_apache ./deploy.sh</strong>