38394041424344
public class WSTransportServer extends WebTransportServerSupport { public WSTransportServer(URI location) { super(location); this.bindAddress = location; socketConnectorFactory = new SocketConnectorFactory(); }
39404142434445
public HttpTransportServer(URI uri, HttpTransportFactory factory) { super(uri); this.bindAddress = uri; this.transportFactory = factory; socketConnectorFactory = new SocketConnectorFactory(); }
43444546474849
42434445464748
private static final Logger LOG = LoggerFactory.getLogger(WSTransportServer.class); public WSTransportServer(URI location) { super(location); this.bindAddress = location; socketConnectorFactory = new SocketConnectorFactory(); }