Currently, the only information I have is a one-line error message in the browser’s status-bar.
Do you know how I could get a stack-trace for example ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This article is a bit old but is still relevant (including a section entitled “How to Debug Applets in Java Plug-in”).
Edit: perhaps a better way to get stacktraces is to use the Java plugin console. If you hit “t” in that window, you’ll see the following:
The other command that I’ve used most often from that console is the trace level from 0-5:
From that page, you’ll see that the levels look like this:
These tools can all be fairly useful as you’re trying to unravel what in the world has gotten into the head of your applets. I know that they’ve worked for me.