首页 » 手机开发包 » hessdroid

Android上的Hessian库 hessdroid

hessdroid 是 ResinHessian 二进制远程调用框架在 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());

授权协议: Apache
开发语言: Java
操作系统: Android 
收录时间:2010年03月02日
软件主页 下载