- Jul 14, 2008
- 1,161
- 1
- 0
well i just finished off my exams so i thought i will do my favourite work (PROGRAMMING)
thought will give give java a shot
everything works fine with net beans
then i try to do some socket programming
but when i try to open a socket on my computer
i get the exception that i/o rights denied
my first suspection is the unnesasary (sorry can remember the spelling for this word)
security that comes with vista
is there a way to just turn this down for all my files and for all my connections
if it is of any use here is my source code that i have been trying

thought will give give java a shot
everything works fine with net beans
then i try to do some socket programming
but when i try to open a socket on my computer
i get the exception that i/o rights denied
my first suspection is the unnesasary (sorry can remember the spelling for this word)
security that comes with vista
is there a way to just turn this down for all my files and for all my connections
if it is of any use here is my source code that i have been trying
that catch things works out and i get the error messagetry {
echoSocket = new Socket("GS1", 7);
out = new PrintWriter(echoSocket.getOutputStream(), true);
in = new BufferedReader(new InputStreamReader(
echoSocket.getInputStream()));
} catch (IOException e) {
System.err.println("Couldn't get I/O for "
+ "the connection to: taranis.");
System.exit(1);
}
