HTTP Post/Upload From Visual Basic 6 - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T08:33:12Zhttp://stackoverflow.com/feeds/question/968998http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/968998/http-post-upload-from-visual-basic-60HTTP Post/Upload From Visual Basic 6lennie2009-06-09T09:10:43Z2009-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#9691370Answer by Shoban for HTTP Post/Upload From Visual Basic 6Shoban2009-06-09T09:46:55Z2009-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#9693970Answer by AnthonyWJones for HTTP Post/Upload From Visual Basic 6AnthonyWJones2009-06-09T11:05:53Z2009-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" & vbCrLf
sEntityBody = sEntityBody & "Content-Dispostion: form-data; name=fileInputElementName; filename=""" + sFileName + """" & vbCrLf
sEntityBody = sEntityBody & "Content-Transfer-Encoding: base64" & vbCrLf
sEntityBody = sEntityBody & "Content-Type: application/pdf" & vbCrLf & vbCrLf
sEntityBody = sEntityBody & sPDFBase64 & vbCrLf
sEntityBody = sEntityBody & "-----boundary--" & vbCrLf & 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>