URL url = new URL("http://myip:8080/myproject/image/myjpeg.jpg");
BufferedImage im = ImageIO.read(url);
// then I make some "drawImage()" in order to create a Graphics2D...
On my computer (Tomcat 5.5.23 on Windows), it works fine, even with
another computer with the same IP (LAN).
But on a Linux server, I've an error:
Error 502: cannot read input file (bad gateway) or reverse proxy
error.
at "ImageIO.read("...");"
Can someone can help me and tell me where dis I make a mistake?