如何在 xcode 中关闭并重新打开 http post 会话?

发布于 2025-01-08 07:15:52 字数 146 浏览 0 评论 0原文

我们正在从 Xcode 项目将 http posts 发送到 asp URL。由于我们只能“每个会话”发送一个帖子,因此我们需要能够在每个帖子之后关闭 http 连接,然后重新打开以发送另一个帖子。

我们如何关闭 http 帖子,然后重新打开它以发送另一个帖子?

We are sending http posts to an asp URL from our Xcode project. Since we are only able to send one post "per session" we need to be able to close the http connection after each post then reopen to send another.

How can we close the http post and then reopen it to send another?

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

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

发布评论

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

评论(1

谜兔 2025-01-15 07:15:52

处理帖子后,在您的 asp 代码中使用 Session.Abandon()。这样,会话将在此请求后关闭,并且不会停留 20 分钟(或设置为默认会话持续时间的任何时间)

Use Session.Abandon() in your asp code after processing the post. This way the session will be closed after this request and not linger for 20 minutes( or whatever is set as default session duration)

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