我已经设置了Windows web server
网站(unlimited application pools
),我希望能够通过database
I'访问该服务器上的Android app
正在发展。我怎样才能做到这一点?有人可以指点我的教程或提供代码示例,说明如何进行这种跨平台(Android/Java
到ASP.NET/C#
)通信吗?
(我正在尝试在我的服务器上为Android
游戏创建排行榜或全球记分牌。)
感谢。
答案 0 :(得分:12)
您的应用应该公开网络服务。 基于.net soap的webservices没有本机支持。但是你可以使用ksoap android端口:
http://code.google.com/p/ksoap2-android/
允许Android应用程序使用.net asmx webservice。 然而,客户端上的复杂的反序列化涉及为您想要的每个对象编写大量代码,因此传递给客户端。
我尝试了一个项目并且遇到了一些问题(或者我可以将结果返回给客户端,但是我传递的参数总是为null或者其他方式 - 我可以传递参数但是结果为null)
以下是我发布的获取int的示例:How to call a .NET Webservice from Android using KSOAP2?
但是,根据我目前的知识,我建议使用.asmx webservice,它返回一个json字符串并使用java json序列化程序来解析输出。优点:
快速入门:
使用[ScriptService]装饰您的webservice类,使用[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
装饰您的方法[ScriptService]
public class WebService1 : System.Web.Services.WebService
{
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public string HelloAndroid()
{
return "Hello Android";
}
}
(我认为你必须添加一个自.net 3.5以来可用的System.Web.Extension.dll的引用)。
您的网络服务仍将返回XML(因此您可以将其与soap客户端一起使用),除非您使用内容类型“application / json”发出HTTPPost请求。
使用此代码与android:
联系web服务private JSONObject sendJsonRequest(string host, int port,
String uri, JSONObject param)
throws ClientProtocolException, IOException, JSONException
{
HttpClient httpClient = new DefaultHttpClient();
HttpHost httpHost = new HttpHost(host, port);
HttpPost httpPost = new HttpPost(uri);
httpPost.addHeader("Content-Type", "application/json; charset=utf-8");
if (param != null)
{
HttpEntity bodyEntity = new StringEntity(param.toString(), "utf8");
httpPost.setEntity(bodyEntity);
}
HttpResponse response = httpClient.execute(httpHost, httpPost);
HttpEntity entity = response.getEntity();
String result = null;
if (entity != null) {
InputStream instream = entity.getContent();
BufferedReader reader = new BufferedReader(
new InputStreamReader(instream));
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null)
sb.append(line + "\n");
result = sb.toString();
instream.close();
}
httpPost.abort();
return result != null ? new JSONObject(result) : null;
}
如果您的网络服务方法如下所示:
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public User GetUser(string name, int age)
{
return new User { Name = name, Age = age; }
}
你可以这样从android调用它:
public void getUser() {
// if you put a json object to the server
// the properties are automagically mapped to the methods' input parameters
JSONObject param = new JSONObject();
param.put("name", "John Doe");
param.put("age", 47);
JSONObject result = sendJsonRequest("server", 80,
"http://server:80/service1.asmx/GetUser", param);
if (result != null) {
JSONObject user = new JSONObject(result.getString("d"));
// .net webservices always return the result
// wrapped in a parameter named "d"
system.out.println(user.getString("name"));
system.out.println(user.getInt("age").toString());
}
}
在客户端处理服务器异常:
将此课程添加到您的项目中:
import org.json.JSONException;
import org.json.JSONObject;
public class JSONExceptionHelper {
private static final String KEY_MESSAGE = "Message";
private static final String KEY_EXCEPTIONTYPE = "ExceptionType";
private static final String KEY_STACKTRACE = "StackTrace";
public static boolean isException(JSONObject json) {
return json == null
? false
: json.has(KEY_MESSAGE) &&
json.has(KEY_EXCEPTIONTYPE) &&
json.has(KEY_STACKTRACE);
}
public static void ThrowJsonException(JSONObject json) throws JSONException {
String message = json.getString(KEY_MESSAGE);
String exceptiontype = json.getString(KEY_EXCEPTIONTYPE);
String stacktrace = json.getString(KEY_STACKTRACE);
StringBuilder sb = new StringBuilder();
sb.append(exceptiontype);
sb.append(": ");
sb.append(message);
sb.append(System.getProperty("line.separator"));
sb.append(stacktrace);
throw new JSONException(sb.toString());
}
}
现在将sendJSONRequest中的return语句替换为:
JSONObject json = result != null ? new JSONObject(result) : null
if (JSONExceptionHelper.isException(json))
JSONExceptionHelper.ThrowJsonException(json);
return json;
请注意:仅当连接来自localhost时,才会将异常传递给客户端。 否则你得到一个http错误500(或501?我不记得了)。您必须配置IIS以将错误500发送到客户端。
尝试并创建一个始终抛出异常的Web服务。
答案 1 :(得分:2)
听起来像 Web服务的工作。
首先在Windows Web服务器上创建Web服务,您可以使用ASP.NET(或this might be more current)执行此操作。
在Java端,您可以调用Web服务并使用您获得的结果。我认为this question可以帮助你开始这方面。
答案 2 :(得分:0)