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 wh...@apache.org on 2005/01/17 14:34:58 UTC

cvs commit: ws-axis/c/src/transport/axis3 HTTPTransportInstantiator.cpp

whitlock    2005/01/17 05:34:57

  Modified:    c/src/transport/axis3/HTTPChannel
                        HTTPChannelInstantiator.cpp
               c/src/transport/axis3/HTTPSSLChannel
                        HTTPSSLChannelInstantiator.cpp
               c/src/transport/axis3 HTTPTransportInstantiator.cpp
  Log:
  Add back in the call to AxisTrace::setTraceEntrypoints enclosed in ifdef ENABLE_AXISTRACE.
  Damitha, I've appended to the mailing list explaining more about this problem. Hopefully this will compile for you now that I have enclosed the offending line in ifdef ENABLE_AXISTRACE. If it still fails, please give me more details as to how it is failing for you. Thanks.
  
  Revision  Changes    Path
  1.6       +3 -1      ws-axis/c/src/transport/axis3/HTTPChannel/HTTPChannelInstantiator.cpp
  
  Index: HTTPChannelInstantiator.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/transport/axis3/HTTPChannel/HTTPChannelInstantiator.cpp,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- HTTPChannelInstantiator.cpp	17 Jan 2005 11:40:47 -0000	1.5
  +++ HTTPChannelInstantiator.cpp	17 Jan 2005 13:34:57 -0000	1.6
  @@ -68,7 +68,9 @@
       STORAGE_CLASS_INFO void initializeLibrary (AxisTraceEntrypoints& ep)
       {
           // Do init actions
  -        //AxisTrace::setTraceEntrypoints(ep);
  +#ifdef ENABLE_AXISTRACE
  +        AxisTrace::setTraceEntrypoints(ep);
  +#endif
       }
   
       /*  uninitializeLibrary() Is a C interface.
  
  
  
  1.6       +3 -1      ws-axis/c/src/transport/axis3/HTTPSSLChannel/HTTPSSLChannelInstantiator.cpp
  
  Index: HTTPSSLChannelInstantiator.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/transport/axis3/HTTPSSLChannel/HTTPSSLChannelInstantiator.cpp,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- HTTPSSLChannelInstantiator.cpp	17 Jan 2005 11:40:47 -0000	1.5
  +++ HTTPSSLChannelInstantiator.cpp	17 Jan 2005 13:34:57 -0000	1.6
  @@ -68,7 +68,9 @@
       STORAGE_CLASS_INFO void initializeLibrary (AxisTraceEntrypoints& ep)
       {
           // Do init actions
  -        //AxisTrace::setTraceEntrypoints(ep);
  +#ifdef ENABLE_AXISTRACE
  +        AxisTrace::setTraceEntrypoints(ep);
  +#endif
       }
   
       /*  uninitializeLibrary() Is a C interface.
  
  
  
  1.5       +3 -1      ws-axis/c/src/transport/axis3/HTTPTransportInstantiator.cpp
  
  Index: HTTPTransportInstantiator.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/transport/axis3/HTTPTransportInstantiator.cpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- HTTPTransportInstantiator.cpp	17 Jan 2005 11:40:47 -0000	1.4
  +++ HTTPTransportInstantiator.cpp	17 Jan 2005 13:34:57 -0000	1.5
  @@ -58,7 +58,9 @@
       STORAGE_CLASS_INFO void initializeLibrary (AxisTraceEntrypoints& ep)
       {
           // Do init actions
  -        //AxisTrace::setTraceEntrypoints(ep);
  +#ifdef ENABLE_AXISTRACE
  +        AxisTrace::setTraceEntrypoints(ep);
  +#endif
       }
   
       //  uninitializeLibrary() Is a C interface.