Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a problem. I am developing a applet that connects to a C++ server. For some reason when I launch a second applet in a new IE8 window I cannot write to it but I can still read. Any text going to the second client applet is not getting through. I signed the jar file for my applet and can run it with IE8. I am using Windows 7 with JCreator for my Java. Any suggestions would be appreciated.

HTML

<html> 
<head> 
</head> 
<body bgcolor="000000"> 
<center> 
<applet 
    archive="javafree.jar"
    code="javafree.class"
    width="800"
    height="500"> 
<param name="player" value="scar" /> 
</applet> 
</center> 
</body> 
</html>

Code

socket = new Socket( "localhost", 4000 ); 
in = new BufferedReader(new InputStreamReader(socket.getInputStream())); 
out = new PrintStream( socket.getOutputStream(), true); 
in = new BufferedReader(new InputStreamReader(classlink.socket.getInputStream())); 
if( in.ready() ) { 
    gametext += "<br><font color='#7DE5FF'>" + in.readLine() + "</font><br>"; 
    classlink.textman.setText(gametext); 
}
share|improve this question
"Any suggestions would be appreciated." 1) Post a link where we can see the applet failing. 2) Failing that, post the HTML source that launches the applet. 3) Post an SSCCE of applet code that shows the stated behavior. Why is the applet signed? – Andrew Thompson Jul 27 '11 at 10:37
In future please do not put HTML & code into comments, instead edit them directly into the question (as I did above). Check my edits carefully and if correct, delete the corresponding comments. – Andrew Thompson Jul 27 '11 at 12:08
the applet and Cpp code is very large but I will post it. I just wanted to know if it was possible and maybe even get some working source as an example. I signed the JAR since I got some permission denied errors because it used sockets but signing the JAR fixed it. The above code was stripped of debugging code and such. BTW the part where I read data is in a "runable" THREAD – Roland Sams Jul 27 '11 at 14:05

1 Answer

You obviously overwrite your input stream with something not related to this socket (classlink suggests something class-level, static?) here:

in = new BufferedReader(
    new InputStreamReader(
        socket.getInputStream())); 
...
in = new BufferedReader(
    new InputStreamReader(
        classlink.socket.getInputStream())); 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.