Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 76422 invoked from network); 7 Mar 2005 03:26:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 7 Mar 2005 03:26:41 -0000 Received: (qmail 90117 invoked by uid 500); 7 Mar 2005 03:26:40 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 89898 invoked by uid 500); 7 Mar 2005 03:26:39 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 89877 invoked by uid 99); 7 Mar 2005 03:26:39 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Sun, 06 Mar 2005 19:26:39 -0800 Received: (qmail 76389 invoked by uid 1852); 7 Mar 2005 03:26:37 -0000 Date: 7 Mar 2005 03:26:37 -0000 Message-ID: <20050307032637.76388.qmail@minotaur.apache.org> From: samisa@apache.org To: ws-axis-cvs@apache.org Subject: cvs commit: ws-axis/c/src/server/simple_axis_server SimpleAxisTransport.cpp SimpleAxisTransport.h X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N samisa 2005/03/06 19:26:37 Modified: c/src/server/apache2 Apache2Transport.cpp Apache2Transport.h c/src/server/apache ApacheTransport.cpp ApacheTransport.h c/src/server/simple_axis_server SimpleAxisTransport.cpp SimpleAxisTransport.h Log: Changes to make the source compile in line with the latest changes done to SOAPTransport API Revision Changes Path 1.9 +1 -1 ws-axis/c/src/server/apache2/Apache2Transport.cpp Index: Apache2Transport.cpp =================================================================== RCS file: /home/cvs/ws-axis/c/src/server/apache2/Apache2Transport.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- Apache2Transport.cpp 25 Feb 2005 05:06:45 -0000 1.8 +++ Apache2Transport.cpp 7 Mar 2005 03:26:37 -0000 1.9 @@ -229,7 +229,7 @@ return 0; } -const char* Apache2Transport::getTransportProperty(const char* pcKey) +const char* Apache2Transport::getTransportProperty(const char* pcKey, bool response) { /* ap_table_elts returns an array_header struct. The nelts element of that * struct contains the number of input header elements. Finally assigns that 1.13 +1 -1 ws-axis/c/src/server/apache2/Apache2Transport.h Index: Apache2Transport.h =================================================================== RCS file: /home/cvs/ws-axis/c/src/server/apache2/Apache2Transport.h,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- Apache2Transport.h 25 Feb 2005 05:06:45 -0000 1.12 +++ Apache2Transport.h 7 Mar 2005 03:26:37 -0000 1.13 @@ -68,7 +68,7 @@ int setTransportProperty(AXIS_TRANSPORT_INFORMATION_TYPE type, const char* value); const char* getTransportProperty(AXIS_TRANSPORT_INFORMATION_TYPE eType); int setTransportProperty(const char* pcKey, const char* pcValue); - const char* getTransportProperty(const char* pcKey); + const char* getTransportProperty(const char* pcKey, bool response=true); void setAttachment(const char* pcAttachmentid, const char* pcAttachment){}; ISoapAttachment* getAttachment(const char* pcAttachmentid); void setEndpointUri(const char* pcEndpointUri) 1.8 +1 -1 ws-axis/c/src/server/apache/ApacheTransport.cpp Index: ApacheTransport.cpp =================================================================== RCS file: /home/cvs/ws-axis/c/src/server/apache/ApacheTransport.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- ApacheTransport.cpp 25 Feb 2005 05:06:45 -0000 1.7 +++ ApacheTransport.cpp 7 Mar 2005 03:26:37 -0000 1.8 @@ -232,7 +232,7 @@ } -const char* ApacheTransport::getTransportProperty(const char* pcKey) +const char* ApacheTransport::getTransportProperty(const char* pcKey, bool response) { /* ap_table_elts returns an array_header struct. The nelts element of that * struct contains the number of input header elements. Finally assigns that 1.12 +1 -1 ws-axis/c/src/server/apache/ApacheTransport.h Index: ApacheTransport.h =================================================================== RCS file: /home/cvs/ws-axis/c/src/server/apache/ApacheTransport.h,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- ApacheTransport.h 25 Feb 2005 05:06:45 -0000 1.11 +++ ApacheTransport.h 7 Mar 2005 03:26:37 -0000 1.12 @@ -62,7 +62,7 @@ int setTransportProperty(AXIS_TRANSPORT_INFORMATION_TYPE type, const char* value); const char* getTransportProperty(AXIS_TRANSPORT_INFORMATION_TYPE eType); int setTransportProperty(const char* pcKey, const char* pcValue); - const char* getTransportProperty(const char* pcKey); + const char* getTransportProperty(const char* pcKey, bool response=true); void setAttachment(const char* pcAttachmentid, const char* pcAttachment){}; /** 1.9 +1 -1 ws-axis/c/src/server/simple_axis_server/SimpleAxisTransport.cpp Index: SimpleAxisTransport.cpp =================================================================== RCS file: /home/cvs/ws-axis/c/src/server/simple_axis_server/SimpleAxisTransport.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- SimpleAxisTransport.cpp 25 Feb 2005 06:54:30 -0000 1.8 +++ SimpleAxisTransport.cpp 7 Mar 2005 03:26:37 -0000 1.9 @@ -272,7 +272,7 @@ } const char * -SimpleAxisTransport::getTransportProperty (const char *pcKey) +SimpleAxisTransport::getTransportProperty (const char *pcKey, bool response) { return 0; } 1.7 +1 -1 ws-axis/c/src/server/simple_axis_server/SimpleAxisTransport.h Index: SimpleAxisTransport.h =================================================================== RCS file: /home/cvs/ws-axis/c/src/server/simple_axis_server/SimpleAxisTransport.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- SimpleAxisTransport.h 25 Feb 2005 05:06:45 -0000 1.6 +++ SimpleAxisTransport.h 7 Mar 2005 03:26:37 -0000 1.7 @@ -55,7 +55,7 @@ const char *value); const char *getTransportProperty (AXIS_TRANSPORT_INFORMATION_TYPE eType); int setTransportProperty (const char *pcKey, const char *pcValue); - const char *getTransportProperty (const char *pcKey); + const char *getTransportProperty (const char *pcKey, bool response=true); void setAttachment (const char *pcAttachmentid, const char *pcAttachment) { };