I can't imagin that there are no other people on the forum with same problem. Here's my code.
In my activity :
Sub Blabla
Dim sJ As HttpJob
Dim sReq As String
sReq = Main.pHandler.soGetRequest("***", "***")
sJ.Initialize("sJ", Me)
sJ.PostString(Main.ui, sReq)
end Sub
Sub JobDone(Job As HttpJob)
If Job.JobName = "sJ" Then
If Job.Success Then
Main.pHandler.swResponse(Job.GetString)
End If
END Sub