douji8347 2012-04-15 23:31
浏览 58

使用“DefaultRequestDirector”和“DefualtHttpCLient”类时Android,Eclipse“找不到源”

I'm trying to create a Login/Register application that uses PHP,MySQL and SQLite to allow users to register via Android as the client. I have my PHP files on my local Apache server. One thing I have run into is an "Access Denied" message when trying to view the "index.php" file on the server. I believe the below config is correct to access my database:

<?php

/**
 * Database config variables
 */
define("DB_HOST", "localhost");
define("DB_USER", "droid");
define("DB_PASSWORD", "");
define("DB_DATABASE", "droidservice");
?>

Does receiving the "Access Denied" message mean my configuration to MySQL database is incorrect?

When I debug the Android application I continue to receive errors saying:

  • "The source attachment does not contain the source for the file DefaultRequestDirector.class"
  • "The source attachment does not contain the source for the file DefaultHttpClient.class"

I'm using a "httpPost" method to access the server and from there parse the JSON. Could the above errors be due to not having the correct http library connected, or some Eclipse config issues?

I've been using the methods primarily from the following tutorial: http://www.androidhive.info/2012/01/android-login-and-registration-with-php-mysql-and-sqlite/

  • 写回答

1条回答 默认 最新

  • dongliao4353 2012-04-19 14:34
    关注

    I am talking regarding this tutorial: http://www.androidhive.info/2012/01/android-login-and-registration-with-php-mysql-and-sqlite/

    You have done Database setup correctly. In this tutorial "Access Denied" will be shown if you don't pass correct params to index.php file.

    If you observe correctly while login along with username, password parameters you need to pass a param called tag = "login" is passed. In php (index.php) in if condition this tag is checked to detect request type. (login or register)

    Android:

    params.add(new BasicNameValuePair("tag", login_tag));
    

    Php:

    // check for tag type
        if ($tag == 'login') {
    

    If you pass the tag parameter you won't get Access Denied message and your application works perfectly.

    Also while registration you need to pass

    Android:

    params.add(new BasicNameValuePair("tag", register_tag));
    
    评论

报告相同问题?

悬赏问题

  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?