ProgramWindowJava

ObjectOutputStream writing error

I was hoping that someone could help me with an error I'm having with a java Server program. When trying to send data to client, I receive an error.
Quote:
Software caused connection abort: socket write


Part of the code that attempts to write something to the OutputStream.
Setup:
Code:
BufferedReader inputFromClient; ObjectOutputStream outputToClient; System.out.println("SERVER THREAD INITIATED. CONNECTION = " + this.clientSocket.getInetAddress()); inputFromClient = new BufferedReader(new InputStreamReader(this.clientSocket.getInputStream())); outputToClient = new ObjectOutputStream(this.clientSocket.getOutputStream()); String message = inputFromClient.readLine();

Sending:
Code:
synchronized(theResult) { System.out.println("Its inside the synchronized"); String outMessage = finals; System.out.println(outMessage); theResult.setMessage(outMessage); outputToClient.writeObject(theResult); outputToClient.reset(); }

If anyone can help me ASAP please

Replay:ObjectOutputStream writing error
the client disconnected, possibly by force (network failure)



Java

JDBC problem: NullPointerException
Writing a database
Declaring an array help
CMP and database connection problem
Need help with methods
Need help with this Code, please.
Threads
My first program.
memory address?
executable java file
Bitwise comparison?
Can't figure out Static Error?
Help!! using recursion to search an array
Encrypt / Decrypt homework help
Menus
help!!!!!!!!!!!!!!!
How to access JSpinner's JTextField?
easy questions
recursion/iterator problem
repainting the whole frame??