I'm trying to upload files to a Indy(ver. 10.5.5) TIdHTTPServer.
I've been searching for solutions but no luck thus far, what I've found was for older versions of Indy which are not compatible with the version shipped with Delphi 2010.

What I'm hoping to achieve is to simply upload a file using "multipart/form-data" to the server and decode it, simple as that, any help is appreciated.

Thank you all for your time.

link|improve this question

1  
For the MIME decoding part, Indy contains a TIdDecoderMIME class in unit Protocols\IdCoderMIME – mjn Jun 1 '11 at 4:49
yes, but it doesn't handle the data as I need it to unfortunately... thank you for your comment – Dorin Duminica Jun 1 '11 at 6:38
1  
10.5.5 is not very old, but I'd try the current Indy 10.5.8 version – mjn Jun 1 '11 at 9:38
true, but unfortunately I need to make sure that anyone with a clean install of Delphi 2010 can simply build the project without needing to update indy or any other component... requirement. – Dorin Duminica Jun 1 '11 at 9:41
feedback

3 Answers

up vote 2 down vote accepted

I started xxm as a way to build websites with Delphi, and have scripts with both HTML and Pascal code re-compile with a press of the browser's refresh button after changes made.

It uses a generic interface that 'plugs into' IIS, Apache, Internet Explorer, FireFox, and there's a stand-alone HTTP exe also. The interface exposes IxxmParameterPostFile on a parameter when a file is uploaded.

See demo 4 Upload for an example.

link|improve this answer
1  
it's not really on the question but pretty much on the spot, very nice project, I can't believe I haven't seen it before. Any chance it will be ported to "Free Pascal" for cross platform support? I haven't got enough time to "play" at the moment, but I will sure give XXM more attention in the next couple of weeks. – Dorin Duminica Jun 1 '11 at 20:22
1  
Porting to FreePascal hinges on a decent ComServ.pas, which was missing every last time I checked. I could have a stab at creating an open-source ComServ.pas, if I had all the time and money of the world... – Stijn Sanders Jun 1 '11 at 20:42
I feel you Stijn, even tho' I can't switch to XXM right now, it is the closest option to my question, thank you! – Dorin Duminica Jun 1 '11 at 22:21
feedback

TIdHTTPServer does not currently support multipart/form-data submissions natively. That is on the todo list for Indy 11. In the meantime, you have to parse the posted MIME data manually using TIdDecoderMIME, as mjn suggested. There have been examples of that posted in the Embarcadero and Indy forums before.

link|improve this answer
1  
Hi Remy, I've managed to find that out... the demos available are not parsing the data correctly, it leaves the end boundary in the file... as a temporary solution in the "OnCreatePostStream" event of the server I simply create a file stream and on the "OnCommandGet" event I just skip the boundary and copy the correct data in the "final file stream" and it seems to be working as I need at least for the moment... – Dorin Duminica Jun 1 '11 at 6:43
If a boundary is being left behind, then you are not processing the data correctly. Which demos are you looking at exactly? – Remy Lebeau Jun 3 '11 at 7:06
forums2.atozed.com/viewtopic.php?f=7&t=23732 the second post is yours I believe(gambit47?), mcptEOF does not exist in Indy 10.5.5, but I still tried to upload, sometimes(when big files were uploaded, hundreds of megs ZIP or RAR files) boundary was removed, in other cases like PDF's the boundary was left, I believe it has something to do with the CR, LF, CRLF combination at some point when reading the stream content. Currently, "OnCreatePostStream" I create a file stream, and "OnCommandGet" I use ReadLnFromStream to bypass the first 4 lines(boundary and file info) and read until... – Dorin Duminica Jun 3 '11 at 12:56
the end of the file MINUS (2 bytes + length of the boundary "------MARKER--") and it works, however I would like a more elegant solution that this if possible. – Dorin Duminica Jun 3 '11 at 12:57
1  
Yes, I am gambit47 on that forum. mcptIgnore and mcptEOF were introduced to address issues with parsing nested MIME parts. 10.5.5 is an old version, the current version is 10.5.8 (and there have been a lot of internal changes since 10.5.5), so you should really consider upgrading. For Indy 11, Indy's MIME parsing code is going to be refactored and generalized so it can be re-used more easily. Right now, it is primarily designed for email parsing, and it takes a lot of manual work (but can be done) to use it in other situations, like HTTP uploads. – Remy Lebeau Jun 4 '11 at 8:00
show 1 more comment
feedback

Only suitable solution I can find without personally testing (let me know if this doesn't lead you to a working solution for your needs, and I'll fire up XE and produce something more eloquent)

link|improve this answer
just an FYI, the active part of that is creating a TStream (TFileStream or TMemoryStream), then calling IdHTTP1.Post(<url>, <StreamVarName>); – LaKraven May 31 '11 at 18:00
it's not exactly what I need, see the problem is that the data being sent by the browser also needs to be decoded from MIME to binary. – Dorin Duminica May 31 '11 at 18:06
ah... might be worth adjusting your question to clarify that requirement :) – LaKraven May 31 '11 at 18:11
2  
sorry, I'm a bit frustrated by the fact that I wasn't able to achieve this relatively simple task by my own... question updated. – Dorin Duminica May 31 '11 at 18:15
2  
Well, we can't always solve every problem by ourselves... otherwise StackOverflow wouldn't exist, would it? :P – LaKraven May 31 '11 at 18:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.