Java code to access the shared heap


 
Thread Tools Search this Thread
Top Forums Programming Java code to access the shared heap
# 1  
Old 10-13-2009
Java code to access the shared heap

Hi

Help needed and forgive me as I dont know Java so please bare with me.
I have searched this site and google but was unable to locate the information I need.

An application that we use - is based on java and stores some performance counters etc internally in the shared JVM. They are not held in an oracle db etc

What I want to be able to do is access the shared area in JVM and write out the contents, I am not 100% sure how the counters are stored etc so I would need to access the entire JVM memory and write it to a file on the unix filesystem assuming thats even possible..

Can you help? SmilieSmilieSmilie


Server information:
java version "1.4.2_10"
Solaris 10
# 2  
Old 10-13-2009
So you want to reach into java's raw memory from the outside, and access values stored in it that way?
# 3  
Old 10-13-2009
Yes... Am I being niave?

The vendor of the app does have a webpage that calls some JavaScript to get some of the counter but I don't know how I could execute the same java scripts if I could find them, from the unix command line

any ideas?
# 4  
Old 10-13-2009
Quote:
Originally Posted by frustrated1
Yes... Am I being naive?
You can't just reach into Java's memory and get it. In fact you're not supposed to reach into and abuse another process' memory in general.
Quote:
The vendor of the app does have a webpage that calls some JavaScript to get some of the counter but I don't know how I could execute the same java scripts if I could find them, from the unix command line

any ideas?
Their javascript must be just retrieving some CGI-generated XML file or something similar and parsing its content. You could do the same, or you could examine the source for the CGI script itself and see how it works.
# 5  
Old 10-13-2009
Thanks, appreciate the feedback.

Apologies if I have wasted ur time.
I will look into the web page sources etc
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Programming

can i have an optimal solution for this java code ? Facing Java heap space problem even at 3GB heaps

My desired output is run: for this 1 for this 2 for this 3 for this 4 for this 5 for this 1,2 1->2 for this 2,3 2->3 for this 3,4 3->4 for this 4,5 4->5 for this 1,2,3 1->2,3 (2 Replies)
Discussion started by: vaibhavkorde
2 Replies

2. UNIX for Dummies Questions & Answers

Checking heap memory size for java app

Hi I have one Java application installed in my Solaris system. Is there a way to find out the heap memory allocated size/used size/free size for the particular Java process? If anyone knows the command, please let me know. Even I appreciate if I have any scripts to find out the same. ... (0 Replies)
Discussion started by: nthiruvenkatam
0 Replies

3. Programming

Code to write the heap into a file

Hi everybody, i am doing a project on checkpoints, where in i need to write the heap area into a file. I have got a code which i need to analyze, also asked in the forum under solaris https://www.unix.com/solaris/135483-libckpt.html The heap is implemented as a link list given by the structure... (2 Replies)
Discussion started by: holla4ni
2 Replies

4. Shell Programming and Scripting

Any way to access shared object using shell

Hi, I have created a shared object (abc.so) which has a function sum(int a, int b). Is there any way to load the "abc.so" and use the sum function using shell script.. thanks in advance (2 Replies)
Discussion started by: yhacks
2 Replies
Login or Register to Ask a Question