HTTP Post/Upload From Visual Basic 6 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T08:33:12Z http://stackoverflow.com/feeds/question/968998 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/968998/http-post-upload-from-visual-basic-6 0 HTTP Post/Upload From Visual Basic 6 lennie 2009-06-09T09:10:43Z 2009-06-09T11:05:53Z <p>Hi,</p> <p>I'm using Visual Basic 6 and want to do an HTTP post to a server (it runs Java code) by sending a custom input field along with a PDF file. the PDF file would have to be base 64 bit encoded or use the normal way that HTTP post work over the Internet when uploading a file. Basically I just want to upload a file from my Visual Basic 6 program.</p> <p>How do I do this? Any example source code?</p> <p>Thanks</p> http://stackoverflow.com/questions/968998/http-post-upload-from-visual-basic-6/969137#969137 0 Answer by Shoban for HTTP Post/Upload From Visual Basic 6 Shoban 2009-06-09T09:46:55Z 2009-06-09T09:46:55Z <p>You can use the winsock control for this. Here is a <a href="http://www.vbforums.com/showthread.php?t=337424" rel="nofollow">sample vb</a> application for File upload.</p> http://stackoverflow.com/questions/968998/http-post-upload-from-visual-basic-6/969397#969397 0 Answer by AnthonyWJones for HTTP Post/Upload From Visual Basic 6 AnthonyWJones 2009-06-09T11:05:53Z 2009-06-09T11:05:53Z <p>Assuming you know how to load the PDF in to a byte array you've got to get it Base64 encoded and then post that to server using mime multipart encoding.</p> <p>You can utalise the MSXML libraries ability to perform Base64 encoding. See this <a href="http://www.nonhostile.com/howto-encode-decode-base64-vb6.asp" rel="nofollow">link</a> for details.</p> <p>Once you have the PDF as a Bas64 string you need to package that as Mime multipart. You can use XMLHTTP object from MSXML to perform that posting for you:-</p> <pre><code>sEntityBody = "----boundary" &amp; vbCrLf sEntityBody = sEntityBody &amp; "Content-Dispostion: form-data; name=fileInputElementName; filename=""" + sFileName + """" &amp; vbCrLf sEntityBody = sEntityBody &amp; "Content-Transfer-Encoding: base64" &amp; vbCrLf sEntityBody = sEntityBody &amp; "Content-Type: application/pdf" &amp; vbCrLf &amp; vbCrLf sEntityBody = sEntityBody &amp; sPDFBase64 &amp; vbCrLf sEntityBody = sEntityBody &amp; "-----boundary--" &amp; vbCrLf &amp; vbCrLf Set xhr = New MSXML2.XMLHTTP30 xhr.setRequestHeader("Content-Type", "multipart/form-data; boundary=-----boundary") xhr.Open "POST", sUrl, False xhr.send sEntityBody </code></pre> <p>Perhaps not elegant or efficient but it should it work.</p>