Hi all,
I am working with s60 5th edition. I want to download icons for list box from the web. At present i can download single image from the web. But how can i download all the icons.
Thanks.
Hi all,
I am working with s60 5th edition. I want to download icons for list box from the web. At present i can download single image from the web. But how can i download all the icons.
Thanks.
Well you can download the images one by one from the server.
1)Put the get request for one image.
2)wait for the response
3)If response received is success, then update the UI (listbox) & along with that put the get request for second image..
Thanks for reply vineet, actually i am getting problem in sending serialized http requests.
How are you sending the request? Are you sending them in continuation , i mean not waiting for one request to complete..
I am sending request from appView once and then for the remaining i am calling httpGet from client engine when the first get succeed.
You need to show some code, also what exact problem are you getting while requesting for images in such manner.I mean is there any crash/panic etc..
Hey dev_Cis,
Some code snippet would definitely help people to help you in a better way, at least giving an idea of what APIs you are using.
You can also study the HTTP example here & then handle the icon part.
I didn't mean that ... Thanks to both of you for reply.
I was sending the next http request before the previous transaction cancellation. I put the calling code after iTransection.Close it is working now.