susantha 2003/09/01 07:33:39
Modified: c/src/engine Axis.cpp
Log:
no message
Revision Changes Path
1.12 +5 -2 xml-axis/c/src/engine/Axis.cpp
Index: Axis.cpp
===================================================================
RCS file: /home/cvs/xml-axis/c/src/engine/Axis.cpp,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- Axis.cpp 1 Sep 2003 13:44:39 -0000 1.11
+++ Axis.cpp 1 Sep 2003 14:33:39 -0000 1.12
@@ -73,6 +73,7 @@
#include <stdlib.h>
#include <malloc.h>
#include "../common/Packet.h"
+#include "../common/AxisUtils.h"
#include <string>
#include <map>
@@ -180,14 +181,16 @@
<br>\
<table width=\"400\">",
str->str.op_stream);
+ string sServiceName;
for (iter = pSrvMap->begin();iter !=
pSrvMap->end();iter++)
{
pService = iter->second;
+ AxisUtils::convert(sServiceName,
pService->GetServiceName().c_str());
send_response_bytes("<tr><td
width=\"200\">", str->str.op_stream);
- send_response_bytes((char
*)pService->GetServiceName().c_str(), str->str.op_stream);
+ send_response_bytes((char
*)sServiceName.c_str(), str->str.op_stream);
send_response_bytes("</td><td
width=\"200\"><a href=\"./", str->str.op_stream);
if (bNoSlash)
send_response_bytes("axis/", str->str.op_stream);
- send_response_bytes((char
*)pService->GetServiceName().c_str(), str->str.op_stream);
+ send_response_bytes((char
*)sServiceName.c_str(), str->str.op_stream);
send_response_bytes("?wsdl",
str->str.op_stream);
send_response_bytes("\">wsdl</a></td>", str->str.op_stream);
send_response_bytes("</tr>",
str->str.op_stream);