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/05/02 10:55:21 UTC

svn commit: r398872 - in /webservices/axis2/trunk/c: ./ include/ modules/core/addr/ modules/core/clientapi/ modules/core/context/ modules/core/deployment/ modules/core/description/ modules/core/engine/ modules/core/phaseresolver/ modules/core/receivers...

Author: sahan
Date: Tue May  2 01:55:10 2006
New Revision: 398872

URL: http://svn.apache.org/viewcvs?rev=398872&view=rev
Log:
Fixing AXIS2C-148. Adding some ssl code as well

Added:
    webservices/axis2/trunk/c/include/axis2_transport_receiver.h
      - copied unchanged from r398868, webservices/axis2/trunk/c/modules/core/transport/axis2_transport_receiver.h
Removed:
    webservices/axis2/trunk/c/modules/core/transport/Makefile.am
    webservices/axis2/trunk/c/modules/core/transport/axis2_transport_receiver.h
Modified:
    webservices/axis2/trunk/c/configure.ac
    webservices/axis2/trunk/c/include/axis2_error.h
    webservices/axis2/trunk/c/include/axis2_http_transport.h
    webservices/axis2/trunk/c/modules/core/addr/Makefile.am
    webservices/axis2/trunk/c/modules/core/clientapi/Makefile.am
    webservices/axis2/trunk/c/modules/core/context/Makefile.am
    webservices/axis2/trunk/c/modules/core/deployment/Makefile.am
    webservices/axis2/trunk/c/modules/core/description/Makefile.am
    webservices/axis2/trunk/c/modules/core/engine/Makefile.am
    webservices/axis2/trunk/c/modules/core/phaseresolver/Makefile.am
    webservices/axis2/trunk/c/modules/core/receivers/Makefile.am
    webservices/axis2/trunk/c/modules/core/transport/http/Makefile.am
    webservices/axis2/trunk/c/modules/core/transport/http/sender/http_client.c
    webservices/axis2/trunk/c/modules/core/transport/http/server/apache2/Makefile.am
    webservices/axis2/trunk/c/modules/core/transport/http/server/simple_axis2_server/Makefile.am
    webservices/axis2/trunk/c/modules/core/util/Makefile.am
    webservices/axis2/trunk/c/modules/mod_addr/Makefile.am
    webservices/axis2/trunk/c/modules/util/error.c
    webservices/axis2/trunk/c/test/core/clientapi/Makefile.am
    webservices/axis2/trunk/c/test/core/context/Makefile.am
    webservices/axis2/trunk/c/test/core/deployment/Makefile.am
    webservices/axis2/trunk/c/test/core/engine/Makefile.am
    webservices/axis2/trunk/c/test/unit/core/deployment/Makefile.am
    webservices/axis2/trunk/c/test/unit/core/description/Makefile.am
    webservices/axis2/trunk/c/test/unit/core/engine/Makefile.am
    webservices/axis2/trunk/c/test/unit/core/phaseresolver/Makefile.am
    webservices/axis2/trunk/c/test/unit/wsdl/Makefile.am

Modified: webservices/axis2/trunk/c/configure.ac
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/configure.ac?rev=398872&r1=398871&r2=398872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/configure.ac (original)
+++ webservices/axis2/trunk/c/configure.ac Tue May  2 01:55:10 2006
@@ -213,7 +213,6 @@
     modules/core/engine/Makefile \
     modules/core/addr/Makefile \
     modules/core/phaseresolver/Makefile \
-    modules/core/transport/Makefile \
     modules/core/transport/http/Makefile \
     modules/core/transport/http/sender/Makefile \
     modules/core/transport/http/receiver/Makefile \

Modified: webservices/axis2/trunk/c/include/axis2_error.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/include/axis2_error.h?rev=398872&r1=398871&r2=398872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_error.h (original)
+++ webservices/axis2/trunk/c/include/axis2_error.h Tue May  2 01:55:10 2006
@@ -427,6 +427,10 @@
 		AXIS2_ERROR_INTERFACES_OR_PORTS_NOT_FOUND_FOR_PARTIALLY_BUILT_WOM,
         /* Error occured in transport */
         AXIS2_ERROR_HTTP_CLIENT_TRANSPORT_ERROR,
