skijve Posted May 16, 2023 Posted May 16, 2023 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 : Is there a way to simply raise a message box saying "You are an asshole, please connect your computer to internet" ? Thx in advance 🙂
Developers Jos Posted May 16, 2023 Developers Posted May 16, 2023 Test whether $oHTTP is really an object like shown in the helpfile? 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.
skijve Posted May 16, 2023 Author Posted May 16, 2023 Same error with : expandcollapse popup#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
Danp2 Posted May 16, 2023 Posted May 16, 2023 There's actually a UDF of WinHTTP functions named WinHttp.au3, so I was initially confused by your post. 😄 It can be found here if you want to check it out. Latest Webdriver UDF Release Webdriver Wiki FAQs
Developers Solution Jos Posted May 17, 2023 Developers Solution Posted May 17, 2023 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.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now