You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by sa...@apache.org on 2007/04/03 12:10:46 UTC

svn commit: r525125 - /webservices/axis2/trunk/c/xdocs/docs/axis2c_manual.html

Author: samisa
Date: Tue Apr  3 03:10:43 2007
New Revision: 525125

URL: http://svn.apache.org/viewvc?view=rev&rev=525125
Log:
Fixed the typos pointed out by Evanthika

Modified:
    webservices/axis2/trunk/c/xdocs/docs/axis2c_manual.html

Modified: webservices/axis2/trunk/c/xdocs/docs/axis2c_manual.html
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/xdocs/docs/axis2c_manual.html?view=diff&rev=525125&r1=525124&r2=525125
==============================================================================
--- webservices/axis2/trunk/c/xdocs/docs/axis2c_manual.html (original)
+++ webservices/axis2/trunk/c/xdocs/docs/axis2c_manual.html Tue Apr  3 03:10:43 2007
@@ -36,7 +36,7 @@
 <p>This sections is aimed to help you to get a Web service up in quick time
 using Axis2/C and consume that service using an Axis2/C client.</p>
 
-<p>First download the latest binary release form Apache Axis2/C</p>
+<p>First download the latest binary release form Apache Axis2/C
 <a href="http://ws.apache.org/axis2/c/download.cgi">download page</a>. Once
 you download the correct binary that suits your platform, all that you
 require to get it running is to extract the package to a folder of your
@@ -52,10 +52,6 @@
 href="http://ws.apache.org/axis2/c/docs/installationguide.html">installation
 guide</a> for more details. 
 
-<p><br>
-<br>
-</p>
-
 <p>Once you have Axis2/C up and running successfully, you can start writing
 your own services and clients. The following sections detail how to write
 your first service and client with Axis2/C.</p>
@@ -262,12 +258,21 @@
 <p>On Linux:</p>
 <pre>gcc -shared -olibhello.so -I$AXIS2C_HOME/include -L$AXIS2C_HOME/lib -laxis2 hello.c</pre>
 
-<p>On Windows</p>
-
-<p>to compile,</p>
+<p>On Windows:</p>
+<p> Make sure you have run 'vcvars32.bat' to set the environment variables and path
+retuired to run the compiler and linker on command line</p>
+<p>to compile - </p>
 <pre>cl.exe /D "WIN32" /D "_WINDOWS" /D "_MBCS"/D"AXIS2_DECLARE_EXPORT" 
-/D "AXIS2_SVR_MULTI_THREADED" /w /nologo $(AXIS2_INCLUDE_PATH)
-$(APACHE_INCLUDE_PATH) /I hello.c</pre>
+/D "AXIS2_SVR_MULTI_THREADED" /w /nologo /I $(AXIS2_INCLUDE_PATH)
+/I $(APACHE_INCLUDE_PATH) hello.c</pre>
+
+<p>to link - </p>
+<pre>link.exe /nologo /LIBPATH:$(AXIS2_LIBS) /LIBPATH:$(LIBXSLT_BIN_DIR)\lib 
+         /LIBPATH:$(LIBXML2_BIN_DIR)\lib  /LIBPATH:$(APACHE_BIN_DIR)\lib 
+         /LIBPATH:$(ZLIB_BIN_DIR)\lib *.obj axis2_util.lib axiom.lib 
+         axis2_parser.lib axis2_engine.lib Rpcrt4.lib Ws2_32.lib 
+         /DLL /OUT:hello.dll</pre>
+
 
 <h3>1.1.7 Deploying the Service</h3>
 



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org