0

我正在尝试将Android应用程序连接到最初设计的 Web 服务iOS,但我不确定这是否可行。我也没有设计这个 Web 服务,所以我正在查看这个不是我的代码,只是在摸索。当前的 Web 服务是用PHP和编写SOAPWSDL。如果我可以连接到这个网络服务,我会尝试使用ksoap2,除非我找到更好的选择。我将在这篇文章中使用很多链接,因为没有它们,您将看到大量令人讨厌的代码。

所以无论如何,简而言之就是这个问题。我有这个 Web 服务 url 的
URL 列表
的列表,从该列表的外观来看,我需要向iphoneview/iphone_get_details.php发出我的登录请求,它里面有这个。
get_details
但是当我使用此代码时

class LogMeIn extends AsyncTask<String, Void, String> {
    HttpClient client = new DefaultHttpClient();
    HttpPost post = new HttpPost(
            "http://www.fakesite.com/myv2/iphoneview/iphone_get_details.php");

    protected String doInBackground(String... urls) {

        try {
            username = un.getText().toString();
            password = pw.getText().toString();
            List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(
                    2);
            nameValuePairs
                    .add(new BasicNameValuePair("username", username));
            nameValuePairs
                    .add(new BasicNameValuePair("password", password));
            post.setEntity(new UrlEncodedFormEntity(nameValuePairs));

            HttpResponse response = client.execute(post);
            String res = inputStream(response.getEntity().getContent())
                    .toString();
            Log.v("RESPONSE", res);

            // if username and password are valid, launch main activity
            if (res.toString() == "1") {
                Intent logIn = new Intent(getApplicationContext(),
                        Main.class);
                startActivity(logIn);
            }
            // send the user a message saying the login failed
            else {
                runOnUiThread(new Runnable() {
                    public void run() {
                        pw.setText("");
                        fail.setText(R.string.fail);
                    }
                });
            }
        } catch (Exception e) {
            e.printStackTrace();
        }

        return null;
    }

    protected void onPostExecute(String file_url) {

    }
}

我得到的只是回应

05-25 13:57:21.292: V/RESPONSE(5871): <?xml version='1.0' encoding='UTF-8'?><!DOCTYPE plist PUBLIC '-//Apple//DTD PLIST 1.0//EN' 'http://www.apple.com/DTDs/PropertyList-1.0.dtd'><plist version='1.0'><dict><key>iId</key><string>0</string><key>itemChildren</key><array></array></dict></plist>

我知道这个响应来自哪里,在iphoneview/iphone_get_details.php的最底部。问题是我不知道是不是因为

  1. 我需要将其包装在SOAP请求中
  2. 我无法使用此代码
  3. 我连接到错误的文件(怀疑)
  4. 以上所有和/或其他内容

现在常识告诉我查看当前的 iphone_get_details.php 文件,无论哪种方式,我都不会收到“1”或“true”的响应。事实上,该文件看起来像是发回了大量信息,而实际上我想要的只是“1”或“true”,以确保我与正确的登录信息正确连接。因此,如果有人有时间查看这个问题,我将不胜感激,我知道阅读量很大。

4

2 回答 2

1
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE plist PUBLIC '-//Apple//DTD PLIST 1.0//EN'http://www.apple.com/DTDs/PropertyList-1.0.dtd'>
<plist version='1.0'>
<dict>
    <key>iId</key>
    <string>0</string>
    <key>itemChildren</key>
    <array></array>
</dict>
</plist>

如果您要检查结果iIdis 0,这可能意味着iId如果用户名和密码不存在,则设置为零,因为最初ids's以 1 开头,或者可能是iId数据库中用户的0到那时你可以说数据库中匹配的用户名和密码,这意味着用户提供的密码和用户名是正确的,或者相反。

编辑:::

我在这里检查了您的链接http://pastebin.com/8vv1Vvxj并根据返回的代码和 xml,它表示默认值iId0如果没有匹配的用户名和密码,否则如果iId不是 0 表示用户名和密码正确。

php中的初始值

$vUserName      = stripslashes(trim($_REQUEST["txtUser"]));
$vPassword      = stripslashes(trim($_REQUEST["txtPass"]));

$returnFinalString      = "";
$member_id = 0;

.
.
.
//if this condition is true, meaning, the username and password matched and exist
if(mysql_num_rows($member_res)>0){
   $member_id  = $mem_row['user_id'];
}
 //and the $member_id is changed to non-zero

对于结果,您只需要解析返回的xml并获取iId值并检查它是否为0,然后您就可以确定用户是否可以登录。

于 2013-05-28T01:58:06.013 回答
1

一些提示 - 您可以考虑使用 Robospice,然后使用 Android Spring 和 SimpleXML 消息转换器将响应解析为 Java POJO。您得到的响应是 iphone plist 的 XML,在 Android 环境中使用这将是一项挑战,但并非不可能。来自服务器的响应与您的 Android 代码无关,因此您应该能够验证它与使用 Web 浏览器发送到 iPhone 应用程序的响应相同。

希望这能给你一些值得关注的地方和一些前进的动力。

于 2013-05-27T23:45:56.050 回答