我有一个运行良好的 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 客户端永远不会连接。我究竟做错了什么?