You are not logged in.
Pages: 1
Not by me, I'm the discoverer
https://github.com/krkodil/mORMot
Example usage:
SynClient client = new SynClient("127.0.0.1", 8080, "service", false);
if (client.login("User", "synopse")) {
JSONArray params = new JSONArray().put(2).put(3); // Add(2, 3)
JSONObject response = client.call("Calculator.Add", params);
System.out.println("Summ: " + response);
client.logout();
}
Delphi XE4 Pro on Windows 7 64bit.
Lazarus trunk built with fpcupdelux on Windows with cross-compile for Linux 64bit.
Offline
Nice, this should go to samples.
Offline
Included as https://synopse.info/fossil/info/64dec79dd1
Offline
Pages: 1