protected void setUp() throws Exception {
container = new JBIContainer();
container.init();
container.start();
out = new OutBinding() {
protected void process(MessageExchange exchange, NormalizedMessage message) throws MessagingException {
System.out.println("Received: " + message);
exchange.setStatus(ExchangeStatus.DONE);
}
};