Hi,
 
I have this problem loading hundreds of images in my applet from the server (Tomcat 3.2.1) with ~ following code:
 
// in applet.init()...
for (int i=0; i<1000; i++) {
    URL location = getClass().getResource ("/images/image"+i+".gif");
    Image img = this.getImage (location);
    if (img != null)
        images.addElement (img);
}
// ...
 
After loading ~50-60 images this way, I start to get
 
    Ctx(  ): IOException in: R(  + /images/imageX.gif + null) socket write error (code=10053)
 
for all resources including classes of applet being loaded by class loader.
 
PLEASE HELP!!!
 
Cheers,
Maxim

Reply via email to