Visual studio Debug调试webservice 使用ip代替localhostt配置IIS Express

话说好久没写博客了。

遇到的问题:

要调试一个安卓程序,该程序需要与webservice通信,手机和电脑在同一个局域网,电脑上用visual studio Debug运行一个webservice,该服务是用IIS Express运行起来的,但是运行起来后地址栏的地址是http://localhost:44366/xxx.asmx,电脑的ip是192.168.0.6,用手机浏览器访问http://192.168.0.6:44366/xxx.asmx,却提示HTTP 400 错误,The request hostname is invalid. 导致无法调试这个安卓程序。

解决办法:

打开IIS Express的配置文件 C:\Users\Administrator\Documents\IISExpress\config\applicationhost.config,找到 site 节点,修改为:

xml 复制代码
<site name="WebSite1" id="1" serverAutoStart="true">
        <application path="/">
            <virtualDirectory path="/" physicalPath="%IIS_SITES_HOME%\WebSite1" />
        </application>
        <bindings>
            <binding protocol="http" bindingInformation="*:44366:192.168.0.6" />
        </bindings>
  </site>

打开visual studio解决方案目录下的.vs目录,找到项目的applicationhost.config文件,例如:C:\MyStudy\Homework\WebServiceDemo\.vs\WebServiceSln\config\applicationhost.config 其中WebServicecSln就是你的解决方案的名称,找到 site 节点,修改为:

xml 复制代码
<site name="WebServicecOne" id="2">
        <application path="/" applicationPool="Clr4IntegratedAppPool">
            <virtualDirectory path="/" physicalPath="C:\MyStudy\Homework\XiBang\xi-bang-tec-pdaapi\PDAAPICrack" />
        </application>
        <bindings>
            <binding protocol="https" bindingInformation="*:44366:192.168.0.6" />
            <binding protocol="http" bindingInformation="*:44366:192.168.0.6" />
        </bindings>
 </site>

以上 WebServiceOne 是项目名称,修改完毕后,Debug调试,手机浏览器就能访问 http://192.18.0.6:44366/xxx.asmx 了。

记录一下:华为 mate60 用原厂数据线,在开发者选项开启debug调试后,连接电脑选择文件传输,但 android studio 中不显示手机设备也搜索不到手机设备,后来下载安装了华为的 HiSuite 后,再插上数据线手机上就弹出了一个"允许 USB 调试"的弹框,选择确认后,android studio 上就自动出现了当前的手机设备。

相关推荐
A__tao2 天前
SQL 转 PHP Eloquent、Doctrine ORM, 支持多数据库
android·ide·android studio
水w2 天前
【Android Studio】如何卸载干净(详细步骤)
android·开发语言·android studio·activity
Yang-Never2 天前
Open GL ES ->纹理贴图,顶点坐标和纹理坐标组合到同一个顶点缓冲对象中进行解析
android·java·开发语言·android studio·贴图
QING6182 天前
Android 之 Logcat 的使用技巧 —— 新手指南
app·android studio
EQ-雪梨蛋花汤3 天前
【工具】在 Visual Studio 中使用 Dotfuscator 对“C# 类库(DLL)或应用程序(EXE)”进行混淆
数据库·ide·visual studio
MessiGo4 天前
Visual Studio | 性能探测器
ide·visual studio
avi91115 天前
Unity打包崩溃SRP-URP-管线的问题:Shader::SRPBatcherInfoSetup()
unity·android studio·调试·crash·崩溃
Yang-Never6 天前
Open GL ES ->模型矩阵、视图矩阵、投影矩阵等变换矩阵数学推导以及方法接口说明
android·矩阵·kotlin·android studio
千里马学框架6 天前
android studio调试aosp手机userdebug版本无法查看局部变量和参数问题如何解决?
android·智能手机·车载系统·android studio·debug·调试·系统开发
愤怒的代码6 天前
Android 11 SystemUI 导入 Android studio 编译打包过程
android·android studio