Android Question Read webpage by ip address

rosippc64a

Active Member
Licensed User
Longtime User
Hi All!
I have a small code:
B4X:
        Dim j As HttpJob
        j.Initialize("", Me)
        j.Download(url) 
        Wait For (j) JobDone(j As HttpJob)
        If j.Success Then
 ...
Some hours of working with different webpages there is an error, what says that it can't get IP address to the webpage, so it can't download the content of webpage. There is a lot of webpage, and when some fails, maybe other works. When I try a failed webpage on a pc, there is no error at all, so not a global network error happened. I restart the android device, and all goes well, even previously failed webpage also.
I stored IP addresses after all succeed download, so I know the right IP of failed webpage.
i.e: http://travellina.hu/feed/
IP: 92.43.203.181
Of course, the http://92.43.203.181 doesn't work, but can I access the webpage by its IP address?
thanks in advance
Steven
 
Top