The Clever Component team has put together an article designed to demonstrate how one can use Delphi to transfer files between the client and server using the HTTP protocol.
In this article we will discuss the automation of the upload process via HTTP protocol by the POST method using the components from Clever Internet Suite.
A lot of web-software companies have to establish the tight links with their clients by using not only email and forums. Often there is the task to transmit data from the client to the server where the initiative belongs to the client.
The traditional ways to solve this problem, such as send data via email attach or by FTP, cannot be applied in particular cases. The email has the problems of low efficiency and difficulties when sorting. The write-accessed FTP resources are the problem too, because of the security requirements and the probability of getting spam.
If you want to get more control on the process or perform some actions on the received information then using the upload via HTTP protocol by the POST method will solve the above problems simultaneously.

The data-transfer method via HTTP protocol is intended to have two key facilities which support the contacts between the server and the client:
- Client-side engine
- Server-side engine, in the most cases it is ASP script or CGI application.
The responsibilities of the client are to build and send the server the message which contains some headers with information about the resource being downloaded, the resource itself and probably, different additional data. The server should be able to accept and process this message. Depending on your desire, the accepting facility may just save it locally to the server, forward it into other server, check for viruses and so on - the resource is fully under your control!
Next, let's take a look at these facilities in details.
Client-side engine
In the simplest case, the facility which transfers data may be an ordinary client script. Its main purpose is to build the POST command, find the information being sent and specify the resource accepted this data. It's easy to say that in HTML:
<BODY>
...
<p><b><i>Enter File Name and press the Upload button</i></b></p>
<TABLE border=0>
<TBODY>
<TR>
<FORM action="clHTTPUpload.asp" method="post" enctype="multipart/form-data">
<TD align=left><INPUT type="submit" value="Upload File"></TD>
<TD align=left><INPUT type="file" name="FileName"></TD>
</FORM>
</TD>
</TR>
</TBODY>
</TABLE>
...
</BODY>
How you can see from the above example, the form we created organizes the POST method with multipart/form-data type. It means now you shouldn't worry any longer - your browser will care about any headers and their contents itself.
For more information on URL-encoding and the format of a Form POST request, see section 8.2 in RFC 1866, which you can find here: http://www.w3.org/Protocols/HTTP/Object_Headers.html,
http://www.w3.org/Protocols/rfc1341/7_2_Multipart.html and many others.
In case of automation the downloading process by using the POST method we have to build such headers and send them to the server ourselves.
Let's use the abilities of the TclUploader from the Clever Internet Suite library. It can be done in a few simple steps:
- Create a new Delphi project
- Place the TclUploader component on the form and setup its URL property (if you need you can setup the UserName and Password properties as well)
- Setup the headers of the component
- To use headers you should activate them by setting the UseHTTPHeaders property to TRUE
- Implement the call the Start function of the component to initiate the uploading process
All additional settings can be skipped in order to this article be brief.

Headers Setup
In many cases, the server does not respond appropriately if a Content-Type is not specified.
Therefore in our case the header may look like this:
-----------------------------7d23542a1a12c2
Content-Disposition: form-data; name="FileName"; filename="C:\test.txt"
Content-Type: text/asp
here places content of the C:\test.txt file
-----------------------------7d21fa22012ca--
As it can be seen from the above example, it is convenient to split the header into some parts:
- The first determines the Content-Type field, the file name and other parameters.
- The second is the data being uploaded itself.
- The third signs the end of the resource.
In that way, we set the Header Item Content Type for the first and the third parts as ctTextData, and the second has ctFileName.
To setup headers the TclUploader component has the design-time editor.

The contents of each header element can be edited within the second page of the component-editor.

