Kowser
Kowser

Reputation: 8261

How can I generate thread dump for jnlp application in java

I am trying to debug a jnlp application. It get hanged after some scenario.

I want to collect thread dump of my jnlp application.

Any suggestion regarding how to do that.

I am running it in Win XP, 32 bit jvm

Upvotes: 0

Views: 358

Answers (1)

AlexR
AlexR

Reputation: 115338

JNLP application runs exactly like any java application. JNLP role ends when application has downloaded to client machine.

Now reproduce your scenario and use jstack or jps commands that you can find in your jdk.

Upvotes: 1

Related Questions