tutto fila liscio ma non riesco a capire dove sbaglio !!
ho visto che Response.GetString("UTF8") va per deprecato, ma il suo sucessore qualè.
Chi mi da un aiuto ...
ho visto che Response.GetString("UTF8") va per deprecato, ma il suo sucessore qualè.
B4X:
Sub xhttpsocket_ResponseSuccess(Response As HttpResponse, TaskId As Int)
ProgressDialogHide
Dim msg As String
msg = "Connecting to server ..."
Try
If Response <> Null Then
msg = msg & CRLF & Response.GetString("UTF8")
End If
ToastMessageShow (msg, True)
Catch
msg = "Error Response"
ToastMessageShow (msg, True)
End Try
End Sub
Chi mi da un aiuto ...