hi..
i am using http client example to download a file using http
now i want to download multiple file at same time
i think i want to do like this
iClient1 = CClientEngine::NewL();
iClient1->CancelTransaction();
_LIT8(uri, "http://123.231.56.57/test.txt");
TBuf8<256> uri8;
uri8.Copy(uri);
iClient1->IssueHTTPGetL(uri8);
iClient2 = CClientEngine::NewL();
iClient2->CancelTransaction();
_LIT8(uri, "http://123.231.56.57/test1.txt");
TBuf8<256> uri8;
uri8.Copy(uri);
iClient2->IssueHTTPGetL(uri8);
--
Am i correct?
if so, i want to create object array. how can i do?
my requirement is
first i write
"http://123.231.56.57/test.txt
-->> click start download
then i write,
"http://123.231.56.57/test1.txt
-->> click start download
then i write,
"http://123.231.56.57/test3.txt
-->> click start download


....Have a look once there will be many example available........


