Here is the code:
Same code runs without any problem within B4XPages but itdoesn't using Console (Non-UI).
Does it makes any sense?
B4X:
Dim j As HttpJob
j.Initialize("", Me)
j.Download("https://www.google.com")
Wait For (j) JobDone(j As HttpJob)
If j.Success Then
Log(j.GetString)
End If
j.Release
Same code runs without any problem within B4XPages but itdoesn't using Console (Non-UI).
Does it makes any sense?