public void start() throws Exception {
JettyHTTPServerEngineFactory eg = new JettyHTTPServerEngineFactory();
eg.createJettyHTTPServerEngine(this.port, "http");
// bind the main service.
Object implementor = new MainService(idf);
Endpoint ep = Endpoint.publish("http://"+hostName+":" + port + "/aq2o", implementor);
SOAPBinding soap = (SOAPBinding) ep.getBinding();
soap.setMTOMEnabled(true);
}