I´m tryng find the server using httpjob. By IP is working fine.
Why not using name server?
Why not using name server?
B4X:
Dim ServerUrl1, ServerUrl2
ServerUrl1 = "http://192.168.0.100/base.asp"
ServerUrl2 = "http://Intranet/base.asp"
Dim j As HttpJob
'HttpJob
j.Initialize("",Me)
j.GetRequest.Timeout = 5000
j.Download(ServerUrl1)
Wait For (j) JobDone(j As HttpJob)