Author: nadiramra
Date: Thu May 31 10:47:46 2007
New Revision: 543192

URL: http://svn.apache.org/viewvc?view=rev&rev=543192
Log:
openConnection prototype is not correct. 

Modified:
    webservices/axis/trunk/c/src/server/apache/ApacheTransport.h
    webservices/axis/trunk/c/src/server/apache2/Apache2Transport.h
    webservices/axis/trunk/c/src/server/simple_axis_server/SimpleAxisTransport.h

Modified: webservices/axis/trunk/c/src/server/apache/ApacheTransport.h
URL: 
http://svn.apache.org/viewvc/webservices/axis/trunk/c/src/server/apache/ApacheTransport.h?view=diff&rev=543192&r1=543191&r2=543192
==============================================================================
--- webservices/axis/trunk/c/src/server/apache/ApacheTransport.h (original)
+++ webservices/axis/trunk/c/src/server/apache/ApacheTransport.h Thu May 31 
10:47:46 2007
@@ -58,7 +58,7 @@
        ApacheTransport(void* pContext);
        virtual ~ApacheTransport();
     int openConnection(){return AXIS_SUCCESS;};
-    void closeConnection(){};
+    void closeConnection(bool forceClose=true){};
     AXIS_TRANSPORT_STATUS sendBytes(const char* pcSendBuffer, const void* 
pBufferId);
        void 
registerReleaseBufferCallback(AXIS_ENGINE_CALLBACK_RELEASE_SEND_BUFFER pFunct)
        { m_pReleaseBufferCallback = pFunct; };

Modified: webservices/axis/trunk/c/src/server/apache2/Apache2Transport.h
URL: 
http://svn.apache.org/viewvc/webservices/axis/trunk/c/src/server/apache2/Apache2Transport.h?view=diff&rev=543192&r1=543191&r2=543192
==============================================================================
--- webservices/axis/trunk/c/src/server/apache2/Apache2Transport.h (original)
+++ webservices/axis/trunk/c/src/server/apache2/Apache2Transport.h Thu May 31 
10:47:46 2007
@@ -61,7 +61,7 @@
        Apache2Transport(void* pContext);
        virtual ~Apache2Transport();
     int openConnection(){return AXIS_SUCCESS;};
-    void closeConnection(){};
+    void closeConnection(bool forceClose=true){};
     AXIS_TRANSPORT_STATUS sendBytes(const char* pcSendBuffer, const void* 
pBufferId);
        void 
registerReleaseBufferCallback(AXIS_ENGINE_CALLBACK_RELEASE_SEND_BUFFER pFunct)
        { m_pReleaseBufferCallback = pFunct; };

Modified: 
webservices/axis/trunk/c/src/server/simple_axis_server/SimpleAxisTransport.h
URL: 
http://svn.apache.org/viewvc/webservices/axis/trunk/c/src/server/simple_axis_server/SimpleAxisTransport.h?view=diff&rev=543192&r1=543191&r2=543192
==============================================================================
--- 
webservices/axis/trunk/c/src/server/simple_axis_server/SimpleAxisTransport.h 
(original)
+++ 
webservices/axis/trunk/c/src/server/simple_axis_server/SimpleAxisTransport.h 
Thu May 31 10:47:46 2007
@@ -43,7 +43,7 @@
     {
        return AXIS_SUCCESS;
     };
-    void closeConnection ()
+    void closeConnection (bool forceClose=true)
     {
     };
     AXIS_TRANSPORT_STATUS sendBytes (const char *pcSendBuffer,



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to