I am using axis-c from CVS as of today (July 17th, 2005).
There is a delete statement in AxisEngineException::processException() which
has a couple of problems:
First, if you were supposed to delete the pointer passed in, delete[] should
be used (in C++). But, at least in the case of the exception thrown when a
library fails to load, a constant character pointer is passed in (in this
case "") -- see this line in XMLParserFactory::loadLib():
throw AxisEngineException(SERVER_ENGINE_LOADING_PARSER_FAILED,
PLATFORM_LOADLIB_ERROR);
This is on Windows.
Why not just use a const std::string& instead of char*?