* Simple test that ensures that a service fault is thrown correctly
*/
public void testFault() throws Exception {
RPCLit proxy = getProxy();
try{
proxy.testFault();
fail("Expected RPCFault");
} catch(RPCFault rpcFault){
assertTrue(rpcFault.getMessage().equals("Throw RPCFault"));
assertTrue(rpcFault.getFaultInfo() == 123);
} catch(Exception e){