Jump to content

Recommended Posts

Posted

Hello,

 

I use WinHttp.au3 to connect to a website and gater information.

Here is the code : 

#include-once

Global Const $HTTP_STATUS_OK = 200

Func HttpPost($sURL, $sData = "")
#MsgBox(1, 'Post to server:',"1")
Local $oHTTP = ObjCreate("WinHttp.WinHttpRequest.5.1")
#MsgBox(1, 'Post to server:',"2")
$oHTTP.Open("POST", $sURL, False)
If (@error) Then Return SetError(1, 0, 0)
#MsgBox(1, 'Post to server:',"3")
$oHTTP.SetRequestHeader("Content-Type", "application/x-www-form-urlencoded")
#MsgBox(1, 'Post to server:',"4")
$oHTTP.Send($sData)
#MsgBox(1, 'Post to server:',"5")
If (@error) Then Return SetError(2, 0, 0)

If ($oHTTP.Status <> $HTTP_STATUS_OK) Then Return SetError(3, 0, 0)
#MsgBox(1, 'Post to server:',"6")
Return SetError(0, 0, $oHTTP.ResponseText)
EndFunc

Func HttpGet($sURL, $sData = "")
Local $oHTTP = ObjCreate("WinHttp.WinHttpRequest.5.1")

$oHTTP.Open("GET", $sURL & "?" & $sData, False)
If (@error) Then Return SetError(1, 0, 0)

$oHTTP.Send()
If (@error) Then Return SetError(2, 0, 0)

If ($oHTTP.Status <> $HTTP_STATUS_OK) Then Return SetError(3, 0, 0)

Return SetError(0, 0, $oHTTP.ResponseText)
EndFunc

My problem is that I have a ugly error if the computer is not connected to the web : 

image.png.7ac6e57faaa1ea750bf0bb96db86ce4b.png

Is there a way to simply raise a message box saying "You are an asshole, please connect your computer to internet" ?

Thx in advance 🙂

Posted

Same error with : 

#include-once

Global Const $HTTP_STATUS_OK = 200

Func HttpPost($sURL, $sData = "")
    #MsgBox(1, 'Post to server:',"1")
    Local $oHTTP = ObjCreate("WinHttp.WinHttpRequest.5.1")
    #MsgBox(1, 'Post to server:',"2")
    $oHTTP.Open("POST", $sURL, False)
    If (@error) Then Return SetError(1, 0, 0)
    #MsgBox(1, 'Post to server:',"3")
    $oHTTP.SetRequestHeader("Content-Type", "application/x-www-form-urlencoded")
    #MsgBox(1, 'Post to server:',"4")
    If  IsObj($oHTTP) Then
        $oHTTP.Send($sData)
        #MsgBox(1, 'Post to server:',"5")
        If (@error) Then Return SetError(2, 0, 0)

        If ($oHTTP.Status <> $HTTP_STATUS_OK) Then Return SetError(3, 0, 0)
        #MsgBox(1, 'Post to server:',"6")
        Return SetError(0, 0, $oHTTP.ResponseText)
    Else
        MsgBox($MB_SYSTEMMODAL, "No connected to Internet", "Please ensure that the bot is allowed to connect to Internet!")
        btnExit()
    EndIf
EndFunc

Func HttpGet($sURL, $sData = "")
    Local $oHTTP = ObjCreate("WinHttp.WinHttpRequest.5.1")

    $oHTTP.Open("GET", $sURL & "?" & $sData, False)
    If (@error) Then Return SetError(1, 0, 0)

    $oHTTP.Send()
    If (@error) Then Return SetError(2, 0, 0)

    If ($oHTTP.Status <> $HTTP_STATUS_OK) Then Return SetError(3, 0, 0)

    Return SetError(0, 0, $oHTTP.ResponseText)

EndFunc

 

  • Developers
  • Solution
Posted

Add an COM Error Handling function to capture it and perform what it is you need to do.
The Helpfile has some examples on how to do that. just search for "COM Error Handling" select "Com Handlig" and scroll down. 

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...