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:27:48 UTC

cvs commit: ws-axis/c/src/transport/axis2 Axis2Transport.cpp Axis2Transport.h

samisa      2005/03/06 19:27:48

  Modified:    c/src/transport/axis2 Axis2Transport.cpp Axis2Transport.h
  Log:
  Updated code to get it compiling in line with the changes done to SOAPTransport API
  
  Revision  Changes    Path
  1.40      +1 -1      ws-axis/c/src/transport/axis2/Axis2Transport.cpp
  
  Index: Axis2Transport.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/transport/axis2/Axis2Transport.cpp,v
  retrieving revision 1.39
  retrieving revision 1.40
  diff -u -r1.39 -r1.40
  --- Axis2Transport.cpp	25 Feb 2005 05:06:45 -0000	1.39
  +++ Axis2Transport.cpp	7 Mar 2005 03:27:48 -0000	1.40
  @@ -1393,7 +1393,7 @@
   }
   
   const char *
  -Axis2Transport::getTransportProperty (const char *pcKey)
  +Axis2Transport::getTransportProperty (const char *pcKey, bool response)
   throw (AxisTransportException)
   {
   
  
  
  
  1.22      +1 -1      ws-axis/c/src/transport/axis2/Axis2Transport.h
  
  Index: Axis2Transport.h
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/transport/axis2/Axis2Transport.h,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- Axis2Transport.h	25 Feb 2005 05:06:45 -0000	1.21
  +++ Axis2Transport.h	7 Mar 2005 03:27:48 -0000	1.22
  @@ -59,7 +59,7 @@
   	throw (AxisTransportException);
       int setTransportProperty (const char *,
   			       const char *) throw (AxisTransportException);
  -    const char *getTransportProperty (const char *pcKey)
  +    const char *getTransportProperty (const char *pcKey, bool response=true)
   	throw (AxisTransportException);
       void setAttachment (const char *pcAttachmentId, const char *pcAttachment) {};