使用JavaScript代理在android上使用WCF服务

时间:2011-10-12 00:27:16

标签: android wcf json web-services

我需要使用一些通常在Web应用程序中使用的第三方WCF Web服务,但这次是从android。

我在生成的javascript代理中有以下函数,

loginToW:function(email,password,succeededCallback, failedCallback, userContext) {
/// <param name="email" type="String">System.String</param>
/// <param name="password" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'loginToW',false,{email:email,password:password},succeededCallback,failedCallback,userContext); },

我无法改变服务中的任何内容。 在android中使用这种服务的最简单方法是什么?我可以将此javascipt传递给webView,还是应该使用HttpClient构建一个JSON消息?如何处理回调?

感谢。

1 个答案:

答案 0 :(得分:0)

使用gson构建json使其变得简单。但由于我无法访问服务代码,因此我必须使用http fox来查看每个方法的json实际情况。