jvm crash, what to do?
Does anyone have any suggestions about to do with the following error that I get, aside from filling out a bug report(which I have done)?
#
# HotSpot Virtual Machine Error, Internal Error
# Please report this error at
# http://java.sun.com/cgi-bin/bugreport.cgi
#
# Java VM: Java HotSpot(TM) Server VM (1.4.0-b92 interpreted mode)
#
# Error ID: 47454E45524154452F4F502D41500E4350500848
#
# Problematic Thread: prio=5 tid=0x58808008 nid=0x5d8 runnable
#
Thanks so much!
Mark
[558 byte] By [
markw007] at [2007-9-27 20:31:28]

I got the same error.
I switched to j2sdk-1.4.1_01. That didn't fix it but I recommend it. I was using a beta.
What did fix it was moving to jakarta-tomcat-4.1.12. I assume your running struts, because that's where I saw my error.
It's much, much faster and has a fix for using many tags within a JSP page. The servlet code that it produces was running up against a 64kbyte limit for the size of a method. Since all tags are coded in a single method. Now each tag produces a new method. In addition it re-uses something when doing all this repetitive stuff. That's what really makes it fly now. I noticed in my app that it no longer bloats to a huge memory footprint either.
Oscar