348349350351352353354355356357358
listenerName = webListener.getId(); try { Ports ports = habitat.getComponent(Ports.class); Port port = ports.createPort(webListener.getPort()); bind(port, webListener, vsId); } catch (java.io.IOException ex) { throw new ConfigException(ex); }
353354355356357358359360361362363
349350351352353354355356357358359
363364365366367368369370371372373
listenerName = webListener.getId(); try { Ports ports = habitat.getService(Ports.class); Port port = ports.createPort(webListener.getPort()); bind(port, webListener, vsId); } catch (java.io.IOException ex) { throw new ConfigException(ex); }
355356357358359360361362363364365