* e.g. local InetAddress and local port
* @return the TransportChannel bound to the remote node
* @throws JMSException
*/
public TransportChannel create(WireFormat wireFormat, URI remoteLocation, URI localLocation) throws JMSException {
AsynchChannel asynchChannel = createAsynchChannel(remoteLocation);
ActiveIOTransportChannel channel = new ActiveIOTransportChannel(wireFormat, asynchChannel);
return populateProperties(channel, remoteLocation);
}