Restful 上的表单身份验证
该主题的场景......
第一个用户从移动应用程序输入他的凭据,我以哈希代码格式获取数据并点击 RESTful Web 服务。
现在我需要解密数据并将数据传递到 dll 文件,其中所有用户名和密码被存储...
从dll文件中我得到凭据是否被授权...
现在的问题是我们可以在整个场景中使用表单身份验证...如果我们使用什么是优点和缺点鸡眼???????
Scenario of the topic....
First user enters his credentials from a mobile app and i get the data in hash code format and hit the RESTful webservice..
Now i need to decrypt the data and pass the data to a dll file where all the username and passwords are stored...
From the dll file i get whether credentials r authorized or not....
Now the questions is can we use the forms authentication for this whole scenario...If we use wht are the pros and corns??????.....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能想要使用自定义用户名密码验证器来调用自定义 DLL 进行身份验证。表单身份验证似乎不太合适。
http://msdn.microsoft.com/en-us/library/aa702565.aspx
确保您的自定义身份验证 DLL 是线程安全的,否则一旦多个并发请求进入服务,您可能会遇到问题。
You probably want to use a custom username password validator that calls your custom DLL for authentication. Forms authentication doesn't seem like a fit.
http://msdn.microsoft.com/en-us/library/aa702565.aspx
Make sure your custom authentication DLL is thread safe, otherwise you might run into problems once you get multiple concurrent requests coming into the service.