开发者

Stop httputils service in basic4android

开发者 https://www.devze.com 2023-04-13 05:46 出处:网络
I am using basic4android and I made an application that uses htt开发者_如何学运维putils services. Sometimes a remote error occurs (possible server overload or limited internet connection) and the appl

I am using basic4android and I made an application that uses htt开发者_如何学运维putils services. Sometimes a remote error occurs (possible server overload or limited internet connection) and the application exits with the error message box. The activity closes but httputils service is still running. While I reopen the activity new error occurs, because of the unfinished job of httputils. Everything is OK only if I choose to stop the activity in the second error. Is there any way to determine if the httputils service is running by a previous instance of my app? Or better, a way to try to stop this service either its running or not.


HttpUtils errors should not cause your program to exit. You should check IsSuccess to make sure that the call succeeded or not.

You can stop the service from running by calling StopService(HttpUtilsService).


Public Sub StationTransfer_Click

    Dim job As HttpJob
    job.Initialize("MyJob", Me)

    Dim URL As String="https://www.yourserver.com/myjob.asmx/GetData?parameter1=abc"

    job.Download(URL)

    ProgressDialogShow2("Getting data From Server...", True)

End Sub

Sub JobDone(Job As HttpJob)
    Select Job.JobName
        Case "MyJob"
            HandleMyJob(Job)

    End Select
    Job.Release

End Sub
Sub HandleMyJob(Job As HttpJob)

    If Job.Success = False Then
        ToastMessageShow("Error downloading Data", True)
        ProgressDialogHide
        Return
    End If

   ....
end Sub

if there is an httpjob error you catch it in the handler function by looking at the status. if the status is not success than you catch it and display a message.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号