You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by sa...@apache.org on 2007/02/02 04:14:27 UTC

svn commit: r502463 - in /webservices/axis2/trunk/c: configure.ac include/axis2_const.h include/axis2_op_ctx.h modules/Makefile.am

Author: samisa
Date: Thu Feb  1 19:14:26 2007
New Revision: 502463

URL: http://svn.apache.org/viewvc?view=rev&rev=502463
Log:
Dropping WSDL WOM related stuff

Modified:
    webservices/axis2/trunk/c/configure.ac
    webservices/axis2/trunk/c/include/axis2_const.h
    webservices/axis2/trunk/c/include/axis2_op_ctx.h
    webservices/axis2/trunk/c/modules/Makefile.am

Modified: webservices/axis2/trunk/c/configure.ac
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/configure.ac?view=diff&rev=502463&r1=502462&r2=502463
==============================================================================
--- webservices/axis2/trunk/c/configure.ac (original)
+++ webservices/axis2/trunk/c/configure.ac Thu Feb  1 19:14:26 2007
@@ -55,14 +55,6 @@
     AC_CONFIG_SUBDIRS(axiom)
 fi
 
-if test -d $srcdir/xml_schema; then
-    AC_CONFIG_SUBDIRS(xml_schema)
-fi
-
-if test -d $srcdir/woden; then
-    AC_CONFIG_SUBDIRS(woden)
-fi
-
 #CFLAGS="$CFLAGS -ansi -Wall -D_LARGEFILE64_SOURCE -Wno-implicit-function-declaration"
 CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
 if test "$GCC" = "yes"; then
@@ -346,14 +338,9 @@
     modules/core/clientapi/Makefile \
     modules/core/receivers/Makefile \
     modules/core/util/Makefile \
-    modules/wsdl/Makefile \
-    modules/wsdl/builder/Makefile \
     modules/mod_addr/Makefile \
     modules/mod_log/Makefile \
     test/Makefile \
-    test/wsdl/Makefile \
-    test/wsdl/builder/Makefile \
-    test/wsdl/builder/print/Makefile \
     test/core/Makefile \
     test/core/description/Makefile \
     test/core/clientapi/Makefile \

Modified: webservices/axis2/trunk/c/include/axis2_const.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_const.h?view=diff&rev=502463&r1=502462&r2=502463
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_const.h (original)
+++ webservices/axis2/trunk/c/include/axis2_const.h Thu Feb  1 19:14:26 2007
@@ -217,6 +217,84 @@
 #define AXIS2_STYLE_DOC  "doc"
 #define AXIS2_STYLE_MSG  "msg"
 
+typedef enum axis2_wsdl_msg_labels 
+{
+    AXIS2_WSDL_MESSAGE_LABEL_IN = 0,
+    AXIS2_WSDL_MESSAGE_LABEL_OUT,
+    AXIS2_WSDL_MESSAGE_LABEL_MAX
+}axis2_wsdl_msg_labels_t;
+
+/*********************Message Exchange Pattern Constants***********************/
+/**
+ * Field MEP_URI_IN_ONLY
+ */
+#define AXIS2_MEP_URI_IN_ONLY "http://www.w3.org/2004/08/wsdl/in-only"
+
+#define AXIS2_MEP_CONSTANT_IN_ONLY 10
+
+/**
+ * Field MEP_URI_ROBUST_IN_ONLY
+ */
+#define AXIS2_MEP_URI_ROBUST_IN_ONLY "http://www.w3.org/2004/08/wsdl/robust-in-only"
+
+#define AXIS2_MEP_CONSTANT_ROBUST_IN_ONLY 11
+
+/**
+ * Field MEP_URI_IN_OUT
+ */
+#define AXIS2_MEP_URI_IN_OUT "http://www.w3.org/2004/08/wsdl/in-out"
+
+#define AXIS2_MEP_CONSTANT_IN_OUT 12
+
+/**
+ * Field MEP_URI_IN_OPTIONAL_OUT
+ */
+#define AXIS2_MEP_URI_IN_OPTIONAL_OUT "http://www.w3.org/2004/08/wsdl/in-opt-out"
+
+#define AXIS2_MEP_CONSTANT_IN_OPTIONAL_OUT 13
+
+/**
+ * Field MEP_URI_OUT_ONLY
+ */
+#define AXIS2_MEP_URI_OUT_ONLY "http://www.w3.org/2004/08/wsdl/out-only"
+
+#define AXIS2_MEP_CONSTANT_OUT_ONLY 14
+
+/**
+ * Field MEP_URI_ROBUST_OUT_ONLY
+ */
+#define AXIS2_MEP_URI_ROBUST_OUT_ONLY "http://www.w3.org/2004/08/wsdl/robust-out-only"
+
+#define AXIS2_MEP_CONSTANT_ROBUST_OUT_ONLY 15
+
+/**
+ * Field MEP_URI_OUT_IN
+ */
+#define AXIS2_MEP_URI_OUT_IN "http://www.w3.org/2004/08/wsdl/out-in"
+
+#define AXIS2_MEP_CONSTANT_OUT_IN 16
+
+/**
+ * Field MEP_URI_OUT_OPTIONL_IN
+ */
+#define AXIS2_MEP_URI_OUT_OPTIONAL_IN "http://www.w3.org/2004/08/wsdl/out-opt-in"
+
+#define AXIS2_MEP_CONSTANT_OUT_OPTIONAL_IN 17
+
+#define AXIS2_MEP_CONSTANT_INVALID -1
+
+/**
+ * Field WSDL_MESSAGE_DIRECTION_IN
+ */
+#define AXIS2_WSDL_MESSAGE_DIRECTION_IN "in"
+
+
+/**
+ * Field WSDL_MESSAGE_DIRECTION_OUT
+ */
+#define AXIS2_WSDL_MESSAGE_DIRECTION_OUT "out"
+
+
 /**
  * Field METHOD_NAME_ESCAPE_CHARACTOR
  */

Modified: webservices/axis2/trunk/c/include/axis2_op_ctx.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_op_ctx.h?view=diff&rev=502463&r1=502462&r2=502463
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_op_ctx.h (original)
+++ webservices/axis2/trunk/c/include/axis2_op_ctx.h Thu Feb  1 19:14:26 2007
@@ -41,7 +41,6 @@
 #include <axis2_env.h>
 #include <axis2_msg_ctx.h>
 #include <axis2_op.h>
-#include <axis2_wsdl.h>
 
 #ifdef __cplusplus
 extern "C"

Modified: webservices/axis2/trunk/c/modules/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/Makefile.am?view=diff&rev=502463&r1=502462&r2=502463
==============================================================================
--- webservices/axis2/trunk/c/modules/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/Makefile.am Thu Feb  1 19:14:26 2007
@@ -1 +1 @@
-SUBDIRS = wsdl core mod_addr mod_log
+SUBDIRS = core mod_addr mod_log



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