Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
-
Linux / simple_http_client
Description
In my webservice I build a document with the stax_builder (as in the documentation explained):
builder = axiom_stax_builder_create(env, reader);
document = AXIOM_STAX_BUILDER_GET_DOCUMENT(builder, env);
payload = AXIOM_DOCUMENT_GET_ROOT_ELEMENT(document, env);
AXIOM_DOCUMENT_BUILD_ALL(document, env);
then I return the root node back to the client.
If I call the Macro AXIOM_STAX_BUILDER_FREE to release the resources from stax_builder it releases
the built document too, and the axis engine tries to serialize the freed OM-Tree.
If I don't call AXIOM_STAX_BUILDER_FREE, I have memory leaks...
Shouldn't the document be freed in a separate step if needed?
Thanks
Marc