一个会话中的多个请求 (TidHTTP)

发布于 2024-10-21 09:11:22 字数 219 浏览 4 评论 0原文

我有一个通过 http 连接的小设备。我发送一些 xml,然后等待答案。

http:tidhttp;
XMLData:TStringStream;

http.Post(DeviceUrl,XMLData);

Post方法发送数据并等待回复(也是xml)。当这种情况发生时,会议就结束了,对吗?但我需要在该会话中发送更多数据。

提前致谢!

i have a little device which i connect to over http. I send some xml and then wait for the answer.

http:tidhttp;
XMLData:TStringStream;

http.Post(DeviceUrl,XMLData);

Post method sends the data and waits for the reply(also xml). When that happens session is over, right? But i need to send more data within that session.

Thanks in advance!

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

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

发布评论

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

评论(1

衣神在巴黎 2024-10-28 09:11:22

会话在服务器端进行跟踪。 TIdHTTP 是一个客户端组件。 HTTP 是无状态协议,不需要单个会话中请求之间的持久连接。大多数服务器使用 cookie 或 URL 查询字符串将一个请求的会话信息保留到另一个请求,这两者都与 TIdHTTP 配合使用。

Sessions are kept track of on the server end. TIdHTTP is a client component. HTTP is a stateless protocol, and does not require persistent connections between requests within a single session. Most servers persist session information from one request to another using either cookies or URL query strings, both of which work with TIdHTTP.

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