Thanks Erel, I appreciate the help and your contributions.Now it can also show the external ip address:
'Does Not Work'
job.Download(http://api.exip.org/?call=ip)
'This One Works"
job.Download(http://api.externalip.net/?call=ip)
Erel,
I know you have no control over this but is api.exip.org working any more or changed?
When I try to get the external IP I get Error:Forbidden.
So I changed it to the new one and now its working.
B4X:'Does Not Work' job.Download(http://api.exip.org/?call=ip) 'This One Works" job.Download(http://api.externalip.net/?call=ip)
Thanks,
Sub btnRemote_Action
progress.Visible = True
Dim job As HttpJob
job.Initialize("exip", Me)
job.Download("http://ip.telize.com/")
End Sub