Hello,
I'm new to AXIS_CPP.
I have managed to deploy my own sample Web service with the simple axis server
on Win XP (using Visual Studio 2005).
While testing my Web
service with SoapUi, I discovered a memory leak!
My Web service is
very simple and based on the class:
class EosServiceWS
{
public:
EosServiceWS();
public:
virtual ~EosServiceWS();
public:
void onFault();
xsd__string search(xsd__int Value0);
xsd__string suche(xsd__string Value0);
void test(); // <--- My test case
};
The class was
generated from the WSDL file (like all server side files).
I only tested the
method test(), which has an empty body, but I see a constant increasing
memory consumption which does not shrink.
Is it a known
problem? on Windows? How about Linux?
Any hints to find a
workaround are welcome.
Cheers
Markus
