protected void init() throws Exception
{
MuleClient muleClient = new MuleClient(true);
remoteClient = muleClient.getRemoteDispatcher("tcp://localhost:5555");
customers.add(new Customer("Jenson Button", 123));
customers.add(new Customer("Michael Schumacker", 456));
customers.add(new Customer("Juan Pablo Montoya", 789));
customers.add(new Customer("David Colthard", 101));
customers.add(new Customer("Rubens Barrichello", 112));
customers.add(new Customer("Mark Webber", 131));
customers.add(new Customer("Takuma Sato", 415));
customers.add(new Customer("Kimi Raikkonen", 161));
customers.add(new Customer("Ralf Schumacher", 718));
customers.add(new Customer("Jarno Trulli", 192));
}