Changing getImage MTU (receive window)
Hi,
I have an application (snippet below) that receives image, runs fine, but like a dog when the network latency increases.
The issue is the MTU size, as when it is increased (windows reg) the speed dramatically increases. I can see solutions to this issue if I want to send the image over my own sockets, writing a server application as well.
Can I change the MTU/receive window thatgetImage uses?
URL MyURL = new URL(imgName);
pic=getImage(MyURL );
Tracker.addImage( pic,imgID++);
Tracker.waitForAll();
Thanks
Maddiman

