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 06:41:58 UTC

svn commit: r369357 - in /webservices/axis2/trunk/c: configure.ac modules/util/network_handler.c modules/xml/soap/soap12_builder_helper.c test/xml/soap/Makefile.am test/xml/soap/soap_test.c test/xml/soap/test_soap.c

Author: samisa
Date: Sun Jan 15 21:41:44 2006
New Revision: 369357

URL: http://svn.apache.org/viewcvs?rev=369357&view=rev
Log:
Added fixes

Added:
    webservices/axis2/trunk/c/test/xml/soap/test_soap.c
      - copied unchanged from r369353, webservices/axis2/trunk/c/test/xml/soap/soap_test.c
Removed:
    webservices/axis2/trunk/c/test/xml/soap/soap_test.c
Modified:
    webservices/axis2/trunk/c/configure.ac
    webservices/axis2/trunk/c/modules/util/network_handler.c
    webservices/axis2/trunk/c/modules/xml/soap/soap12_builder_helper.c
    webservices/axis2/trunk/c/test/xml/soap/Makefile.am

Modified: webservices/axis2/trunk/c/configure.ac
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/configure.ac?rev=369357&r1=369356&r2=369357&view=diff
==============================================================================
--- webservices/axis2/trunk/c/configure.ac (original)
+++ webservices/axis2/trunk/c/configure.ac Sun Jan 15 21:41:44 2006
@@ -111,6 +111,7 @@
     test/Makefile \
     test/xml/Makefile \
     test/xml/om/Makefile \
+    test/xml/soap/Makefile \
     test/core/Makefile \
     test/core/description/Makefile \
     test/core/deployment/Makefile \

Modified: webservices/axis2/trunk/c/modules/util/network_handler.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/util/network_handler.c?rev=369357&r1=369356&r2=369357&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/util/network_handler.c (original)
+++ webservices/axis2/trunk/c/modules/util/network_handler.c Sun Jan 15 21:41:44 2006
@@ -155,3 +155,5 @@
 	cli_socket = accept(svr_socket, (struct sockaddr *)&cli_addr, &cli_len);
 	return cli_socket;
 }
+
+

Modified: webservices/axis2/trunk/c/modules/xml/soap/soap12_builder_helper.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/soap/soap12_builder_helper.c?rev=369357&r1=369356&r2=369357&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/soap/soap12_builder_helper.c (original)
+++ webservices/axis2/trunk/c/modules/xml/soap/soap12_builder_helper.c Sun Jan 15 21:41:44 2006
@@ -165,7 +165,6 @@
 {
     axis2_soap12_builder_helper_impl_t *builder_helper_impl = NULL;
     axis2_char_t* ele_localname = NULL;
-    axis2_om_node_t *om_node = NULL;
     axis2_om_element_t *om_ele = NULL;
     axis2_soap_body_t *soap_body = NULL;
     axis2_soap_fault_t *soap_fault = NULL;

Modified: webservices/axis2/trunk/c/test/xml/soap/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/xml/soap/Makefile.am?rev=369357&r1=369356&r2=369357&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/xml/soap/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/xml/soap/Makefile.am Sun Jan 15 21:41:44 2006
@@ -2,7 +2,7 @@
 prgbin_PROGRAMS = test_soap
 SUBDIRS =
 AM_CPPFLAGS = $(CPPFLAGS) -g -O2 -pthread
-test_soap_SOURCES = soap_test.c
+test_soap_SOURCES = test_soap.c
 
 test_soap_LDADD   =   \
                     -L$(AXIS2C_HOME)/lib \