}
private void startServer(String configFilePath)
{
URL configURL = this.getClass().getResource(configFilePath);
MuleServer muleServer = new MuleServer(configURL.toString())
{
@Override
public void shutdown(Throwable e)
{
throw new RuntimeException(e);
}
};
muleServer.start(false, false);
}