.Net Remoting 在 Windows 7 中不工作
我们有一个服务器应用程序(使用 .Net 1.1、C# 开发),它监听端口 8086 和客户端应用程序,在开始之前将使用远程处理与该服务器握手。
该应用程序在几乎所有环境中都运行良好 - Windows 2000/2003/2008/XP/Vista。
现在我们面临着 Windows 7 的问题。
当我们启动服务器时,它会打开端口并侦听客户端,但是当尝试从在其他操作系统中运行的客户端发送请求时,它会给出一条消息:服务器未运行。
我们禁用了代理,为代理提供了例外,但一切都是徒劳的。经过进一步分析,我们发现系统具有多种连接(LAN、蓝牙和WIFI)。
当我们使用 netstat –a 检查 TCP 端口时,它显示本地地址为 0.0.0.0:8086。所以我们禁用/删除了蓝牙& WiFi选项并再次尝试,然后netstat也显示LocalAddress 0.0.0.0:8086。
在这种情况下如何继续前进?
提前致谢。
We have a server application (developed using .Net 1.1, C#) which listen the port 8086 and the client application, before starting will handshake with this server using remoting.
The application is working fine in almost all environments - Windows 2000/2003/2008/XP/Vista.
Now we are facing an issue with Windows 7.
When we are staring the server, it’s opening the port and will be listening to clients, but when try to send a request from a client who is running in other OS, it gives a message that server is not running.
We disabled the proxy, gave the exceptions for proxy but all went in vain. On further analysis we found that the system is having multiple connectivity (LAN, Bluetooth &WIFI).
When we checked the TCP port using netstat –a it showed the Local Address as 0.0.0.0:8086. So we disabled/removed the Bluetooth & WiFi option and tried again then also netstat is showing LocalAddress 0.0.0.0:8086.
How to go ahead in this situation?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Microsoft 网络监视器或 Wireshark 进行网络捕获,以更好地了解底层 TCP/IP 数据包。这可以很容易地显示发生了什么。
Do a network capture using Microsoft Network Monitor or Wireshark to better understand the underlying TCP/IP packets. That can show what's up easily.