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 da...@apache.org on 2004/01/27 11:44:22 UTC

cvs commit: ws-axis/c/src/client/transport/axis HttpTransport.cpp Makefile.am

damitha     2004/01/27 02:44:21

  Modified:    c/src/client/transport/axis HttpTransport.cpp Makefile.am
  Log:
  
  
  Revision  Changes    Path
  1.15      +4 -0      ws-axis/c/src/client/transport/axis/HttpTransport.cpp
  
  Index: HttpTransport.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/client/transport/axis/HttpTransport.cpp,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- HttpTransport.cpp	27 Jan 2004 04:13:23 -0000	1.14
  +++ HttpTransport.cpp	27 Jan 2004 10:44:16 -0000	1.15
  @@ -83,7 +83,9 @@
       m_Secure = secure;
   
       if(secure) {
  +#ifdef _SSL_ENABLED_        
           m_Channel = new SecureChannel();
  +#endif        
       } else {
           m_Channel = new Channel();
       }
  @@ -101,7 +103,9 @@
       m_HttpBindDone = false;
   
       if(secure) {
  +#ifdef _SSL_ENABLED_         
           m_Channel = new SecureChannel();
  +#endif        
       } else {
           m_Channel = new Channel();
       }
  
  
  
  1.7       +1 -1      ws-axis/c/src/client/transport/axis/Makefile.am
  
  Index: Makefile.am
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/client/transport/axis/Makefile.am,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- Makefile.am	27 Jan 2004 10:33:27 -0000	1.6
  +++ Makefile.am	27 Jan 2004 10:44:16 -0000	1.7
  @@ -1,5 +1,5 @@
   noinst_LTLIBRARIES = libtransport.la
  -AM_CPPFLAGS = -Wshadow -Wall -pedantic -D_SSL_ENABLED_
  +AM_CPPFLAGS = -Wshadow -Wall -pedantic
   libtransport_la_SOURCES = Channel.cpp HttpTransport.cpp Receiver.cpp Sender.cpp \
           Transport.cpp TransportFactory.cpp Url.cpp AxisTransport.cpp SecureChannel.cpp