URLClassLoader cl = new URLClassLoader(new URL[]{jarFile.toURL()});
InputStream deplydd = cl.getResourceAsStream("deploy.wsdd");
assertNotNull(deplydd);
ClassLoader parentClassLoder = ClassUtils.getDefaultClassLoader();
ClassUtils.setDefaultClassLoader(cl);
AdminClient adminClient = new AdminClient();
URL requestUrl = AxisGeronimoUtils.getURL("/axis/services/AdminService");
Call call = adminClient.getCall();
call.setTargetEndpointAddress(requestUrl);
String result = adminClient.process(null, deplydd);
URL wsdlrequestUrl = AxisGeronimoUtils.getURL("/axis/services/echoPort?wsdl");
//+"/axis/services/AdminService?wsdl");
HttpURLConnection connection = (HttpURLConnection) wsdlrequestUrl.openConnection();
BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));