English 中文(简体)
电话网络服务器
原标题:ping to web server from iphone
  • 时间:2010-03-25 04:06:44
  •  标签:
  • iphone

我正在开发一个复制件,需要从网络服务器下载一些数据。 因此,需要首先向网络服务器投放,以检查互联网连接后是否提供这一服务。 我使用以下代码检查服务器的有无情况。

BOOL success = NO;
const char *host_name = [@"http://192.168.1.7:8080/TestWeb/webresources/"
                             cStringUsingEncoding:NSASCIIStringEncoding];

SCNetworkReachabilityRef reachability = SCNetworkReachabilityCreateWithName(NULL,
                                                                                host_name);
SCNetworkReachabilityFlags flags;
success = SCNetworkReachabilityGetFlags(reachability, &flags);
BOOL isAvailable = success && (flags & kSCNetworkFlagsReachable) && !(flags & kSCNetworkFlagsConnectionRequired);
return isAvailable;

我的服务器在当地上载。 但是,该法典总是退回一种无效的结果,但如果给像Google.com这样的一些令人振奋的地点,它就会正确发挥作用。 让我知道,我是错了。

问题回答

我将利用NSURLConnection制造服务器。 如果无法联系,你将获得代议办法的回复。

Check out the Apple documentation, they have a good code example: link text





相关问题
Code sign Error

I have created a new iPhone application.I have two mach machines. I have created the certificate for running application in iPhone in one mac. Can I use the other mac for running the application in ...

ABPersonViewController Usage for displaying contact

Created a View based Project and added a contact to the AddressBook using ABAddressBookRef,ABRecordRef now i wanted to display the added contact ABPersonViewController is the method but how to use in ...

将音频Clips从Peter改为服务器

我不禁要问,那里是否有任何实例表明从Peit向服务器发送音响。 I m不关心电话或SIP风格的解决办法,只是一个简单的袖珍流程......

• 如何将搜查线重新定位?

我正试图把图像放在搜索条左边。 但是,问题始于这里,搜索条线不能重新布署。

热门标签