When posting data you normally open an OutputStream before calling connect()
OutputStream o = c.openOutputStream();
o.write(data);
o.flush();
o.close();
c.connect();
If you're not sending any data to the server, only downloading images, then you might want to try out the more simple GET.
Also, I assume you're running this download process in a separate thread. Have you tried getting the 30 images one by one (sequentially) instead of in one batch of 30? How's the download speed?
Peter
-----Original Message-----
From: Kapil Sharma [mailto:kapes.endless@gmail.com]
Sent: 2005年6月8日 17:15
To: keitai-l@appelsiini.net
Subject: Re: (keitai-l) Re: "i-appli taking long time connecting to servlet"
My i-appli code for the connection looks like the following
But i don't think the problem is in i-appli code:::::::::
[ excessive quoting removed by moderator ]
Received on Wed Jun 8 12:25:19 2005