samisa 2004/09/01 01:01:07
Modified: c/src/engine Axis.cpp
Log:
Fixed the problem of AXIS initialisation bypassing the reading of the client.wsdd file
specified in the ClientWSDDFilePath in case there is an incorrect value in the
ClientLogPath in the axiscpp.conf file.
Jira: AXISCPP-127
Revision Changes Path
1.67 +5 -1 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.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- Axis.cpp 6 Aug 2004 14:44:30 -0000 1.66
+++ Axis.cpp 1 Sep 2004 08:01:07 -0000 1.67
@@ -178,7 +178,7 @@
pStream->sendBytes
("</td><td width=\"10%\" align=\"left\"><a href=\"./",
NULL);
- if (bNoExt) pStream->sendBytes("axis/", NULL);
+ //if (bNoExt) pStream->sendBytes("axis/", NULL);
pStream->sendBytes((char*) pService->
getServiceName (), NULL);
pStream->sendBytes("?wsdl", NULL);
@@ -302,10 +302,14 @@
SOAPTransportFactory::initialize();
#if defined(ENABLE_AXISTRACE)
status = g_pAT->openFileByClient ();
+ /* //Samisa: 01/09/2004
+ //Fix for AXISCPP-127
+ //Do not stop here merely because log file location ClientLogPath is incorrect
if (status == AXIS_FAIL)
{
return AXIS_FAIL;
}
+ */
#endif
char *pClientWsddPath =
g_pConfig->getAxisConfProperty(AXCONF_CLIENTWSDDFILEPATH);
|