"127.0.0.1");
ByteArrayOutputStream out = new ByteArrayOutputStream();
Axis2Response res = new Axis2Response("text/xml; charset=utf-8", "127.0.0.1", null, null, 8080, out);
String endpointClassName = "org.apache.geronimo.axis2.testdata.simple.HelloWorld";
POJOWebServiceContainer container = new POJOWebServiceContainer(portInfo, endpointClassName, cl, null, null, AnnotationHolder.EMPTY, "/axis2");
container.init();
container.invoke(req, res);
out.flush();
}