public JettyHTTPServerTransport(Bus b, EndpointReferenceType ref) throws WSDLException, IOException {
super(b, ref);
counters = new TransportServerCounters("JettyHTTPServerTransport");
engine = JettyHTTPServerEngine.getForPort(bus, nurl.getProtocol(), nurl.getPort());
//register the configuration event
ConfigurationEventFilter configurationEventFilter = new ConfigurationEventFilter();
try {
bus.addListener((BusEventListener)this, configurationEventFilter);
} catch (BusException ex) {
LOG.log(Level.SEVERE, "REMOVE_LISTENER_FAILURE_MSG", ex);
}