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 2005/03/07 04:26:37 UTC

cvs commit: ws-axis/c/src/server/simple_axis_server SimpleAxisTransport.cpp SimpleAxisTransport.h

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)
       {
       };