You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by "Nattapong Triammeerit (JIRA)" <ji...@apache.org> on 2008/04/11 11:46:04 UTC

[jira] Created: (AXIS2-3732) ListenerManager don't remove a ListenerManager$ListenerManagerShutdownThread out of Shutdown class after undeploy an axis application.

ListenerManager don't remove a ListenerManager$ListenerManagerShutdownThread out of Shutdown class after undeploy an axis application.
--------------------------------------------------------------------------------------------------------------------------------------

                 Key: AXIS2-3732
                 URL: https://issues.apache.org/jira/browse/AXIS2-3732
             Project: Axis 2.0 (Axis2)
          Issue Type: Bug
          Components: deployment
    Affects Versions: 1.3
         Environment: Windows XP SP2, Weblogic application server 10.0, JDK 1.5.0_13
            Reporter: Nattapong Triammeerit


The application server out of memory with PermGen error when i undeploy and deploy many time without restart the application server.


After the investigation, i found the application classloader of axis application cannot be freed because it still have a reference from a ListenerManager$ListenerManagerShutdownThread in Shutdown class. There is a cause of problem because all class of previous deployed application isn't freed. So, the memory using alway increase every time when re-deploy the axis application.

The ListenerManagerShutdownThread is put to Shutdown class when AxisServlet is loaded.
 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org


[jira] Commented: (AXIS2-3732) ListenerManager don't remove a ListenerManager$ListenerManagerShutdownThread out of Shutdown class after undeploy an axis application.

Posted by "Mauro Molinari (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-3732?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12662982#action_12662982 ] 

Mauro Molinari commented on AXIS2-3732:
---------------------------------------

I also encountered this problem (I'm still using Axis2 1.3).
I think it's a MAJOR problem and straightforward to fix. 

Could you please fix it as soon as possible?

Thank you!
Mauro.

> ListenerManager don't remove a ListenerManager$ListenerManagerShutdownThread out of Shutdown class after undeploy an axis application.
> --------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: AXIS2-3732
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3732
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: deployment
>    Affects Versions: 1.3
>         Environment: Windows XP SP2, Weblogic application server 10.0, JDK 1.5.0_13
>            Reporter: Nattapong Triammeerit
>         Attachments: AXIS2-3732.patch
>
>
> The application server out of memory with PermGen error when i undeploy and deploy many time without restart the application server.
> After the investigation, i found the application classloader of axis application cannot be freed because it still have a reference from a ListenerManager$ListenerManagerShutdownThread in Shutdown class. There is a cause of problem because all class of previous deployed application isn't freed. So, the memory using alway increase every time when re-deploy the axis application.
> The ListenerManagerShutdownThread is put to Shutdown class when AxisServlet is loaded.
>  

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (AXIS2-3732) ListenerManager don't remove a ListenerManager$ListenerManagerShutdownThread out of Shutdown class after undeploy an axis application.

Posted by "Andreas Veithen (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2-3732?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andreas Veithen resolved AXIS2-3732.
------------------------------------

       Resolution: Fixed
    Fix Version/s: 1.5

This was fixed by Glen in r726705.

> ListenerManager don't remove a ListenerManager$ListenerManagerShutdownThread out of Shutdown class after undeploy an axis application.
> --------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: AXIS2-3732
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3732
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: deployment
>    Affects Versions: 1.3
>         Environment: Windows XP SP2, Weblogic application server 10.0, JDK 1.5.0_13
>            Reporter: Nattapong Triammeerit
>             Fix For: 1.5
>
>         Attachments: AXIS2-3732.patch
>
>
> The application server out of memory with PermGen error when i undeploy and deploy many time without restart the application server.
> After the investigation, i found the application classloader of axis application cannot be freed because it still have a reference from a ListenerManager$ListenerManagerShutdownThread in Shutdown class. There is a cause of problem because all class of previous deployed application isn't freed. So, the memory using alway increase every time when re-deploy the axis application.
> The ListenerManagerShutdownThread is put to Shutdown class when AxisServlet is loaded.
>  

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (AXIS2-3732) ListenerManager don't remove a ListenerManager$ListenerManagerShutdownThread out of Shutdown class after undeploy an axis application.

Posted by "Michele Mazzucco (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/AXIS2-3732?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Michele Mazzucco updated AXIS2-3732:
------------------------------------

    Attachment: AXIS2-3732.patch

This patch should fix the problem.


> ListenerManager don't remove a ListenerManager$ListenerManagerShutdownThread out of Shutdown class after undeploy an axis application.
> --------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: AXIS2-3732
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3732
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Bug
>          Components: deployment
>    Affects Versions: 1.3
>         Environment: Windows XP SP2, Weblogic application server 10.0, JDK 1.5.0_13
>            Reporter: Nattapong Triammeerit
>         Attachments: AXIS2-3732.patch
>
>
> The application server out of memory with PermGen error when i undeploy and deploy many time without restart the application server.
> After the investigation, i found the application classloader of axis application cannot be freed because it still have a reference from a ListenerManager$ListenerManagerShutdownThread in Shutdown class. There is a cause of problem because all class of previous deployed application isn't freed. So, the memory using alway increase every time when re-deploy the axis application.
> The ListenerManagerShutdownThread is put to Shutdown class when AxisServlet is loaded.
>  

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: axis-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-dev-help@ws.apache.org