iOS Question Unexpected event (missing RaisesSynchronousEvents): AFTER_SLEEP

ekhaza

Member
Licensed User
Longtime User
Hai, i got this error when i call http

anyone can help me?

i try this

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

#ATSEnabled: False
 

Attachments

  • Screenshot 2024-12-03 073428.png
    Screenshot 2024-12-03 073428.png
    35.9 KB · Views: 21
  • Screenshot 2024-12-03 073719.png
    Screenshot 2024-12-03 073719.png
    9.6 KB · Views: 24

walterf25

Expert
Licensed User
Longtime User
Hai, i got this error when i call http

anyone can help me?

i try this

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

#ATSEnabled: False
Not sure if it's related to the same issue but have you seen this thread here?
 
Upvote 0
Top