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 di...@apache.org on 2007/11/19 08:30:38 UTC

svn commit: r596214 - in /webservices/axis2/trunk/c/src/core/transport/http: receiver/http_receiver.c receiver/http_svr_thread.c sender/http_client.c

Author: dinesh
Date: Sun Nov 18 23:30:35 2007
New Revision: 596214

URL: http://svn.apache.org/viewvc?rev=596214&view=rev
Log:
fix:axis2c-735

Modified:
    webservices/axis2/trunk/c/src/core/transport/http/receiver/http_receiver.c
    webservices/axis2/trunk/c/src/core/transport/http/receiver/http_svr_thread.c
    webservices/axis2/trunk/c/src/core/transport/http/sender/http_client.c

Modified: webservices/axis2/trunk/c/src/core/transport/http/receiver/http_receiver.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/src/core/transport/http/receiver/http_receiver.c?rev=596214&r1=596213&r2=596214&view=diff
==============================================================================
--- webservices/axis2/trunk/c/src/core/transport/http/receiver/http_receiver.c (original)
+++ webservices/axis2/trunk/c/src/core/transport/http/receiver/http_receiver.c Sun Nov 18 23:30:35 2007
@@ -328,6 +328,7 @@
     return epr;
 }
 
+
 axis2_bool_t AXIS2_CALL
 axis2_http_server_is_running(
     axis2_transport_receiver_t * server,

Modified: webservices/axis2/trunk/c/src/core/transport/http/receiver/http_svr_thread.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/src/core/transport/http/receiver/http_svr_thread.c?rev=596214&r1=596213&r2=596214&view=diff
==============================================================================
--- webservices/axis2/trunk/c/src/core/transport/http/receiver/http_svr_thread.c (original)
+++ webservices/axis2/trunk/c/src/core/transport/http/receiver/http_svr_thread.c Sun Nov 18 23:30:35 2007
@@ -195,7 +195,7 @@
     axis2_http_svr_thread_t * svr_thread,
     const axutil_env_t * env)
 {
-    return svr_thread->port;
+    return !(svr_thread->stopped);
 }
 
 axis2_status_t AXIS2_CALL

Modified: webservices/axis2/trunk/c/src/core/transport/http/sender/http_client.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/src/core/transport/http/sender/http_client.c?rev=596214&r1=596213&r2=596214&view=diff
==============================================================================
--- webservices/axis2/trunk/c/src/core/transport/http/sender/http_client.c (original)
+++ webservices/axis2/trunk/c/src/core/transport/http/sender/http_client.c Sun Nov 18 23:30:35 2007
@@ -167,6 +167,7 @@
         AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NULL_URL, AXIS2_FAILURE);
         return AXIS2_FAILURE;
     }
+
     if (AXIS2_TRUE == client->proxy_enabled)
     {
         if (!client->proxy_host || client->proxy_port <= 0)



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