use of cn.cerc.jbean.client.RemoteService in project summer-mis by cn-cerc.
the class RemoteServiceTest method test.
@Test
@Ignore
public void test() {
RemoteService app = new RemoteService();
// app.setHost("r1.knowall.cn");
app.setService("SvrUserLogin.check");
DataSet datain = app.getDataIn();
Record head = datain.getHead();
head.setField("Account_", "admin");
head.setField("Password_", "123456");
head.setField("MachineID_", "webclient");
boolean result = app.exec();
assertTrue(app.getMessage(), result);
}
Aggregations