1

我有一个运行良好的 java REST 服务,我正在尝试通过 Android 客户端访问它,但从未建立连接。这是我的清单:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.ipn.escom.clientRest.activity"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="7" />
    <uses-permission android:name="android.permission.INTERNET"/>

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:name="com.mx.ipn.escom.clientRest.activity.ClientRestActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

这是我的客户端类,它试图访问我的服务TemaClient。这是我的 logcat 输出LogCat,我不明白为什么从未建立连接。

我的 REST 服务位于 Windows XP 计算机中,我用来访问它的 IP 地址是 ipconfig 显示给我的,如果我将相同的 IP 放在 Web 浏览器上,我会收到响应,但 Android 客户端永远不会连接。我究竟做错了什么?

4

2 回答 2

2

它接缝你正在访问代理后面的网络,使用代理后面的网络启动模拟器

emulator -avd avdname -http-proxy http://192.168.1.1:8080

我假设 avdname 是 avdname 并且代理网关 ip 是 192.168.1.1

于 2012-08-14T04:24:37.490 回答
0

修复了这个问题,我必须确保我的 Android 设备连接到与我的 REST 服务相同的网络。

于 2012-08-14T04:44:04.507 回答