{
SOAPBodyElement soapBodyElement =
soapBody.addBodyElement( NameUtils.createName( child.getLocalName( ),
child.getPrefix( ),
child.getNamespaceURI( ) ) );
Dom2SaajConverter dom2Saaj = new Dom2SaajConverter( );
SOAPElement childSoapElement = dom2Saaj.toSOAPElement( (Element) child );
NodeList children = childSoapElement.getChildNodes( );
for ( int j = 0; j < children.getLength( ); j++ )
{
soapBodyElement.appendChild( children.item( j ) );
}