标签: asp.net-mvc wcf certificate
我在开发中有一个ASP.NET MVC 2应用程序,它使用Web服务来访问安全信息(角色,权限等)。这些应用程序的用户将是公司内部用户。此Web服务安全模式当前设置为“无”。
您对我的情况推荐什么样的网络服务安全性?我应该使用证书吗?
答案 0 :(得分:0)
对于内部使用,我建议使用Windows Authentication:
<system.web> <authentication mode="Windows" /> </system.web>