Envelope env = this.xmlToEnvelope(this.soapRequest);
Body body = env.getBody();
String bodyXml = this.bodyToXML(body);
SoapMethodCall smc = this.parseSoapBody(bodyXml);
String methodRequest = smc.getMethodName();
WebMethod webMethod = this.hashWebMethods.get(methodRequest);
strRet = this.doNativeMethodCall(webMethod, smc);
env = null;
smc = null;
Runtime.getRuntime().gc();
return strRet;