iPad 到 WCF 服务身份验证
我目前正在开发一个项目,该项目有一个 iPad 应用程序,该应用程序使用 JSON 调用 IIS 托管的 WCF 服务。要求之一是WCF服务需要使用IIS基本身份验证来登录。一旦用户通过数据库的身份验证,就需要为 cookie 设置一些值,以便返回到其他 WCF 函数(类似于 asp.net 会话变量)。这可以通过 WCF 并使用 cookie 来保存状态吗?如果没有,有什么推荐的方法吗?
谢谢。
I am currently working on a project that has an iPad application that uses JSON to call WCF services hosted with IIS. One of the requirements is that the WCF services needs to use IIS Basic Authentication to login. Once the user has been authenticated from the database, a few values need to set to a cookie for return trips to other WCF functions (similar to asp.net session variables). Is this possible with WCF and using cookies to hold state? If not, any recommended method?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
WCF 绝对支持基本身份验证。 http://msdn.microsoft.com/en-us/library/ms733775.aspx 有这方面的详细信息。然后,WCF 将在所有通过的消息中识别该用户。
如果您想实现客户授权机制,则需要实现
ServiceAuthorizationManager
。我最近做了类似的事情,我的 iOS 客户端使用 OAuth 来对我们的服务进行身份验证。我实现了一个 ServiceAuthorizationManager 来确定他们是谁以及他们拥有什么权限。可能值得研究一下。WCF absolutely supports basic authentication. http://msdn.microsoft.com/en-us/library/ms733775.aspx has details on this. WCF will then identify this user on all messages that come through.
If you want to implement a customer authorization mechanic, you will need to implement
ServiceAuthorizationManager
. I've recently done something similar where I have iOS clients that use OAuth to authenticate with our services. I have this implemented aServiceAuthorizationManager
to determine who they are and what privileges that they have. Might be worth looking into.