+        /* Transport protocol is unsupported by axis2 */
+        AXIS2_ERROR_INVALID_TRANSPORT_PROTOCOL,
+        /* Error occured in SSL engine */
+        AXIS2_ERROR_SSL_ENGINE,
         /** The following has to be the last error value all the time.
             All other error codes should appear above this.
             AXIS2_ERROR_LAST is used to track the number of error codes present

Modified: webservices/axis2/trunk/c/include/axis2_http_transport.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/include/axis2_http_transport.h?rev=398872&r1=398871&r2=398872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_http_transport.h (original)
+++ webservices/axis2/trunk/c/include/axis2_http_transport.h Tue May  2 01:55:10 2006
@@ -130,7 +130,6 @@
     #define AXIS2_HTTP_HEADER_CONTENT_TYPE_MIME_BOUNDARY "boundary"
     
     /**
-    /**
      * HEADER_CONTENT_TRANSFER_ENCODING
      */
     #define AXIS2_HTTP_HEADER_CONTENT_TRANSFER_ENCODING \

Modified: webservices/axis2/trunk/c/modules/core/addr/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/addr/Makefile.am?rev=398872&r1=398871&r2=398872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/addr/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/addr/Makefile.am Tue May  2 01:55:10 2006
@@ -13,6 +13,5 @@
             -I$(top_builddir)/modules/util \
             -I$(top_builddir)/modules/wsdl \
             -I$(top_builddir)/modules/core/engine \
-            -I$(top_builddir)/modules/core/transport \
             -I$(top_builddir)/modules/xml/parser \
             -I$(top_builddir)/modules/platforms

Modified: webservices/axis2/trunk/c/modules/core/clientapi/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/clientapi/Makefile.am?rev=398872&r1=398871&r2=398872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/clientapi/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/clientapi/Makefile.am Tue May  2 01:55:10 2006
@@ -24,6 +24,5 @@
             -I$(top_builddir)/modules/wsdl \
             -I$(top_builddir)/modules/core/engine \
             -I$(top_builddir)/modules/core/deployment \
-            -I$(top_builddir)/modules/core/transport \
             -I$(top_builddir)/modules/xml/parser \
             -I$(top_builddir)/modules/platforms

Modified: webservices/axis2/trunk/c/modules/core/context/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/context/Makefile.am?rev=398872&r1=398871&r2=398872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/context/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/context/Makefile.am Tue May  2 01:55:10 2006
@@ -13,6 +13,5 @@
             -I$(top_builddir)/modules/util \
             -I$(top_builddir)/modules/wsdl \
             -I$(top_builddir)/modules/core/engine \
-            -I$(top_builddir)/modules/core/transport \
             -I$(top_builddir)/modules/xml/parser \
             -I$(top_builddir)/modules/platforms

Modified: webservices/axis2/trunk/c/modules/core/deployment/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/deployment/Makefile.am?rev=398872&r1=398871&r2=398872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/deployment/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/deployment/Makefile.am Tue May  2 01:55:10 2006
@@ -37,7 +37,6 @@
             -I$(top_builddir)/modules/core/engine \
             -I$(top_builddir)/modules/core/phaseresolver \
             -I$(top_builddir)/modules/core/deployment \
-            -I$(top_builddir)/modules/core/transport \
             -I$(top_builddir)/modules/core/util \
             -I$(top_builddir)/modules/xml/parser \
             -I$(top_builddir)/modules/platforms

Modified: webservices/axis2/trunk/c/modules/core/description/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/description/Makefile.am?rev=398872&r1=398871&r2=398872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/description/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/description/Makefile.am Tue May  2 01:55:10 2006
@@ -18,6 +18,5 @@
             -I$(top_builddir)/modules/util \
             -I$(top_builddir)/modules/wsdl \
             -I$(top_builddir)/modules/core/engine \
-            -I$(top_builddir)/modules/core/transport \
             -I$(top_builddir)/modules/xml/parser \
             -I$(top_builddir)/modules/platforms

Modified: webservices/axis2/trunk/c/modules/core/engine/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/engine/Makefile.am?rev=398872&r1=398871&r2=398872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/engine/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/engine/Makefile.am Tue May  2 01:55:10 2006
@@ -33,7 +33,6 @@
             -I$(top_builddir)/modules/core/engine \
             -I$(top_builddir)/modules/core/phaseresolver \
             -I$(top_builddir)/modules/core/deployment \
