在Windows Server 2008上机器
我在1049端口运行基于java的Web服务。
我能够在开发计算机上使用URL 访问服务
但是当我部署服务时在公共服务器上从公共URL访问服务,如http://mydomain.com:1049/serviceName?method=getFile
我得到404未找到错误。
我在服务器上安装了iis,
并且能够访问我的默认asp.net站点 []
但是要求 []失败。
我想知道是否有可能将请求重定向到虚拟目录到1049端口。解决方案
确保在您尝试连接的计算机与服务器本身之间的任何防火墙/路由器上打开正确的端口。
如果可以' 'telnet mydomain.com 1049端口被阻塞了。
Hi,
On windows server 2008 machine
I have a java based web service running on port 1049.
I am able to access the service using URL http://localhost:1049/ on the development machine
but when I deployed the service on the public server to access the service from public url like http://mydomain.com:1049/serviceName?method=getFile
I get 404 not found error.
I have iis installed on the server,
and able to access my default asp.net site http://mydomain.com/[^]
however call to http://mydomain.com:1049[^] fails.
I wonder whether it is possible to redirect the requests coming to a virtual directory to the 1049 port.
这篇关于IIS7在不同的端口上运行两个公共站点(asp.net和java)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!