vote up 0 vote down star

My Java application is started from within a native program through java.dll. This native program is launched as a service on Windows.

The following options have been added to the JVM args for remote debugging:

-Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=n

In this configuration, it is impossible to connect from e.g. my Eclipse workspace. If the program is launched from the command-line, i.e. not as a service, I can connect to port 8787.

How can I allow remote debugging connections to this service?

flag

1 Answer

vote up 2 vote down check

There's no difference if it runs as a service or from command line.

Please double-check that java.exe receives those command line params when started as service.

link|flag
You're right; I made a mistake. Thanks. – ochedru Jan 20 '09 at 14:42

Your Answer

Get an OpenID
or

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