You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Palani Kumar Pounraj (JIRA)" <ji...@apache.org> on 2011/02/09 07:41:00 UTC

[jira] Created: (LOGGING-141) Getting

Getting 
--------

                 Key: LOGGING-141
                 URL: https://issues.apache.org/jira/browse/LOGGING-141
             Project: Commons Logging
          Issue Type: Bug
    Affects Versions: 1.1.1
         Environment: Weblogic 8, DWR2.0, Java 1.4/1.5, WindowsXP
            Reporter: Palani Kumar Pounraj
            Priority: Blocker
             Fix For: 1.1.1


Getting the following exception while implementing DWR2.0 to the existing application. The commons-logging.jar is there in the classpath, but still, facing this issue. 

java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory
        at org.directwebremoting.dwrp.PollHandler.<clinit>(PollHandler.java:443)
        at java.lang.Class.forName0(Native Method)
        at java.lang.Class.forName(Class.java:141)
        at org.directwebremoting.impl.ContainerUtil.class$(ContainerUtil.java:97)
        at org.directwebremoting.impl.ContainerUtil.setupDefaults(ContainerUtil.java:150)
        at org.directwebremoting.impl.ContainerUtil.setupDefaultContainer(ContainerUtil.java:125)
        at org.directwebremoting.servlet.DwrServlet.init(DwrServlet.java:73)
        at weblogic.servlet.internal.ServletStubImpl$ServletInitAction.run(ServletStubImpl.java:1028)
        at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
        at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
        at weblogic.servlet.internal.ServletStubImpl.createServlet(ServletStubImpl.java:904)
        at weblogic.servlet.internal.ServletStubImpl.createInstances(ServletStubImpl.java:883)
        at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:822)
        at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:535)
        at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:373)
        at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:315)
        at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6718)
        at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
        at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
        at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3764)
        at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2644)
        at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
        at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)


Please let me know the possible solution as soon as possible. its blocking the work flow for the past two days.

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (LOGGING-141) Getting NoClassDefFoundError

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

Joerg Schaible updated LOGGING-141:
-----------------------------------

    Summary: Getting NoClassDefFoundError  (was: Getting )

You have obviously multiple commons-logging implementations in your classpath and this is the normal error for such a case (not specific to commons-logging).

> Getting NoClassDefFoundError
> ----------------------------
>
>                 Key: LOGGING-141
>                 URL: https://issues.apache.org/jira/browse/LOGGING-141
>             Project: Commons Logging
>          Issue Type: Bug
>    Affects Versions: 1.1.1
>         Environment: Weblogic 8, DWR2.0, Java 1.4/1.5, WindowsXP
>            Reporter: Palani Kumar Pounraj
>            Priority: Blocker
>              Labels: logging
>             Fix For: 1.1.1
>
>
> Getting the following exception while implementing DWR2.0 to the existing application. The commons-logging.jar is there in the classpath, but still, facing this issue. 
> java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory
>         at org.directwebremoting.dwrp.PollHandler.<clinit>(PollHandler.java:443)
>         at java.lang.Class.forName0(Native Method)
>         at java.lang.Class.forName(Class.java:141)
>         at org.directwebremoting.impl.ContainerUtil.class$(ContainerUtil.java:97)
>         at org.directwebremoting.impl.ContainerUtil.setupDefaults(ContainerUtil.java:150)
>         at org.directwebremoting.impl.ContainerUtil.setupDefaultContainer(ContainerUtil.java:125)
>         at org.directwebremoting.servlet.DwrServlet.init(DwrServlet.java:73)
>         at weblogic.servlet.internal.ServletStubImpl$ServletInitAction.run(ServletStubImpl.java:1028)
>         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
>         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
>         at weblogic.servlet.internal.ServletStubImpl.createServlet(ServletStubImpl.java:904)
>         at weblogic.servlet.internal.ServletStubImpl.createInstances(ServletStubImpl.java:883)
>         at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:822)
>         at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:535)
>         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:373)
>         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:315)
>         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6718)
>         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
>         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
>         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3764)
>         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2644)
>         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
>         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
> Please let me know the possible solution as soon as possible. its blocking the work flow for the past two days.

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Closed: (LOGGING-141) Getting NoClassDefFoundError

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

