WsdlPortTypeOperation wsdlOperation = portType.getOperation(operation);
WsdlMessagePart part = workflowWSDL
.getMessage(wsdlOperation.getOutput().getMessage().getLocalPart()).parts().iterator()
.next();
XmlElement childElement = container.addElement(part.getElement().getLocalPart());
Iterator<GpelAssignCopy> copyItr = assign.copyOperations().iterator();
while (copyItr.hasNext()) {
GpelAssignCopy copyItm = copyItr.next();
childElement.addElement(getElementName(copyItm.getTo().getQuery()));
if (messagePartName == null) {
messagePartName = copyItm.getTo().xml().attributeValue(PART_STR);