以下 WCF 文章中的基本概念
我对这个特定的博客文章有点困惑...... http://bartdesmet.net/blogs/bart/archive/ 2006/09/13/4417.aspx
他的调优概念是什么?我的意思是他如何能够从 WCF 服务器通过 HTTP 访问 WCF 客户端上的端口 110?
我不明白那部分。
谢谢。
编辑:我了解他正在 WCF 服务器上创建 pop3 客户端,并在 WCF 客户端上创建 pop3 服务器。但是,他是如何完成VPN部分的呢? 110没有NAT?如何?
I am a bit confused with this paticular blog post here...
http://bartdesmet.net/blogs/bart/archive/2006/09/13/4417.aspx
What is his concept of tunelling? I mean how is he able to access port 110 on WCF client through HTTP from the WCF server?
I don't get that part.
Thanks.
Edit : I understand the fact that he's creating a pop3 client on the WCF server and pop3 server on the WCF client. But,how is he accomplishing the VPN part? 110 without NAT? How?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
他所做的就是创建一个实现 pop3 协议的 WCF 客户端和一个也实现 pop3 协议的 WCF 服务器。 WCF 客户端可以使用大多数防火墙允许的普通旧式 HTTP 与服务器进行通信。所以现在它的工作方式是他的邮件客户端在本地主机上使用 pop3 与 WCF 客户端进行通信,这样无论他所在网络的防火墙设置如何,它都可以访问端口 110。 WCF 客户端使用 HTTP 与 WCF 服务器进行通信。 WCF 服务器(位于允许访问端口 110 的网络上)与他尝试使用 POP3 获取邮件的原始 pop3 服务器进行通信。不涉及 NAT 或 VPN。如果不清楚,请添加评论,我会尝试扩展。
What he has done is created a WCF client that implements the pop3 protocol and a WCF server that also implements the pop3 protocol. The WCF client can communicate to the server using plain old HTTP which is allowed by most firewals. So now the way it works is his mail client talks to the WCF client using pop3 both on localhost so that it can access port110 regardless of the firewall settings of the network he is on. The WCF client talks to the WCF server using HTTP. The WCF server (which is on a network that allows accessing port 110) talks to the original pop3 server he is trying to get mail from using POP3. There is no NAT or VPN involved. If it's not clear add a comment and I will try to expand.