{
muleContext.getRegistry().registerObject("streamToObjectTransformer", new ByteArrayToObject());
MuleClient client = new MuleClient(muleContext);
// there are some default built into the http url service (note a different port)
@SuppressWarnings("unchecked")
Map<String, String> props = new SingletonMap("http.method", HttpConstants.METHOD_GET);
MuleMessage result = client.send("http://localhost:11081", null, props);
assertNotNull("Result is null", result);
assertFalse("Result is null", result.getPayload() instanceof NullPayload);
assertNull(result.getExceptionPayload());