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 2006/01/16 11:08:07 UTC

svn commit: r369413 - in /webservices/axis2/trunk/c: modules/core/clientapi/listener_manager.c test/core/addr/Makefile.am test/core/clientapi/test_clientapi.c test/core/transport/http/Makefile.am

Author: samisa
Date: Mon Jan 16 02:07:56 2006
New Revision: 369413

URL: http://svn.apache.org/viewcvs?rev=369413&view=rev
Log:
More fixes related to transport related changes

Modified:
    webservices/axis2/trunk/c/modules/core/clientapi/listener_manager.c
    webservices/axis2/trunk/c/test/core/addr/Makefile.am
    webservices/axis2/trunk/c/test/core/clientapi/test_clientapi.c
    webservices/axis2/trunk/c/test/core/transport/http/Makefile.am

Modified: webservices/axis2/trunk/c/modules/core/clientapi/listener_manager.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/clientapi/listener_manager.c?rev=369413&r1=369412&r2=369413&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/clientapi/listener_manager.c (original)
+++ webservices/axis2/trunk/c/modules/core/clientapi/listener_manager.c Mon Jan 16 02:07:56 2006
@@ -145,7 +145,7 @@
                     listener = AXIS2_TRANSPORT_IN_DESC_GET_RECV(transport_in, env);
                     if (listener)
                     {
-                        AXIS2_TRANSPORT_LISTENER_START(listener, env);
+                        AXIS2_TRANSPORT_RECEIVER_START(listener, env);
                         
                         tl_state  = AXIS2_MALLOC( (*env)->allocator, sizeof(axis2_transport_listener_state_t) );
                         if (!tl_state)
@@ -191,7 +191,7 @@
         tl_state->waiting_calls--;
         if (tl_state->waiting_calls == 0) 
         {
-            status = AXIS2_TRANSPORT_LISTENER_STOP(tl_state->listener, env);
+            status = AXIS2_TRANSPORT_RECEIVER_STOP(tl_state->listener, env);
             if (status != AXIS2_SUCCESS)
                 return status;
             
@@ -218,7 +218,7 @@
                     transport, AXIS2_HASH_KEY_STRING);
     if (tl_state) 
     {
-        return AXIS2_TRANSPORT_LISTENER_REPLY_TO_EPR(tl_state->listener, env, svc_name);
+        return AXIS2_TRANSPORT_RECEIVER_REPLY_TO_EPR(tl_state->listener, env, svc_name);
     } 
     return NULL;
 }

Modified: webservices/axis2/trunk/c/test/core/addr/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/core/addr/Makefile.am?rev=369413&r1=369412&r2=369413&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/addr/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/core/addr/Makefile.am Mon Jan 16 02:07:56 2006
@@ -5,7 +5,7 @@
 test_addr_SOURCES = test_addr.c
 
 
-test_addr_LDADD   =  -L$(top_builddir)/install/lib \
+test_addr_LDADD   =  -L$(AXIS2C_HOME)/lib \
 	                -laxis2_description \
 	                -laxis2_context \
 	                -laxis2_util \

Modified: webservices/axis2/trunk/c/test/core/clientapi/test_clientapi.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/core/clientapi/test_clientapi.c?rev=369413&r1=369412&r2=369413&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/clientapi/test_clientapi.c (original)
+++ webservices/axis2/trunk/c/test/core/clientapi/test_clientapi.c Mon Jan 16 02:07:56 2006
@@ -3,7 +3,7 @@
 #include <axis2_engine.h>
 #include <axis2_call.h>
 #include <axis2_allocator.h>
-#include <axis2_transport_listener.h>
+#include <axis2_transport_receiver.h>
 #include <axis2_transport_in_desc.h>
 #include <axis2_transport_out_desc.h>
 #include <listener_manager.h>

Modified: webservices/axis2/trunk/c/test/core/transport/http/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/core/transport/http/Makefile.am?rev=369413&r1=369412&r2=369413&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/transport/http/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/core/transport/http/Makefile.am Mon Jan 16 02:07:56 2006
@@ -4,7 +4,7 @@
 AM_CPPFLAGS = $(CPPFLAGS) -g -pthread
 test_http_transport_SOURCES = test_http_transport.c
 
-test_http_transport_LDADD   =  $(LDFLAGS) -L$(AXIS2C_HOME)/lib -laxis2_util -laxis2_http_transport -laxis2_context -laxis2_addr -laxis2_om -laxis2_engine -laxis2_description -laxis2_soap -laxis2_wsdl -laxis2_phaseresolver -laxis2_deployment -laxis2_parser \
+test_http_transport_LDADD   =  $(LDFLAGS) -L$(AXIS2C_HOME)/lib -laxis2_util -laxis2_http_transport -laxis2_context -laxis2_addr -laxis2_om -laxis2_engine -laxis2_description -laxis2_soap -laxis2_wsdl -laxis2_phaseresolver -laxis2_deployment -laxis2_parser -laxis2_http_sender \
 -L$(LIBXML2_LIB) $(LIBXML2_LIBNAME) \
                     -L$(GUTHTHILA_LIB) $(GUTHTHILA_LIBNAME)