gpt4 book ai didi

android - 为什么无法将我的 Android REST 客户端连接到我的 REST 服务?

转载 作者:行者123 更新时间:2023-11-29 22:01:01 25 4
gpt4 key购买 nike

我有一个运行良好的 Java REST 服务,我试图通过 Android 客户端访问它,但从未建立连接。这是我的 list :

<?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 地址,如果我将相同的 IP 放在网络浏览器上,我会得到响应,但 Android客户端永远不会建立连接。我做错了什么?

最佳答案

它表明您正在访问代理后面的网络,使用代理启动模拟器后面的网络

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

我假设 avdname 是 avdname,代理网关 ip 是 192.168.1.1

关于android - 为什么无法将我的 Android REST 客户端连接到我的 REST 服务?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11945693/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com