一个会话中的多个请求 (TidHTTP)
我有一个通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
会话在服务器端进行跟踪。
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 withTIdHTTP
.