Joerg Schaible closed LOGGING-141.
----------------------------------

    Resolution: Invalid

Fine, but in this case you could have closed th issue yourself. Please ask next time first on the user's list if you have a problem.

> Getting NoClassDefFoundError
> ----------------------------
>
>                 Key: LOGGING-141
>                 URL: https://issues.apache.org/jira/browse/LOGGING-141
>             Project: Commons Logging
>          Issue Type: Bug
>    Affects Versions: 1.1.1
>         Environment: Weblogic 8, DWR2.0, Java 1.4/1.5, WindowsXP
>            Reporter: Palani Kumar Pounraj
>            Priority: Blocker
>              Labels: logging
>             Fix For: 1.1.1
>
>
> Getting the following exception while implementing DWR2.0 to the existing application. The commons-logging.jar is there in the classpath, but still, facing this issue. 
> java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory
>         at org.directwebremoting.dwrp.PollHandler.<clinit>(PollHandler.java:443)
>         at java.lang.Class.forName0(Native Method)
>         at java.lang.Class.forName(Class.java:141)
>         at org.directwebremoting.impl.ContainerUtil.class$(ContainerUtil.java:97)
>         at org.directwebremoting.impl.ContainerUtil.setupDefaults(ContainerUtil.java:150)
>         at org.directwebremoting.impl.ContainerUtil.setupDefaultContainer(ContainerUtil.java:125)
>         at org.directwebremoting.servlet.DwrServlet.init(DwrServlet.java:73)
>         at weblogic.servlet.internal.ServletStubImpl$ServletInitAction.run(ServletStubImpl.java:1028)
>         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
>         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
>         at weblogic.servlet.internal.ServletStubImpl.createServlet(ServletStubImpl.java:904)
>         at weblogic.servlet.internal.ServletStubImpl.createInstances(ServletStubImpl.java:883)
>         at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:822)
>         at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:535)
>         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:373)
>         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:315)
>         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6718)
>         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
>         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
>         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3764)
>         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2644)
>         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
>         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
> Please let me know the possible solution as soon as possible. its blocking the work flow for the past two days.

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (LOGGING-141) Getting NoClassDefFoundError

Posted by "Palani Kumar Pounraj (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/LOGGING-141?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12992399#comment-12992399 ] 

Palani Kumar Pounraj commented on LOGGING-141:
----------------------------------------------

Thanks for the comment. Got cleared.

> Getting NoClassDefFoundError
> ----------------------------
>
>                 Key: LOGGING-141
>                 URL: https://issues.apache.org/jira/browse/LOGGING-141
>             Project: Commons Logging
>          Issue Type: Bug
>    Affects Versions: 1.1.1
>         Environment: Weblogic 8, DWR2.0, Java 1.4/1.5, WindowsXP
>            Reporter: Palani Kumar Pounraj
>            Priority: Blocker
>              Labels: logging
>             Fix For: 1.1.1
>
>
> Getting the following exception while implementing DWR2.0 to the existing application. The commons-logging.jar is there in the classpath, but still, facing this issue. 
> java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory
>         at org.directwebremoting.dwrp.PollHandler.<clinit>(PollHandler.java:443)
>         at java.lang.Class.forName0(Native Method)
>         at java.lang.Class.forName(Class.java:141)
>         at org.directwebremoting.impl.ContainerUtil.class$(ContainerUtil.java:97)
>         at org.directwebremoting.impl.ContainerUtil.setupDefaults(ContainerUtil.java:150)
>         at org.directwebremoting.impl.ContainerUtil.setupDefaultContainer(ContainerUtil.java:125)
>         at org.directwebremoting.servlet.DwrServlet.init(DwrServlet.java:73)
>         at weblogic.servlet.internal.ServletStubImpl$ServletInitAction.run(ServletStubImpl.java:1028)
>         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
>         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
>         at weblogic.servlet.internal.ServletStubImpl.createServlet(ServletStubImpl.java:904)
>         at weblogic.servlet.internal.ServletStubImpl.createInstances(ServletStubImpl.java:883)
>         at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:822)
>         at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:535)
>         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:373)
>         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:315)
>         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6718)
>         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
>         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
>         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3764)
>         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2644)
>         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
>         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
> Please let me know the possible solution as soon as possible. its blocking the work flow for the past two days.

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira