I have a bunch of dump from a (previously) running Java process. At that time, when the dump was taken, the process hung, exchanging information with another server. I would like to be able to restore the exact request that was made by my application.
Although my client interacts with the SOAP web service, the model object is Serializable , so I would like to export the request object (if possible, its form is Serializable ), and then I can easily re-import this object (just deserialize it) into the test application.
My problem is that I cannot find a way to export objects from a heap dump. I can find the object in question using OQL , so I know it there - I just cannot find any tools that offer any way to get objects from the heap dump.
Since my class is Serializable , I realized that this would be the easiest. But if I could get it in any other parsed format, I could programmatically restore the object.
Ideas?
source share