I have the error (screenshot below) using the URLConnexionGET example.
So, I add:
Sub ReceivingProgressed(bytesReceived As Int64, totalBytes As Int64, newData As String) Handles ReceivingProgressed
If bytesReceived = totalBytes Then
Me.Disconnect
Else
System.DebugLog Str(bytesReceived) + " bytes received on a total of " + Str(totalBytes) + " bytes."
End If
End Sub
In the WebConnexion Class (URLConnection). But I continue to get that message.
A solution ?
5 posts - 4 participants