* Simple XML/HTTP Message Test
* @throws Exception
*/
public void testSimple() throws Exception {
Dispatch<Object> dispatch = getDispatch();
ObjectFactory factory = new ObjectFactory();
EchoString request = factory.createEchoString();
request.setInput("SYNC JAXB XML PAYLOAD TEST");
// Invoke the Dispatch<Object>
TestLogger.logger.debug(">> Invoking sync Dispatch with JAX-B Parameter");
EchoString response = (EchoString) dispatch.invoke(request);