> is there any way to remote debugging a java application? furthurmore, can
> this happen b/w a unix platform (debuggee) and a windows platform
> (debugger)?
The way to do this is to start the Java runtime with the right options
so that it listens on a port. Then you start the debugger and tell it
to connect to that port on the machine where the Java runtime, err,
runs.
This is described in the documentation for jdb, btw.
Kai