* the messaging exception
*/
public static SOAPEnvelope getEnvelope() throws IOException, MessagingException {
SOAPFactory soapFac = OMAbstractFactory.getSOAP11Factory();
OMFactory omFac = OMAbstractFactory.getOMFactory();
SOAPEnvelope enp = soapFac.createSOAPEnvelope();
SOAPBody sopaBody = soapFac.createSOAPBody();
OMElement content = omFac.createOMElement(new QName("message"));
OMElement data1 = omFac.createOMElement(new QName("part"));
data1.setText("sample data");