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/11/30 13:38:59 UTC

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

damitha     2004/11/30 04:38:59

  Modified:    c/src/transport/axis2 SSLChannelFactory.cpp
  Log:
  removed traces
  
  Revision  Changes    Path
  1.3       +1 -5      ws-axis/c/src/transport/axis2/SSLChannelFactory.cpp
  
  Index: SSLChannelFactory.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/transport/axis2/SSLChannelFactory.cpp,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- SSLChannelFactory.cpp	30 Nov 2004 11:49:04 -0000	1.2
  +++ SSLChannelFactory.cpp	30 Nov 2004 12:38:59 -0000	1.3
  @@ -27,9 +27,8 @@
   #include "SSLChannelFactory.hpp"
   #include "../SSLChannel.hpp"
   #include <stdio.h>
  -#include "../../common/AxisConfig.h"
   #include "../../engine/AxisEngineException.h"
  -#include "../../common/AxisTrace.h"
  +//#include "../../common/AxisTrace.h"
                                                                                                                                
   //extern AXIS_CPP_NAMESPACE_PREFIX AxisTrace* g_pAT;
   //extern AXIS_CPP_NAMESPACE_PREFIX AxisConfig* g_pConfig;
  @@ -63,7 +62,6 @@
           if (!m_Create || !m_Delete)
           {
               unloadLib();
  -            AXISTRACE1("SERVER_ENGINE_LOADING_PARSER_FAILED" , CRITICAL);
               char *s = new char[strlen(m_pcLibraryName)+1];
               strcpy(s,m_pcLibraryName);
               throw AxisEngineException(SERVER_ENGINE_LOADING_PARSER_FAILED, s);
  @@ -71,7 +69,6 @@
   	}
   	else
   	{
  -        AXISTRACE1("SERVER_ENGINE_LOADING_PARSER_FAILED" , CRITICAL);
           char *s = new char[strlen(m_pcLibraryName)+1];
           strcpy(s,m_pcLibraryName);
           throw AxisEngineException(SERVER_ENGINE_LOADING_PARSER_FAILED, s);
  @@ -104,7 +101,6 @@
       m_LibHandler = PLATFORM_LOADLIB(m_pcLibraryName);
       if (!m_LibHandler)
       {
  -        AXISTRACE1("SERVER_ENGINE_LOADING_PARSER_FAILED" , CRITICAL);
           throw AxisEngineException(SERVER_ENGINE_LOADING_PARSER_FAILED);
       }