summaryrefslogtreecommitdiffstats
path: root/tools/codegen/javatool/README
diff options
context:
space:
mode:
authorGravatar gmcdonald2010-02-13 01:32:03 +0000
committerGravatar gmcdonald2010-02-13 01:32:03 +0000
commit0425aadc78680e53000fd0108b540d6eca048516 (patch)
tree8ec7ab8e015d454c5ec586dfc91e05a2dce1cfc0 /tools/codegen/javatool/README
downloadaxis2c-0425aadc78680e53000fd0108b540d6eca048516.tar.gz
axis2c-0425aadc78680e53000fd0108b540d6eca048516.tar.bz2
Moving axis svn, part of TLP move INFRA-2441
git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@909681 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'tools/codegen/javatool/README')
-rw-r--r--tools/codegen/javatool/README29
1 files changed, 29 insertions, 0 deletions
diff --git a/tools/codegen/javatool/README b/tools/codegen/javatool/README
new file mode 100644
index 0000000..395bbb0
--- /dev/null
+++ b/tools/codegen/javatool/README
@@ -0,0 +1,29 @@
+WSDL2C.sh and WSDL2C.bat
+========================
+
+These scripts are provided to simplify the C code generation using WSDL2C Java tool that comes with Apache Axis2/Java.
+
+How to use
+----------
+1. Set AXIS2_HOME envionment vaiable to you Axis2 Java installation directory.
+ eg: 'export AXIS2_HOME=/home/axis2java'
+3. Run WSDL2C.sh giving WSDL2C command line arguments as the arguments to the shell script.
+
+Note: Do the same for the bat file on Windows.
+
+
+Examples
+--------
+
+To generate a sevice skeleton in C:
+Linux:
+ sh WSDL2C.sh -uri interoptestdoclitparameters.wsdl -ss -sd -d adb -u
+Windows:
+ WSDL2C.bat -uri interoptestdoclitparameters.wsdl -ss -sd -d adb -u
+
+To generate a client stub in C:
+Linux:
+ sh WSDL2C.sh -uri interoptestdoclitparameters.wsdl -d adb -u
+Windows
+ WSDL2C.bat -uri interoptestdoclitparameters.wsdl -d adb -u
+