本文介绍了通过 Internet 进行服务器到服务器通信的 WCF 安全最佳选择的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当一些 ASP.NET 应用程序,都在专用服务器上,需要沟通哪个安全选项是合适的?

When some ASP.NET applications, all on dedicated server, need to communicate which security option is appropriate ?

传输的数据量小;SSL、X509 证书或任何选项都可用.

Data to be transferred is small in amount; SSL, X509 certificate or any option is available.

服务应该在应用程序服务器之间保持私有.新服务器应该很容易添加到集群中.

The service should remain private between application servers. New server should be added to the cluster easily.

所有服务器都通过互联网进行通信(没有 VPN,没有安全的物理连接......)

All servers are communicating over internet (no VPN, no secure physical connection...)

推荐答案

对于您的特定场景,我会说 使用证书身份验证的传输安全

For your particular scenario I would say Transport Security with Certificate Authentication

但是,仔细阅读不同的方案和选项可能是个好主意 可用.

However, it might be a good idea to peruse the different scenarios and options available.

这篇关于通过 Internet 进行服务器到服务器通信的 WCF 安全最佳选择的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 03:46