.get(LogonResponse.class, "user.getSession", "1.0");
String sessionId = ((LogonResponse) response.getSuccessResponse()).getSessionId();
ropClient.setSessionId(sessionId);
ClientRequest cr2 = ropClient.buildClientRequest();
cr2.addParam("userName", "katty");
cr2.addParam("salary", 2500L);
Telephone telephone = new Telephone();
telephone.setZoneCode("010");
telephone.setTelephoneCode("12345678");
cr2.addParam("telephone", telephone);
response = cr2.post(CreateUserResponse.class, "user.add", "1.0");
assertNotNull(response);
assertTrue(response.isSuccessful());
assertTrue(response.getSuccessResponse() instanceof CreateUserResponse);
}