public void start() throws IOException
{
if (logger.isDebugEnabled())
logger.debug(String.format("Binding avro service to %s:%s", listenAddr, listenPort));
CassandraServer cassandraServer = new CassandraServer();
SpecificResponder responder = new SpecificResponder(Cassandra.class, cassandraServer);
logger.info("Listening for avro clients...");
// FIXME: This isn't actually binding to listenAddr (it should).
server = new org.mortbay.jetty.Server(listenPort);