如何从黑莓模拟器通过http请求访问本地主机网站?
我正在开发一个黑莓应用程序,我想从我的本地主机(本地计算机)访问网站。我正在黑莓模拟器 8350 上运行该应用程序。
从我的代码中,我可以浏览互联网上的任何网站请求,并且我收到了响应。
当我尝试将 url 指定为 localhost:8080/portal/index.php 时,它向我显示一条错误消息
HTTP Error 404 描述 请求的资源 (/portal/index.php) 不可用。
我正在 Windows 上的端口 8080 上运行我的 apache 网络服务器。
如何从黑莓模拟器访问我的本地机器网站?
请帮助和指导我。 谢谢 新航
I am developing a blackberry application and i wanted to access the websites from my localhost( local machine). I am running the application on blackberry simulator 8350.
From my code i can browse request any website from internet and i am getting the response.
When i am trying to give the url as localhost:8080/portal/index.php, its displaying me a erro message
HTTP Error 404
description The requested resource (/portal/index.php) is not available.
I am running my apache webserver on port 8080 over windows.
How can i access my local machine website from blackberry simulator?
Please help and guide me.
Thanks
SIA
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
localhost
始终指向执行 DNS 解析的计算机。在你的情况下,这将是黑莓模拟器。要让模拟器向您的开发计算机发送 HTTP 请求,您需要指定该计算机的 DNS 名称或 IP 地址。确切的名称取决于模拟器的网络配置和本地网络。
localhost
always points to the machine on which the DNS resolution is performed. In your case that would be the BlackBerry simulator.To get the simulator to send HTTP request to your dev machine, you need to specify the DNS name or the IP address of that machine. The exact name depends on what your the network configuration of the simulator and your local network is.
问题解决了。
在我的本地计算机上,我在端口 8080 上运行 apache,并且 MDS 服务正在同一端口上运行和绑定。
只需更改本地计算机上的 Apache 端口即可帮助我从 Blackberry Simulator 连接到本地计算机和互联网。
@Franci,谢谢你的想法。
The problem is solved.
On My local machine i was running apache on port 8080 and MDS Service was running and binding on the same port.
Simply by changing the port for Apache on my local machine helped me to connect to my local machine and internet from Blackberry Simulator.
@Franci, thanks for your idea.