RemObjects SDK - 连接到服务器时如何从服务器检索客户端 GUID?

发布于 2024-12-07 23:48:46 字数 68 浏览 2 评论 0原文

有人知道在 RemObjects SDK 连接到服务器时如何检索客户端 GUID 吗? (使用SuperTCP/IP协议)

Does somebody know how to retrieve client GUID when connecting to server in RemObjects SDK ?
(using SuperTCP/IP protocol)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

为你拒绝所有暧昧 2024-12-14 23:48:46

要获取服务器上当前连接的会话 ID,请使用 SessionID 属性

SessionIDString := GUIDToString(Session.SessionID);

:对象在 uROSessions 单元中找到。

要获取客户端上的会话 ID,请使用 ClientID 属性:

SessionIDString := GUIDToString(RemoteService.Message.ClientID);

RemoteService 是您连接的 TRORemoteService 对象。

To get the session ID of the current connection on the server, use SessionID property:

SessionIDString := GUIDToString(Session.SessionID);

The Session object is found in the uROSessions unit.

To get the session ID on the client, use ClientID property:

SessionIDString := GUIDToString(RemoteService.Message.ClientID);

RemoteService is your connection's TRORemoteService object.

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