Windows Phone: possible to open URLs with :port?

时间秒杀一切 提交于 2019-12-10 13:38:57

问题


I am trying to open a node.js application on my Nokia Lumia 820 (WP8). When I enter the address in the browser (mydomain.net:8088) I get an error:

"Internet Explorer Mobile doesn't support this type of address and can't display this page".

Is there a workaround or something to get WP8 opening that URL?! I don't really want to use a reverse proxy since I'm trying to test a websocket application running on that port.


回答1:


(As suggested by Luke Puplett, here is my answer)

My assumption is that you simply forgot to specify the protocol. So instead of typing

mydomain.net:8088

I would recommend to try using

http://mydomain.net:8088

So that the browser knows how to interpret the : before the "8088" (i.e. as a port separator, not as a protocol separator).



来源:https://stackoverflow.com/questions/14256957/windows-phone-possible-to-open-urls-with-port

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!