-            -I$(top_builddir)/modules/core/transport \
             -I$(top_builddir)/modules/core/context \
             -I$(top_builddir)/modules/core/util \
             -I$(top_builddir)/modules/core/clientapi \

Modified: webservices/axis2/trunk/c/modules/core/phaseresolver/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/phaseresolver/Makefile.am?rev=398872&r1=398871&r2=398872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/phaseresolver/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/phaseresolver/Makefile.am Tue May  2 01:55:10 2006
@@ -9,6 +9,5 @@
             -I$(top_builddir)/modules/util \
             -I$(top_builddir)/modules/wsdl \
             -I$(top_builddir)/modules/core/engine \
-            -I$(top_builddir)/modules/core/transport \
             -I$(top_builddir)/modules/xml/parser \
             -I$(top_builddir)/modules/platforms

Modified: webservices/axis2/trunk/c/modules/core/receivers/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/receivers/Makefile.am?rev=398872&r1=398871&r2=398872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/receivers/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/receivers/Makefile.am Tue May  2 01:55:10 2006
@@ -9,7 +9,6 @@
             -I$(top_builddir)/modules/util \
             -I$(top_builddir)/modules/wsdl \
             -I$(top_builddir)/modules/core/engine \
-            -I$(top_builddir)/modules/core/transport \
             -I$(top_builddir)/modules/core/util \
             -I$(top_builddir)/modules/xml/parser \
             -I$(top_builddir)/modules/platforms

Modified: webservices/axis2/trunk/c/modules/core/transport/http/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/transport/http/Makefile.am?rev=398872&r1=398871&r2=398872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/Makefile.am Tue May  2 01:55:10 2006
@@ -17,6 +17,5 @@
             -I$(top_builddir)/modules/util \
             -I$(top_builddir)/modules/wsdl \
             -I$(top_builddir)/modules/core/engine \
-            -I$(top_builddir)/modules/core/transport \
             -I$(top_builddir)/modules/xml/parser \
             -I$(top_builddir)/modules/platforms

Modified: webservices/axis2/trunk/c/modules/core/transport/http/sender/http_client.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/transport/http/sender/http_client.c?rev=398872&r1=398871&r2=398872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/sender/http_client.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/sender/http_client.c Tue May  2 01:55:10 2006
@@ -209,8 +209,23 @@
 		axis2_network_handler_set_sock_option(env, client_impl->sockfd, 
 						SO_SNDTIMEO, client_impl->timeout);
 	}
