Android上的Hessian库 hessdroid
本文导语: hessdroid 是 Resin 的 Hessian 二进制远程调用框架在 Android 上的移植版本。非官方。 示例代码: String webServiceUrl = "https://localhost/testAPI";HessianProxyFactory proxyFactory = new HessianProxyFactory();// setting a user/password calls the web service with basic authe...
hessdroid 是 java/j2ee iis7站长之家 的 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());
您可能感兴趣的文章:
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。