WCF休息安全问题
我有 WCF REST 服务。现在的问题是如何保护我的 REST 服务,以便没有人可以使用/调用它?调用它的最佳方法是什么(例如使用jquery,或从代码隐藏)?客户端应用程序基于 MVC 3。
请帮助和建议
非常感谢
I have a WCF REST service. Now the question is how can I secure my REST service so no one can use/call it? and what would be the best way to call it (e.g. using jquery, or from code behind)? the client application is on MVC 3.
please help and advise
Many Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定您是否仍在寻找解决方案。但我使用 WCFRESTContrib 作为我的项目安全功能等的基础。在整个服务上或在每个服务方法的单独基础上设置基本身份验证非常容易。他们在此处提供了完整的说明。如果您不决定使用该项目,它至少应该让您很好地了解它如何与 WCF REST api 配合使用。
Not sure if you're still looking for a solution. But I used WCFRESTContrib as a basis for my project for the security features, among other things. It's very easy to setup Basic Authentication on the entire service, or on an individual basis for each service method. They have a full description on it here. If you don't decide to use the project, it should at least give you a good understanding on how it works with WCF REST api's.