Delphi XE2 DataSnap - 访问服务器方法模块中的 REST 连接属性
我正在构建一个 XE2 DataSnap 服务器,它将为来自 REST 客户端的连接提供服务。我的 DSServerClass LifeCycle 属性设置为“调用”。 REST 连接属性将包括用户名和密码,这些属性通过 DSAuthenticationManager UserAuthenticate() 事件进行处理。我需要知道的是如何在服务器方法类中访问用户名和密码?我希望能够知道哪个 REST 用户名/密码启动了我的服务器类的对象实例。
I'm building an XE2 DataSnap server which will serve connections from REST clients. My DSServerClass LifeCycle property is set to 'Invocation'. The REST connection properties will include username and password, which are handled through the DSAuthenticationManager UserAuthenticate() event. What I need to know is how can I access the username and password within the server methods class? I want to be able to know which REST username/password launched the object instance of my server class.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 DSServerClass.OnPrepare 来实现:
没有可用的密码。
不要为此使用服务器生命周期!
You can use DSServerClass.OnPrepare for that:
There's is no password available.
Don't use Server LifeCycle for this!