Out of Memory error in Production

Hi,We have two JVMs running one from Weblogic, another for our application. To avoid OOM error, we have increased the maxpermsize as 128m for weblogic but not for application jvm. But still, the problem persists. Could anyone help on this issue please?
[266 byte] By [babloo341a] at [2007-10-3 11:17:58]
# 1

What app/VM is throwing the OutOfMemoryException: the WebLogic JVM or your app JVM? You first need to inspect the memory requierements of your application throwing the OutOfMemoryException. Perhaps you really need more memroy, so you need to increase memory with -Xmx parameter of Java.

Of course, your application can also have a memory leak, meaning than you still hold object references even when you don't need them anymore. Use jConsole to inspect the running application. JConsole is a monitor tool included in the Java SDK.

MartinHilperta at 2007-7-15 13:42:27 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 2
Hey Martin,Thanks for the reply. Weblogic JVM is throwing "Out of Memory" error. we have increased MinHeap and MaxHeap along with Maxpermsize. Still have the issue..Help me out...
babloo341a at 2007-7-15 13:42:27 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...