public void testUnMarshalException() throws Exception
{
MarshalSessionHome marshalHome = (MarshalSessionHome)getInitialContext().lookup("marshal/MarshallSession");
MarshalSession marshalSession = marshalHome.create();
TestPayload payload = new TestPayload();
try
{
marshalSession.testMethod(payload);
assertTrue("Call on MarshalSession.testMethod() should have thrown UnmarshalException, but did not", false);
}