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 2006/09/09 18:36:15 UTC

svn commit: r441815 - in /webservices/axis2/trunk/c: modules/core/clientapi/svc_client.c samples/client/Makefile.am samples/client/mtom/mtom_client.c samples/configure.ac samples/server/Makefile.am samples/server/mtom/services.xml

Author: samisa
Date: Sat Sep  9 09:36:15 2006
New Revision: 441815

URL: http://svn.apache.org/viewvc?view=rev&rev=441815
Log:
Fixed build breaks and removed rm samples from build system

Modified:
    webservices/axis2/trunk/c/modules/core/clientapi/svc_client.c
    webservices/axis2/trunk/c/samples/client/Makefile.am
    webservices/axis2/trunk/c/samples/client/mtom/mtom_client.c
    webservices/axis2/trunk/c/samples/configure.ac
    webservices/axis2/trunk/c/samples/server/Makefile.am
    webservices/axis2/trunk/c/samples/server/mtom/services.xml

Modified: webservices/axis2/trunk/c/modules/core/clientapi/svc_client.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/clientapi/svc_client.c?view=diff&rev=441815&r1=441814&r2=441815
==============================================================================
--- webservices/axis2/trunk/c/modules/core/clientapi/svc_client.c (original)
+++ webservices/axis2/trunk/c/modules/core/clientapi/svc_client.c Sat Sep  9 09:36:15 2006
@@ -879,7 +879,7 @@
         }
         svc_client_impl->op_client = op_client;
         
-        AXIS2_OP_CLIENT_ADD_OUT_MSG_CTX(op_client, env, msg_ctx);
+        AXIS2_OP_CLIENT_ADD_MSG_CTX(op_client, env, msg_ctx);
         AXIS2_OP_CLIENT_EXECUTE(op_client, env, AXIS2_TRUE);
         res_msg_ctx = (axis2_msg_ctx_t *)AXIS2_OP_CLIENT_GET_MSG_CTX(op_client, env, AXIS2_WSDL_MESSAGE_LABEL_IN_VALUE);
 

Modified: webservices/axis2/trunk/c/samples/client/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/client/Makefile.am?view=diff&rev=441815&r1=441814&r2=441815
==============================================================================
--- webservices/axis2/trunk/c/samples/client/Makefile.am (original)
+++ webservices/axis2/trunk/c/samples/client/Makefile.am Sat Sep  9 09:36:15 2006
@@ -1,4 +1,4 @@
 clientdir=$(prefix)/samples/client
-SUBDIRS = echo math google notify mtom dynamic_client rm_ping rm_echo rm_echo_blocking
+SUBDIRS = echo math google notify mtom dynamic_client
 client_DATA = Makefile.am Makefile.in
 EXTRA_DIST= Makefile.am

Modified: webservices/axis2/trunk/c/samples/client/mtom/mtom_client.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/client/mtom/mtom_client.c?view=diff&rev=441815&r1=441814&r2=441815
==============================================================================
--- webservices/axis2/trunk/c/samples/client/mtom/mtom_client.c (original)
+++ webservices/axis2/trunk/c/samples/client/mtom/mtom_client.c Sat Sep  9 09:36:15 2006
@@ -107,13 +107,10 @@
     
     /* Engage addressing module */
     AXIS2_SVC_CLIENT_ENGAGE_MODULE(svc_client, env, AXIS2_MODULE_ADDRESSING);
-    AXIS2_SVC_CLIENT_ENGAGE_MODULE(svc_client, env, "sandesha2");
     
     /* Build the SOAP request message payload using OM API.*/
     payload = build_om_programatically(env, image_name, to_save_name);
     
-    AXIS2_OPTIONS_SET_PROPERTY(options, env, "Sandesha2LastMessage", 
-            property);
     /* Send request */
     ret_node = AXIS2_SVC_CLIENT_SEND_RECEIVE(svc_client, env, payload);
     

Modified: webservices/axis2/trunk/c/samples/configure.ac
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/configure.ac?view=diff&rev=441815&r1=441814&r2=441815
==============================================================================
--- webservices/axis2/trunk/c/samples/configure.ac (original)
+++ webservices/axis2/trunk/c/samples/configure.ac Sat Sep  9 09:36:15 2006
@@ -125,8 +125,6 @@
     server/notify/Makefile \
     server/sg_math/Makefile \
     server/mtom/Makefile \
-    server/rm_ping/Makefile \
-    server/rm_echo/Makefile \
     client/Makefile \
     client/echo/Makefile \
     client/math/Makefile \
@@ -135,9 +133,6 @@
     client/mtom/resources/Makefile \
     client/notify/Makefile \
     client/google/Makefile \
-    client/rm_ping/Makefile \
-    client/rm_echo/Makefile \
-    client/rm_echo_blocking/Makefile \
     user_guide/Makefile \
     user_guide/clients/Makefile \
     ])

Modified: webservices/axis2/trunk/c/samples/server/Makefile.am
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/server/Makefile.am?view=diff&rev=441815&r1=441814&r2=441815
==============================================================================
--- webservices/axis2/trunk/c/samples/server/Makefile.am (original)
+++ webservices/axis2/trunk/c/samples/server/Makefile.am Sat Sep  9 09:36:15 2006
@@ -1,5 +1,5 @@
 samplesdir=$(prefix)/samples/server
-SUBDIRS = echo math notify sg_math mtom Calculator rm_ping rm_echo
+SUBDIRS = echo math notify sg_math mtom Calculator
 EXTRA_DIST = axis2.xml axis2.log
 samples_DATA= axis2.log  axis2.xml  Makefile.am Makefile.in
 

Modified: webservices/axis2/trunk/c/samples/server/mtom/services.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/server/mtom/services.xml?view=diff&rev=441815&r1=441814&r2=441815
==============================================================================
--- webservices/axis2/trunk/c/samples/server/mtom/services.xml (original)
+++ webservices/axis2/trunk/c/samples/server/mtom/services.xml Sat Sep  9 09:36:15 2006
@@ -1,5 +1,4 @@
 <service name="mtom">
-    <module ref="sandesha2"/>
     <parameter name="ServiceClass" locked="xsd:false">mtom</parameter>
 
    <description>



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