I tried using
Dim oHttpClient.initialize("Ping")
Dim oRequest as HttpRequest
oRequest.InitializeGet("http://www.abc.com/hello.html")
orequest.timeout=1000
if oHttpClient.execute(oRequest,1)=true then
bRetVal=true
end if
I turned off my wifi but oHttpClient is returning true instead of false.
My problem:
I need to know if the wifi is available.
Dim oHttpClient.initialize("Ping")
Dim oRequest as HttpRequest
oRequest.InitializeGet("http://www.abc.com/hello.html")
orequest.timeout=1000
if oHttpClient.execute(oRequest,1)=true then
bRetVal=true
end if
I turned off my wifi but oHttpClient is returning true instead of false.
My problem:
I need to know if the wifi is available.