Also, it is easy to create the Header Item in runtime. To make the creation process more simple, the headers collection class, TclHTTPHeaders, has a number of the special functions. By using them you can build different header structures as easy and fast as in design-time.
procedure TMainForm.FillHeaders(const AFileName: string);
begin
clUploader.HTTPHeaders.AddTextData('-----------------------------7d23542a1a12c2');
clUploader.HTTPHeaders.AddTextData('Content-Disposition: form-data; name="FileName"; filename="' + AFileName + '"');
clUploader.HTTPHeaders.AddTextData('Content-Type: text/asp');
clUploader.HTTPHeaders.AddFileName(AFileName);
clUploader.HTTPHeaders.AddTextData('-----------------------------7d21fa22012ca--');
end;
To initiate the uploading process you have to call the Start method of the TclUploader component.
procedure TMainForm.btnUploadClick(Sender: TObject);
var
filename: string;
begin
memResponse.Clear();
filename := edtFileName.Text;
FillHeaders(filename);
end;
As the result of the upload the server may return the answer which can consists of the custom text or other data defined by the developers of the accepting facility. To get the server's answer you just need to read the ServerResponse property of the component.
procedure TMainForm.clUploaderStatusChanged(Sender: TObject; Status: TclProcessStatus);
begin
if (Status <> psProcess) then
begin
memResponse.Lines.AddStrings(clUploader.ServerResponse);
end;
end;
Due to the fact that we use the HTTPSendRequestEx function from the WinInet library the uploading process can be given a progress indicator. To do it, let's just write a handler of the OnDataItemProceed event.
procedure TMainForm.clUploaderDataItemProceed(Sender: TObject;
ResourceInfo: TclResourceInfo; AStateItem: TclResourceStateItem; CurrentData: PChar;
CurrentDataSize: Integer);
begin
Caption := Format('%s %d bytes proceed', [edtFileName.Text, AStateItem.ResourceState.BytesProceed]);
end;
Starting at this moment, the client-side is fully functional. The example can be downloaded here: httppostclient.zip for Delphi and httppostclient_bcb.zip for C++ Builder.
Next, we'll take a look at the server-side accepting facility.
Server-side engine
The server facility isn't a big difficulty at all and in the very first approach it can be written as ASP server script.
To work well, the script should accept the incoming data. We use the server Request and Response objects to accept data and send results back to the client. You can retrieve the values of the form elements by using the Forms property of the Request object and by using the BinaryRead method to get raw binary data.
Notice, there is one interesting moment - if you use the BinaryRead method, you cannot use the Forms property simultaneously, and vice-versa. So, if you want to post other form data along with your file, you'll have to dig it out of the posted data by hand.
The headers parser can be developed in many ways. The widest method is using the special written ActiveX component. ASP server script just transfers binary data to this object.
Easier to say in Java Script:
<%@Language = "JScript"%>
<%
try
{
var Binary;
Binary = Request.BinaryRead(Request.TotalBytes);
var fso = new ActiveXObject("HTTPPost.clHTTPPost");
fso.AcceptData(Binary);
Response.Write(Request.TotalBytes);
Response.Write("<br/>");
Response.Write("File uploaded");
}
catch(e)
{
Response.Write(e.message);
}
%>
The implementation of the ActiveX component is easy and may look like as following:
IclHTTPPost = interface(IDispatch)
['{1DFF5FE4-F803-4DB6-A007-7AA4728624D3}']
procedure AcceptData(Data: OleVariant); safecall;
end;
procedure TclHTTPPost.AcceptData(Data: OleVariant);
var
str: TStream;
p: Pointer;
begin
str := TFileStream.Create('c:\Temp\SampleData.txt', fmCreate);
try
p := VarArrayLock(Data);
str.Write(p, SizeOf(BYTE) * (VarArrayHighBound(Data, 1) - VarArrayLowBound(Data, 1) + 1));
finally
VarArrayUnlock(Data);
str.Free();
end;
end;
To make this sample, we created the ActiveX Library in Delphi and added a new Automation Object named clHTTPPost.
The sources of the server-side can be downloaded here: httppostserver.zip for Delphi and httppostserver_bcb.zip for C++ Builder.
The server-side facility is done now. You may write the complete header parsing in ASP script itself. This way can be more convenient some time, because it avoids the ActiveX registration. To read more about this technique see the Upload Files with HTML Forms and Pure ASP article in MSDN library.
Anyway, you have to be sure for the save operation to work, your IIS anonymous user account, usually IUSR_machinename, must have write access to the directory you want to save the files in. And, obviously, the full urlpath to the accepting script must be specified in the URL property of the TclUploader component.
In conclusion we would like to notice that the given method of data sending have some benefits in comparing to the Web Form Post request, when using the certified authorization. The point is that while authorizing an HTML form resends the built headers and if the server requests certificate, all headers will be sent twice within the certificate information.
This process doesn't occur if you use Clever Uploader because it uses both HTTPSendRequest and HTTPSendRequestEx from the WinInet library. Such method allows you to keep the traffic low when transferring a lot of data.
If you want you may not use the UI at all and this allows you to automate the sending process which can be easy scheduled later.
Sergey S,
Clever Components Team.
| DISCLAIMER: The content provided in this article is not warranted or guaranteed by Developer Shed, Inc. The content provided is intended for entertainment and/or educational purposes in order to introduce to the reader key ideas, concepts, and/or product reviews. As such it is incumbent upon the reader to employ real-world tactics for security and implementation of best practices. We are not liable for any negative consequences that may result from implementing any information covered in our articles or tutorials. If this is a hardware review, it is not recommended to open and/or modify your hardware. |
More Delphi-Kylix Articles
More By Clever Components
developerWorks - FREE Tools! |
Learn field-tested SOA principles, methodology, technology and implementation from the global SOA market leader - in a new e-book by an IBM SOA expert. Written by IBM Certified SOA Solution Designer Bobby Woolf, "Exploring IBM SOA Technology & Practice" is the ultimate insider's guide to SOA - a PDF e-book packed cover to cover with IBM's specific advice on how to make your SOA implementation a success. FREE! Go There Now!
|
|
|
|
Achieving true agility is a never-ending effort. We will showcase how you can become agile incrementally, a few practices at the time.Which practices should any agile team strive to adopt? What additional practices should you consider based on your needs to scale? Adopting practices are however made much easier with the right tool support. What about if your tools adapt to your practices? We will take a look at how the Jazz technology can be leveraged to make your process change the behavior of your tools. FREE! Go There Now!
|
|
|
|
Visit IBM developerWorks to download IBM DB2 Express-C 9.5, a no-charge version of DB2 Express 9 database server. DB2 Express-C offers the same core data server base features as other DB2 Express editions and provides a solid base to build and deploy applications developed using C/C++, Java, .NET, PHP, and other programming languages. FREE! Go There Now!
|
|
|
|
Analysts, architects, and developers who have existing COBOL or PL/I skills and want to extend those skills to deploy new workloads on the mainframe can use the IBM Enterprise Modernization Sandbox for System z to find hands-on walkthroughs of common real world scenarios. The scenarios provide examples of how to rapidly design, create, assemble, test, and deploy high-quality Web, Web services, portal, and SOA applications for IBM CICS, IBM IMS, and IBM WebSphere Application Server. FREE! Go There Now!
|
|
|
|
Portfolio Management is about effectively managing portfolio value by aligning portfolio investments with business goals. This complimentary e-kit provides a collection of materials that can help you understand how IBM Rational enables and automates best practices for improved governance and clear visibility into portfolio and project performance across the entire IT project lifecycle. FREE! Go There Now!
|
|
|
|
Rational Build Forge Express Edition is an automation framework that packages the latest enterprise-grade technologies into a reliable, flexible and robust configuration designed and priced specifically for small to midsize businesses. The new Rational Build Forge Express eKit provides you with valuable resources – including a case study, podcast, demo, and articles – to help you increase staff productivity, compress development cycles and deliver better software, fast. FREE! Go There Now!
|
|
|
|
Get a free trial download of the latest version of IBM Rational Tester for SOA Quality V7.0.1, a functional and regression testing tool that enables the creation, comprehension, modification and execution of testing GUI-less Web services. FREE! Go There Now!
|
|
|
|
You can now evaluate IBM Rational Asset Manager V7.0 online without installing or configuring it on your own system! Rational Asset Manager helps create, modify, govern, find, and reuse any type of development assets, including SOA and systems development assets. Rational Asset Manager helps you reduce software development costs and improve quality by facilitating the reuse of all types of software development-related assets. Visit developerWorks to learn more about this product and register to explore its capabilities online. FREE! Go There Now!
|
|
|
|
WebSphere Process Server delivers a unique integration framework that simplifies existing IT resources. Often, as IT assets grow to support business demand, so too does their complexity and manageability. In this webcast, we’ll discuss how WebSphere Process Server helps deliver an SOA infrastructure that provides a common model to orchestrate, mediate, connect, map, and execute the underlying IT functions. Discover how WebSphere Process Server simplifies integration of business processes by leveraging existing IT assets as reusable services without the complexities of traditional integration methodologies. FREE! Go There Now!
|
|
|
|
With IBM Rational Systems Development Solution, you can deliver products faster with higher quality. Within this kit, Read the “Model Driven Systems Development” white paper to see how to improve product quality and communication. Then check out the rest of the e-Kit to learn more about important topics that can affect the success of any software project through customer examples, tutorials, informative Webcasts, and best practices for designing, building and managing systems. From start to finish, at every stage in your projects, Rational Systems Development Solution can help your company reach its full potential. FREE! Go There Now!
|
|
|
|
All FREE IBM® developerWorks Tools! |