/**
* Creates a transport server.
*/
public static TransportServer bind(String location) throws Exception {
for( Provider spi : providers.jsingletons()) {
TransportServer rc = spi.bind(location);
if( rc!=null ) {
return rc;
}
}
throw new IllegalArgumentException("Unknown transport bind uri: "+location);