PPRuNe Forums - View Single Post - Java Security Settings
View Single Post
Old 16th May 2003, 01:04
  #2 (permalink)  
CBLong
 
Join Date: Jan 2002
Location: Sandwich, Kent, UK
Posts: 156
Likes: 0
Received 0 Likes on 0 Posts
Hi Aerbabe,

I wouldn't call myself an expert, but I have done a bit of Java programming, and I think you just can't fix this - and it's a feature, not a bug, as they say...

Java, and particularly applets, were designed with a very strong security model, to allay people's fears of Java viruses etc. Because of this, an applet is only allowed to commnuicate with the 'host' from which it was itself physically loaded, or possibly also with other hosts on the same network.

Therefore, if you have an applet stored locally on your machine, it might work fine when connected directly to your work intranet, but will correctly refuse to connect over the internet to the same machine, because that machine is now 'foreign' and potentially hostile (and of course the remote machine also doesn't want any old applet connecting to it, either).

Good luck though, I'm probably wrong, it's happened before...



cbl.
CBLong is offline