assertEquals(HTTPInvokerTestServer.RESPONSE_VALUE, response);
// test with small object
headerProps.put("Content-type", WebUtil.BINARY);
response = remotingClient.invoke(new ComplexObject(2, "foo", true), metadata);
assertEquals(org.jboss.test.remoting.transport.http.ssl.basic.HTTPSInvokerTestServer.OBJECT_RESPONSE_VALUE, response);
// test with large object
response = remotingClient.invoke(new ComplexObject(2, "foo", true, 8000), metadata);
assertEquals(HTTPSInvokerTestServer.LARGE_OBJECT_RESPONSE_VALUE, response);
}
catch(Throwable throwable)