public static SOAPEnvelope createEnvelopeFromGetRequest(String requestUrl, Map map) {
String[] values = Utils.parseRequestURLForServiceAndOperation(requestUrl);
if ((values[1] != null) && (values[0] != null)) {
String operation = values[1];
SOAPFactory soapFactory = new SOAP11Factory();
SOAPEnvelope envelope = soapFactory.getDefaultEnvelope();
OMNamespace omNs = soapFactory.createOMNamespace(values[0], "services");
OMNamespace defualtNs = new OMNamespaceImpl("", null);
OMElement opElement = soapFactory.createOMElement(operation, omNs);
Iterator it = map.keySet().iterator();
while (it.hasNext()) {
String name = (String) it.next();
String value = (String) map.get(name);
OMElement omEle = soapFactory.createOMElement(name, defualtNs);
omEle.setText(value);
opElement.addChild(omEle);
}