Smitro Posted March 22, 2010 Posted March 22, 2010 I all, I've been reading and reading... and I'm sure this can't be all this hard. I'd like to upload a file via http which will be recieved and managed using PHP. I'm guessing the best way would be to use the WinHTTP Functions. (http://www.autoitscript.com/forum/index.php?showtopic=84133&st=0) I get the besics of this, infact I've already written a program to send a post request and then used it's reply. But how do I send a whole file? So the basic script is this... #include "WinHTTP.au3" $hOpen = _WinHttpOpen() $hConnect = _WinHttpConnect($hOpen, "msdn.microsoft.com") $hRequest = _WinHttpOpenRequest($hConnect, "GET", "en-us/library/aa384101(VS.85).aspx") _WinHttpSendRequest($hRequest) _WinHttpReceiveResponse($hRequest) If _WinHttpQueryDataAvailable($hRequest) Then $header = _WinHttpQueryHeaders($hRequest) MsgBox(0, "Header", $header) EndIf _WinHttpCloseHandle($hRequest) _WinHttpCloseHandle($hConnect) _WinHttpCloseHandle($hOpen) What do I modify to get this sending a file?? The open request should be POST and not guest. And I'll need _WinHttpWriteData($h_openRequest, "somedata=something"). Can you help. (I tried to keep this post simple for everyone)
ptrex Posted March 22, 2010 Posted March 22, 2010 @Smitro Maybe this can help expandcollapse popup#include <HTTP.au3> $host = "www.testbed.loc" $port = "443" $page = "test_script.php" $vars = "action=upload" $url = $page&"?"&_HTTPEncodeString($vars) $socket = _HTTPConnect($host, $port) $get = _HTTPPost_File($host,$url,$socket,"testuploadfile3.doc", "uploadedfile") $recv = _HTTPRead($socket,1) MsgBox(0, "Info", "Data received:" & @CRLF & $recv[4] & @CRLF) Func _HTTPPost_File($host, $page, $socket = -1, $file = "", $fieldname = "") Dim $command If $socket == -1 Then If $_HTTPLastSocket == -1 Then SetError(1) Return EndIf $socket = $_HTTPLastSocket EndIf $contenttype = _HTTPPost_contenttype($file) ; Maybe this can be done easier/better? $boundary = "------"&Chr(Random(Asc("A"), Asc("Z"), 3))&Chr(Random(Asc("a"), Asc("z"), 3))&Chr(Random(Asc("A"), Asc("Z"), 3))&Chr(Random(Asc("a"), Asc("z"), 3))&Random(1, 9, 1)&Random(1, 9, 1)&Random(1, 9, 1) $fileopen = FileOpen($file, 0); Open in read only mode $fileread = FileRead($fileopen) FileClose($fileopen) $extra_commands = "--"&$boundary&@CRLF $extra_commands &= "Content-Disposition: form-data; name="""&$fieldname&"""; filename=""" & $file & """" &@CRLF $extra_commands &= "Content-Type: "&$contenttype&@CRLF&@CRLF $extra_commands &= $fileread&@CRLF $extra_commands &= "--"&$boundary&"--" Dim $datasize = StringLen($extra_commands) $command = "POST "&$page&" HTTP/1.1"&@CRLF $command &= "Host: " &$host&@CRLF $command &= "User-Agent: "&$_HTTPUserAgent&@CRLF $command &= "Connection: close"&@CRLF $command &= "Content-Type: multipart/form-data; boundary="&$boundary&@CRLF $command &= "Content-Length: "&$datasize&@CRLF&@CRLF $command &= $extra_commands ;debug info If FileExists("output.txt") Then FileDelete("output.txt") $file = FileOpen("output.txt", 1) FileWrite($file, $command) FileClose($file) ;end debug info Dim $bytessent = TCPSend($socket, $command) If $bytessent == 0 Then SetExtended(@error) SetError(2) return 0 EndIf SetError(0) Return $bytessent EndFunc Func _HTTPPost_contenttype($file = "") $fileextension = StringRight($file,4) ; I blieve these are the only 2 types that matter when uploading Switch $fileextension Case ".txt" $contenttype = "text/plain" Case Else $contenttype = "application/octet-stream" EndSwitch Return $contenttype EndFunc First find the HTTP.au3 in the forum. rgds, ptrex Contributions :Firewall Log Analyzer for XP - Creating COM objects without a need of DLL's - UPnP support in AU3Crystal Reports Viewer - PDFCreator in AutoIT - Duplicate File FinderSQLite3 Database functionality - USB Monitoring - Reading Excel using SQLRun Au3 as a Windows Service - File Monitor - Embedded Flash PlayerDynamic Functions - Control Panel Applets - Digital Signing Code - Excel Grid In AutoIT - Constants for Special Folders in WindowsRead data from Any Windows Edit Control - SOAP and Web Services in AutoIT - Barcode Printing Using PS - AU3 on LightTD WebserverMS LogParser SQL Engine in AutoIT - ImageMagick Image Processing - Converter @ Dec - Hex - Bin -Email Address Encoder - MSI Editor - SNMP - MIB ProtocolFinancial Functions UDF - Set ACL Permissions - Syntax HighLighter for AU3ADOR.RecordSet approach - Real OCR - HTTP Disk - PDF Reader Personal Worldclock - MS Indexing Engine - Printing ControlsGuiListView - Navigation (break the 4000 Limit barrier) - Registration Free COM DLL Distribution - Update - WinRM SMART Analysis - COM Object Browser - Excel PivotTable Object - VLC Media Player - Windows LogOnOff Gui -Extract Data from Outlook to Word & Excel - Analyze Event ID 4226 - DotNet Compiler Wrapper - Powershell_COM - New
Smitro Posted March 23, 2010 Author Posted March 23, 2010 Ok, I've given it a go, and all I seem to get is a "400 Bad Request (Invalid URL)" I've simplified it down to this untill I get it working. #include <HTTP.au3> $host = "intranet" $port = "80" $page = "" $vars = "action=upload" $url = $page&"?"&_HTTPEncodeString($vars) $socket = _HTTPConnect($host, $port) $post = _HTTPPOST($host, $page, $socket) $recv = _HTTPRead($socket,1) Any thoughts?
Chance Posted December 5, 2012 Posted December 5, 2012 Well duh, look at the time this thread was posted, a few years ago.Go for a better more current examples, but no cookie handling, also, looking at the example you proably tested, of course that's going to get errors, that website doesn't even exist.
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