iOS:会话+更改 IP 地址;在客户端如何处理?
在我的 iPhone/iPad 应用程序中,我必须处理一个根据 IP 地址确定会话(不仅如此,而且还)的服务器。现在的问题是,对于某些提供商,手机的 IP 地址会在几秒钟后发生变化,因此服务器无法再识别会话。
有什么方法可以在客户端处理此问题并“帮助”服务器在不更改配置的情况下保持不变?或者只能在服务器端实现?
我没有使用库(例如ASIHTTP请求),而只使用NSURLConnection。
in my iPhone/iPad-app I've got to deal with a server which determines sessions (not only, but also) according to the IP-address. The problem now is that with some providers, the phone's IP address changes after a few seconds and therefore the server can't recognize the session any more.
Is there any way to handle this on the client and "help" the server to stay unchanged without configuration changes? Or is it only possible serverside?
I'm not using a library (ASIHTTP-request, e.g.), but only NSURLConnection.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,客户端无能为力。您必须将服务器配置为仅接受会话 ID。
Nope, nothing you can do client side. You will have to configure the server to accept session ID only.