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 da...@apache.org on 2005/11/25 08:35:10 UTC

svn commit: r348907 - /webservices/axis2/trunk/c/include/axis2_svc.h

Author: damitha
Date: Thu Nov 24 23:35:05 2005
New Revision: 348907

URL: http://svn.apache.org/viewcvs?rev=348907&view=rev
Log:
Fixed bug in AXIS2_SVC_GET_OPERATION_WITH_QNAME and AXIS2_SVC_GET_OPERATION_WITH_NAME
macros. It should take three parameters instead of two

Modified:
    webservices/axis2/trunk/c/include/axis2_svc.h

Modified: webservices/axis2/trunk/c/include/axis2_svc.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/include/axis2_svc.h?rev=348907&r1=348906&r2=348907&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_svc.h (original)
+++ webservices/axis2/trunk/c/include/axis2_svc.h Thu Nov 24 23:35:05 2005
@@ -66,7 +66,7 @@
 	struct axis2_operation *(AXIS2_CALL *get_operation_with_qname) (
                                                   axis2_svc_t *svc, 
                                                   axis2_env_t **env,
-	 	                                          axis2_qname_t *operation_name);
+	 	                                          axis2_qname_t *operation_qname);
 
 	struct axis2_operation *(AXIS2_CALL *get_operation_with_name) (
                                             axis2_svc_t *svc, 
@@ -157,11 +157,11 @@
 #define AXIS2_SVC_ADD_OPERATION(svc, env, operation) \
 		(svc->ops->add_operation (svc, env, operation))
 
-#define AXIS2_SVC_GET_OPERATION_WITH_QNAME(svc, env) \
-		(svc->ops->get_operation_with_qname (svc, env))
+#define AXIS2_SVC_GET_OPERATION_WITH_QNAME(svc, env, operation_qname) \
+		(svc->ops->get_operation_with_qname (svc, env, operation_qname))
 
-#define AXIS2_SVC_GET_OPERATION_WITH_NAME(svc, env) \
-		(svc->ops->get_operation_with_name (svc, env))
+#define AXIS2_SVC_GET_OPERATION_WITH_NAME(svc, env, operation_name) \
+		(svc->ops->get_operation_with_name (svc, env, operation_name))
 
 #define AXIS2_SVC_GET_OPERATIONS(svc, env) (svc->ops->get_operations (svc, env))