AxisMessage message = new AxisMessage();
message.setElementQName(elementQName);
axisOperation.addMessage(message , WSDLConstants.MESSAGE_LABEL_OUT_VALUE);
outMsgContext.setAxisOperation(axisOperation);
AxisService axisService = new AxisService("testService");
axisService.addSchema(schema);
outMsgContext.setAxisService(axisService);
soapEnvelope.getBody().addChild(getResponseOMElement());
outMsgContext.setEnvelope(soapEnvelope);
JsonFormatter jsonFormatter = new JsonFormatter();
jsonFormatter.writeTo(outMsgContext, outputFormat , outputStream , false);