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 sa...@apache.org on 2004/06/10 06:41:23 UTC

cvs commit: ws-axis/c/src/engine Axis.cpp SOAPTransportFactory.cpp XMLParserFactory.cpp

sanjaya     2004/06/09 21:41:23

  Modified:    c/src/common AxisConfig.cpp
               c/src/engine Axis.cpp SOAPTransportFactory.cpp
                        XMLParserFactory.cpp
  Log:
  getAxConfProperty changed to getAxisConfProperty
  
  Revision  Changes    Path
  1.30      +1 -1      ws-axis/c/src/common/AxisConfig.cpp
  
  Index: AxisConfig.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/common/AxisConfig.cpp,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- AxisConfig.cpp	10 Jun 2004 04:23:15 -0000	1.29
  +++ AxisConfig.cpp	10 Jun 2004 04:41:23 -0000	1.30
  @@ -138,7 +138,7 @@
   }
   
   
  -char* AxisConfig::getAxConfProperty(g_axconfig property)
  +char* AxisConfig::getAxisConfProperty(g_axconfig property)
   {
   	return m_pcValueArray[property];
   }
  
  
  
  1.61      +3 -3      ws-axis/c/src/engine/Axis.cpp
  
  Index: Axis.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/engine/Axis.cpp,v
  retrieving revision 1.60
  retrieving revision 1.61
  diff -u -r1.60 -r1.61
  --- Axis.cpp	4 Jun 2004 05:10:54 -0000	1.60
  +++ Axis.cpp	10 Jun 2004 04:41:23 -0000	1.61
  @@ -191,7 +191,7 @@
                   }
                   else
                   {
  -					sServiceName = g_pConfig->getAxConfProperty(AXCONF_AXISHOME);
  +					sServiceName = g_pConfig->getAxisConfProperty(AXCONF_AXISHOME);
                       sServiceName += WSDLDIRECTORY + sUriWOAxis + ".wsdl";
                       // Check whether wsdl file is available
                       if ((WsddFile = fopen (sServiceName.c_str (), "r")) == NULL)
  @@ -257,7 +257,7 @@
           {
   			XMLParserFactory::initialize();
               SOAPTransportFactory::initialize();
  -			char *pWsddPath = g_pConfig->getAxConfProperty(AXCONF_WSDDFILEPATH);
  +			char *pWsddPath = g_pConfig->getAxisConfProperty(AXCONF_WSDDFILEPATH);
   
   #if defined(ENABLE_AXISTRACE)
   
  @@ -293,7 +293,7 @@
               }
   #endif
   			char *pClientWsddPath = 
  -			g_pConfig->getAxConfProperty(AXCONF_CLIENTWSDDFILEPATH);
  +			g_pConfig->getAxisConfProperty(AXCONF_CLIENTWSDDFILEPATH);
   
               /* May be there is no client side handlers configured. So may not 
   	     * have CLIENTWSDDFILEPATH entry in axiscpp.conf 
  
  
  
  1.5       +2 -2      ws-axis/c/src/engine/SOAPTransportFactory.cpp
  
  Index: SOAPTransportFactory.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/engine/SOAPTransportFactory.cpp,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- SOAPTransportFactory.cpp	9 Jun 2004 12:34:02 -0000	1.4
  +++ SOAPTransportFactory.cpp	10 Jun 2004 04:41:23 -0000	1.5
  @@ -47,10 +47,10 @@
   {
   #ifdef WIN32
   #ifdef _DEBUG
  -	m_pcLibraryPath = g_pConfig->getAxConfProperty(AXCONF_TRANSPORTHTTP);
  +	m_pcLibraryPath = g_pConfig->getAxisConfProperty(AXCONF_TRANSPORTHTTP);
   	//m_pcLibraryPath = "AxisTransport_D.dll"; //this will be taken from configuration file
   #else
  -	m_pcLibraryPath = g_pConfig->getAxConfProperty(AXCONF_TRANSPORTHTTP);
  +	m_pcLibraryPath = g_pConfig->getAxisConfProperty(AXCONF_TRANSPORTHTTP);
   	//m_pcLibraryPath = "AxisTransport.dll"; //this will be taken from configuration file
   #endif
   #else
  
  
  
  1.9       +2 -2      ws-axis/c/src/engine/XMLParserFactory.cpp
  
  Index: XMLParserFactory.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/engine/XMLParserFactory.cpp,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- XMLParserFactory.cpp	10 Jun 2004 03:57:06 -0000	1.8
  +++ XMLParserFactory.cpp	10 Jun 2004 04:41:23 -0000	1.9
  @@ -48,10 +48,10 @@
   #ifdef WIN32
   #ifdef _DEBUG
   	//m_pcLibraryPath = "AxisXMLParser_D.dll"; //this will be taken from configuration file
  -	m_pcLibraryPath = g_pConfig->getAxConfProperty(AXCONF_XMLPARSER);
  +    m_pcLibraryPath = g_pConfig->getAxisConfProperty(AXCONF_XMLPARSER);
   #else
   	//m_pcLibraryPath = "AxisXMLParser.dll"; //this will be taken from configuration file
  -	m_pcLibraryPath = g_pConfig->getAxConfProperty(AXCONF_XMLPARSER);
  +    m_pcLibraryPath = g_pConfig->getAxisConfProperty(AXCONF_XMLPARSER);
   #endif
   #else
   	//m_pcLibraryPath = "/home/damitha/Axis/libs/libaxis_xmlparser.so"; //this will be taken from configuration file