Is it possible that the following function from the WaitFor Tutorial does not work anymore for 2 days?
The JobDone event never raise.
I also see this problem with my big project. Yesterday a customer said, a long time proved function doesnt work anymore after an update (This update had nothing to do with the websocket).
Today i saw in BJ4 that my jOkHttpUtils2_NONUI (Version: 2.62) changed to:
jOkHttpUtils2_NONUI (Version: 2.80) - DEPRECATED - use jOkHttpUtils2 instead
I don't know how long it's been, but I just noticed it today.
Anyway, without touching any related code to download things in websocket module, it doesnt work anymore since yesterday.
I dont think there is any Autoupdates in B4J?
The JobDone event never raise.
B4X:
Private Sub WebSocket_Connected (WebSocket1 As WebSocket)
Log("Connected")
ws = WebSocket1
Download
End Sub
Sub Download
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("Success")
End If
j.Release
End Sub
I also see this problem with my big project. Yesterday a customer said, a long time proved function doesnt work anymore after an update (This update had nothing to do with the websocket).
Today i saw in BJ4 that my jOkHttpUtils2_NONUI (Version: 2.62) changed to:
jOkHttpUtils2_NONUI (Version: 2.80) - DEPRECATED - use jOkHttpUtils2 instead
I don't know how long it's been, but I just noticed it today.
Anyway, without touching any related code to download things in websocket module, it doesnt work anymore since yesterday.
I dont think there is any Autoupdates in B4J?