* @return
*/
private AsynchChannelServer createAsynchChannelServer(URI bindAddress) throws JMSException {
try {
bindAddress = URIConverter.convert(bindAddress);
AsynchChannelServer server = new ChannelFactory().bindAsynchChannel(bindAddress);
return server;
} catch (IOException e) {
throw JMSExceptionHelper.newJMSException(e.getMessage(), e);
} catch (URISyntaxException e) {
throw JMSExceptionHelper.newJMSException(e.getMessage(), e);