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 cd...@apache.org on 2005/08/23 05:23:57 UTC

cvs commit: ws-axis/c/src/transport/axis3/HTTPSSLChannel HTTPSSLChannel.hpp

cdinapala    2005/08/22 20:23:57

  Modified:    c/src/transport/axis3/HTTPChannel HTTPChannel.hpp
               c/src/transport/axis3/HTTPSSLChannel HTTPSSLChannel.hpp
  Log:
  I have done some modifications as suggest in issue AXISCPP-558.
  With changes build and tests are working fine.
  
  Revision  Changes    Path
  1.9       +1 -0      ws-axis/c/src/transport/axis3/HTTPChannel/HTTPChannel.hpp
  
  Index: HTTPChannel.hpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/transport/axis3/HTTPChannel/HTTPChannel.hpp,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- HTTPChannel.hpp	23 Mar 2005 15:45:03 -0000	1.8
  +++ HTTPChannel.hpp	23 Aug 2005 03:23:57 -0000	1.9
  @@ -80,6 +80,7 @@
   	bool				setTransportProperty( AXIS_TRANSPORT_INFORMATION_TYPE type, const char * value);
   	const char *		getTransportProperty( AXIS_TRANSPORT_INFORMATION_TYPE type);
       void				setProxy( const char * pcProxyHost, unsigned int uiProxyPort);
  +	virtual bool		reopenRequired() throw() { return false; }
   
   protected:
   	bool				OpenChannel();
  
  
  
  1.7       +1 -0      ws-axis/c/src/transport/axis3/HTTPSSLChannel/HTTPSSLChannel.hpp
  
  Index: HTTPSSLChannel.hpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/transport/axis3/HTTPSSLChannel/HTTPSSLChannel.hpp,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- HTTPSSLChannel.hpp	23 Mar 2005 15:45:03 -0000	1.6
  +++ HTTPSSLChannel.hpp	23 Aug 2005 03:23:57 -0000	1.7
  @@ -82,6 +82,7 @@
   	bool				setTransportProperty( AXIS_TRANSPORT_INFORMATION_TYPE type, const char* value);
   	const char *		getTransportProperty( AXIS_TRANSPORT_INFORMATION_TYPE type);
       void				setProxy( const char * pcProxyHost, unsigned int uiProxyPort);
  +	virtual bool		reopenRequired() throw() { return false; }
   
   protected:
   	bool				OpenChannel();