I've got a reproducible javaw crash situation during JDEbug debugging, and
I'm wondering if anyone else is seeing similar things. If I step through
(more specifically, step out of the end of) this method:
/**
* Sends a message with specified contents to its target.
*
* @param messageObject Object containing data to send to target.
*/
public void send(Object messageObject) throws Exception {
Socket s = null;
this.messageObject = messageObject;
try {
s = new Socket(hostname, port);
ObjectOutputStream oos = new ObjectOutputStream(s.getOutputStream());
oos.writeObject(this);
oos.close();
} catch (ConnectException e) {
System.out.println("Could not connect to server: " + e.getMessage());
}
}
I get a javaw crash with an illegal reference to memory location
0. Running through the code without stopping in the debugger and running
the code standalone do not cause javaw crashes. Ideas?
--
Steve Peterson +1 952 948 9729
Principal Consultant FAX +1 612 677 3050
Virtation Technologies, Inc. http://virtation.com