检查 iPhone 中的网络服务器是否启动或关闭
我这里需要一点帮助!
如果字符串“url”包含 Web 服务器的地址,我如何检查我的 Web 服务器是启动还是关闭? 我有一些代码来检查互联网连接。但即使我们有互联网连接,我们如何知道服务器是否已启动?有更好的方法吗?
谢谢
I need a little help here!!!
If string 'url' contains the address to web server, how do i check whether my web server is up or down?
I got some codes to check Internet connectivity. But even if we have internet connectivity how do we know server is up or not? Is there any better way to do that?
Thank You
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以执行一个请求,
现在如果您实现(以及所有其他委托方法),
您将获得成功或错误。
You could do a request,
Now if you implement (along with all other delegate methods)
you will get either succes or error.
发布请求,获取响应。如果您收到响应,则服务器已启动,如果没有响应,则服务器已关闭。
Post a request, get the response. If you get a response, the server is up, if not its down..