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));
    
    评论

报告相同问题?

悬赏问题

  • ¥15 js调用html页面需要隐藏某个按钮
  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3
  • ¥15 牛顿斯科特系数表表示
  • ¥15 arduino 步进电机
  • ¥20 程序进入HardFault_Handler
  • ¥15 oracle集群安装出bug
  • ¥15 关于#python#的问题:自动化测试