TestBean request = new TestBean();
request.setData1("hello world");
request.setData2(10);
try {
TestBean response = proxy.process(1, request);
fail("Expected TestException thrown");
} catch (WebServiceException wse) {
// Currently there is no support if the fault bean is missing
assertTrue(wse.getMessage().contains("User fault processing is not supported"));
} catch (TestException te) {