From 01b970dc30d1839cb59fc39c48593cd536aea361 Mon Sep 17 00:00:00 2001 From: nandika Date: Wed, 26 Dec 2012 16:59:41 +0000 Subject: added missing soap version setting when setting response soap envelope git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@1425967 13f79535-47bb-0310-9956-ffa450edef68 --- src/core/context/msg_ctx.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/context/msg_ctx.c b/src/core/context/msg_ctx.c index 4bc5ff7..7a1523e 100644 --- a/src/core/context/msg_ctx.c +++ b/src/core/context/msg_ctx.c @@ -836,6 +836,7 @@ axis2_msg_ctx_set_response_soap_envelope( { int soap_v = AXIOM_SOAP12; soap_v = axiom_soap_envelope_get_soap_version(soap_envelope, env); + msg_ctx->is_soap_11 = (soap_v == AXIOM_SOAP12) ? AXIS2_FALSE : AXIS2_TRUE; msg_ctx->response_soap_envelope = soap_envelope; } else -- cgit v1.1-32-gdbae