ClientConnectionManager connectionManager = new ThreadSafeClientConnManager(params,schemeRegistry);
HttpClient client=new DefaultHttpClient(connectionManager,params);
//HttpPost post=new HttpPost("http://localhost:8080/XCFServer1");
HttpPost post=new HttpPost("http://localhost:8080/CRMServer/test/ctaclist.action");
Staff s=new Staff();
s.setStaffName("guxuede");
SerializableEntity entity=new SerializableEntity(s, true);
post.setEntity(entity);
System.out.println("start");
client.execute(post, new ResponseHandler<Void>() {
@Override