You didn't post your code, but the likely problem is that in Java you need to lock your object before doing a wait() or notify() on it. The Java wait() will unlock the object, wait until it receives a notify, then relock the object.
You can find some details on this in the Java Tutorial:
http://java.sun.com/docs/books/tutor...guardmeth.html