new File(".").toURI(), new URI(this.dynamicFactoryWSDLLocation));
}
// Create Invoker
//FIXME: Should pass the right leadcontext header for last argument
Invoker invoker = InvokerFactory.createInvoker(new QName("http://extreme.indiana.edu", "ServiceCreatorPortType"),
definitions, null,
null, null);
invoker.setup();
invoker.setOperation("deployServiceFromClass");
invoker.setInput("classAsString", code);
invoker.invoke();
Object contextPath = invoker.getOutput("return");
} catch (Exception e) {
throw new XBayaException(e);
}
}