Android上的Hessian庫:hessdroid

jopen 11年前發布 | 15K 次閱讀 Android WEB服務/RPC/SOA

hessdroid 是 Resin 的 Hessian 二進制遠程調用框架在 Android 上的移植版本。非官方。

示例代碼:

String webServiceUrl = "https://localhost/testAPI";

HessianProxyFactory proxyFactory = new HessianProxyFactory();
// setting a user/password calls the web service with basic authentication
proxyFactory.setUser("john");
proxyFactory.setPassword("doe");

TestAPI api = (TestAPI) proxyFactory.create(TestAPI.class, webServiceUrl, getClassLoader());

System.out.println(api.saySomething());

項目主頁:http://www.baiduhome.net/lib/view/home/1362214386279

 本文由用戶 jopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!