如何在 xcode 中关闭并重新打开 http post 会话?
我们正在从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
处理帖子后,在您的 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)