ConfigurationContext configCtxt = new ConfigurationContext(new AxisConfiguration());
outMsgContext.setConfigurationContext(configCtxt);
AxisOperation axisOperation = AxisOperationFactory.getAxisOperation(AxisOperation.MEP_CONSTANT_IN_OUT);
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());