-	client_impl->data_stream = axis2_stream_create_socket(env, 
+    if(0 == AXIS2_STRCASECMP(AXIS2_URL_GET_PROTOCOL(client_impl->url, env), 
+                        "HTTPS"))
+    {
+#ifdef AXIS2_SSL_ENABLED
+        client_impl->data_stream = axis2_stream_create_ssl(env, 
+                        client_impl->sockfd)
+#else
+        AXIS2_ERROR_SET((*env)->error, AXIS2_ERROR_INVALID_TRANSPORT_PROTOCOL,
+                        AXIS2_FAILURE);
+        return AXIS2_FAILURE;
+#endif
+    }
+    else
+    {
+	    client_impl->data_stream = axis2_stream_create_socket(env, 
 					client_impl->sockfd);
+    }
 	
 	if(NULL == client_impl->data_stream)
 	{

Modified: webservices/axis2/trunk/c/modules/core/transport/http/server/apache2/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/transport/http/server/apache2/Makefile.am?rev=398872&r1=398871&r2=398872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/server/apache2/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/server/apache2/Makefile.am Tue May  2 01:55:10 2006
@@ -32,7 +32,6 @@
            -I$(top_builddir)/modules/util \
            -I$(top_builddir)/modules/xml/parser\
 	       -I$(top_builddir)/modules/wsdl\
-	       -I$(top_builddir)/modules/core/transport\
 	       -I$(top_builddir)/modules/core/transport/http \
            -I$(top_builddir)/modules/core/description \
            -I$(top_builddir)/modules/core/context \

Modified: webservices/axis2/trunk/c/modules/core/transport/http/server/simple_axis2_server/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/transport/http/server/simple_axis2_server/Makefile.am?rev=398872&r1=398871&r2=398872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/server/simple_axis2_server/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/server/simple_axis2_server/Makefile.am Tue May  2 01:55:10 2006
@@ -36,7 +36,6 @@
             -I$(top_builddir)/modules/core/deployment\
             -I$(top_builddir)/modules/core/phaseresolver \
             -I$(top_builddir)/modules/core/engine \
-            -I$(top_builddir)/modules/core/transport\
             -I$(top_builddir)/modules/xml/om\
             -I$(top_builddir)/modules/xml/parser\
             -I$(top_builddir)/modules/xml/soap\

Modified: webservices/axis2/trunk/c/modules/core/util/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/util/Makefile.am?rev=398872&r1=398871&r2=398872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/util/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/util/Makefile.am Tue May  2 01:55:10 2006
@@ -9,6 +9,5 @@
             -I$(top_builddir)/modules/util \
             -I$(top_builddir)/modules/wsdl \
             -I$(top_builddir)/modules/core/engine \
-            -I$(top_builddir)/modules/core/transport \
             -I$(top_builddir)/modules/xml/parser \
             -I$(top_builddir)/modules/platforms

Modified: webservices/axis2/trunk/c/modules/mod_addr/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/mod_addr/Makefile.am?rev=398872&r1=398871&r2=398872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/mod_addr/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/mod_addr/Makefile.am Tue May  2 01:55:10 2006
@@ -18,7 +18,6 @@
             -I$(top_builddir)/modules/core/context \
             -I$(top_builddir)/modules/core/phaseresolver \
             -I$(top_builddir)/modules/core/engine \
-            -I$(top_builddir)/modules/core/transport \
             -I$(top_builddir)/modules/core/deployment \
             -I$(top_builddir)/modules/wsdl \
             -I$(top_builddir)/modules/platforms

Modified: webservices/axis2/trunk/c/modules/util/error.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/util/error.c?rev=398872&r1=398871&r2=398872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/util/error.c (original)
+++ webservices/axis2/trunk/c/modules/util/error.c Tue May  2 01:55:10 2006
@@ -429,6 +429,10 @@
 	"Interfaces or Ports not found for the partially built WOM";
     axis2_error_messages[AXIS2_ERROR_HTTP_CLIENT_TRANSPORT_ERROR] = 
      "Error occured in transport";
+    axis2_error_messages[AXIS2_ERROR_INVALID_TRANSPORT_PROTOCOL] = 
+     "Transport protocol is unsupported by axis2";
+    axis2_error_messages[AXIS2_ERROR_SSL_ENGINE] = 
+     "Error occured in SSL engine";
 
     return AXIS2_SUCCESS;
 }

Modified: webservices/axis2/trunk/c/test/core/clientapi/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/core/clientapi/Makefile.am?rev=398872&r1=398871&r2=398872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/clientapi/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/core/clientapi/Makefile.am Tue May  2 01:55:10 2006
@@ -41,7 +41,6 @@
             -I$(top_builddir)/modules/core/context \
             -I$(top_builddir)/modules/core/phaseresolver \
             -I$(top_builddir)/modules/core/deployment \
-            -I$(top_builddir)/modules/core/transport \
             -I$(top_builddir)/modules/core/engine \
             -I$(top_builddir)/modules/core/clientapi \
             -I$(top_builddir)/modules/xml/parser \

Modified: webservices/axis2/trunk/c/test/core/context/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/core/context/Makefile.am?rev=398872&r1=398871&r2=398872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/context/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/core/context/Makefile.am Tue May  2 01:55:10 2006
@@ -24,6 +24,5 @@
             -I$(top_builddir)/modules/util \
             -I$(top_builddir)/modules/wsdl \
             -I$(top_builddir)/modules/core/description \
-            -I$(top_builddir)/modules/core/transport \
             -I$(top_builddir)/modules/platforms
 

Modified: webservices/axis2/trunk/c/test/core/deployment/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/core/deployment/Makefile.am?rev=398872&r1=398871&r2=398872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/deployment/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/core/deployment/Makefile.am Tue May  2 01:55:10 2006
@@ -23,7 +23,6 @@
             -I$(top_builddir)/modules/core/context \
             -I$(top_builddir)/modules/core/phaseresolver \
             -I$(top_builddir)/modules/core/deployment \
-            -I$(top_builddir)/modules/core/transport \
             -I$(top_builddir)/modules/core/engine \
             -I$(top_builddir)/modules/core/clientapi \
             -I$(top_builddir)/modules/core/util \

Modified: webservices/axis2/trunk/c/test/core/engine/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/core/engine/Makefile.am?rev=398872&r1=398871&r2=398872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/engine/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/core/engine/Makefile.am Tue May  2 01:55:10 2006
@@ -26,7 +26,6 @@
             -I$(top_builddir)/modules/core/description \
             -I$(top_builddir)/modules/core/deployment \
             -I$(top_builddir)/modules/core/engine \
-            -I$(top_builddir)/modules/core/transport \
             -I$(top_builddir)/modules/xml/parser \
             -I$(top_builddir)/modules/platforms
 

Modified: webservices/axis2/trunk/c/test/unit/core/deployment/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/unit/core/deployment/Makefile.am?rev=398872&r1=398871&r2=398872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/core/deployment/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/core/deployment/Makefile.am Tue May  2 01:55:10 2006
@@ -17,7 +17,6 @@
             -I$(top_builddir)/modules/core/context \
             -I$(top_builddir)/modules/core/phaseresolver \
             -I$(top_builddir)/modules/core/deployment \
-            -I$(top_builddir)/modules/core/transport \
             -I$(top_builddir)/modules/core/engine \
             -I$(top_builddir)/modules/core/clientapi \
             -I$(top_builddir)/modules/xml/parser \

Modified: webservices/axis2/trunk/c/test/unit/core/description/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/unit/core/description/Makefile.am?rev=398872&r1=398871&r2=398872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/core/description/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/core/description/Makefile.am Tue May  2 01:55:10 2006
@@ -18,7 +18,6 @@
             -I$(top_builddir)/modules/core/context \
             -I$(top_builddir)/modules/core/phaseresolver \
             -I$(top_builddir)/modules/core/deployment \
-            -I$(top_builddir)/modules/core/transport \
             -I$(top_builddir)/modules/core/engine \
             -I$(top_builddir)/modules/core/clientapi \
             -I${CUTEST_HOME}/include \

Modified: webservices/axis2/trunk/c/test/unit/core/engine/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/unit/core/engine/Makefile.am?rev=398872&r1=398871&r2=398872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/core/engine/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/core/engine/Makefile.am Tue May  2 01:55:10 2006
@@ -11,7 +11,6 @@
             -I$(top_builddir)/modules/core/context \
             -I$(top_builddir)/modules/core/phaseresolver \
             -I$(top_builddir)/modules/core/deployment \
-            -I$(top_builddir)/modules/core/transport \
             -I$(top_builddir)/modules/core/engine \
             -I$(top_builddir)/modules/core/clientapi \
             -I$(top_builddir)/modules/wsdl \

Modified: webservices/axis2/trunk/c/test/unit/core/phaseresolver/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/unit/core/phaseresolver/Makefile.am?rev=398872&r1=398871&r2=398872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/core/phaseresolver/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/core/phaseresolver/Makefile.am Tue May  2 01:55:10 2006
@@ -15,7 +15,6 @@
             -I$(top_builddir)/modules/core/context \
             -I$(top_builddir)/modules/core/phaseresolver \
             -I$(top_builddir)/modules/core/deployment \
-            -I$(top_builddir)/modules/core/transport \
             -I$(top_builddir)/modules/core/engine \
             -I$(top_builddir)/modules/core/clientapi \
             -I${CUTEST_HOME}/include \

Modified: webservices/axis2/trunk/c/test/unit/wsdl/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/unit/wsdl/Makefile.am?rev=398872&r1=398871&r2=398872&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/unit/wsdl/Makefile.am (original)
+++ webservices/axis2/trunk/c/test/unit/wsdl/Makefile.am Tue May  2 01:55:10 2006
@@ -15,7 +15,6 @@
             -I$(top_builddir)/modules/core/context \
             -I$(top_builddir)/modules/core/phaseresolver \
             -I$(top_builddir)/modules/core/deployment \
-            -I$(top_builddir)/modules/core/transport \
             -I$(top_builddir)/modules/core/engine \
             -I$(top_builddir)/modules/core/clientapi \
             -I$(top_builddir)/modules/platforms