iPad 到 WCF 服务身份验证

发布于 2024-11-02 06:14:59 字数 215 浏览 2 评论 0原文

我目前正在开发一个项目,该项目有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

等风来 2024-11-09 06:14:59

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 a ServiceAuthorizationManager to determine who they are and what privileges that they have. Might be worth looking into.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文