You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@mina.apache.org by "Goran Oberg (JIRA)" <ji...@apache.org> on 2007/08/16 17:29:31 UTC

[jira] Created: (DIRMINA-420) Missing Class in latest maven snapshot

Missing Class in latest maven snapshot
--------------------------------------

                 Key: DIRMINA-420
                 URL: https://issues.apache.org/jira/browse/DIRMINA-420
             Project: MINA
          Issue Type: Bug
    Affects Versions: 2.0.0-M1
            Reporter: Goran Oberg
            Priority: Critical
             Fix For: 2.0.0-M1


Latest maven  Mina 2.0.0 M1 snapshot Jar doesn't contain the SessionLog class

java.lang.NoClassDefFoundError: org/apache/mina/util/SessionLog
	at org.apache.mina.filter.SSLFilter.sessionClosed(SSLFilter.java:393)
	at org.apache.mina.common.AbstractIoFilterChain.callNextSessionClosed(AbstractIoFilterChain.java:320)

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


Re: [jira] Created: (DIRMINA-420) Missing Class in latest maven snapshot

Posted by Mike Heath <mh...@apache.org>.
Goran,

Is it possible you're still using the old mina-ssl .jar?  The SSL filter 
has been moved into mina-core in TRUNK.

-Mike

Goran Oberg (JIRA) wrote:
> Missing Class in latest maven snapshot
> --------------------------------------
> 
>                  Key: DIRMINA-420
>                  URL: https://issues.apache.org/jira/browse/DIRMINA-420
>              Project: MINA
>           Issue Type: Bug
>     Affects Versions: 2.0.0-M1
>             Reporter: Goran Oberg
>             Priority: Critical
>              Fix For: 2.0.0-M1
> 
> 
> Latest maven  Mina 2.0.0 M1 snapshot Jar doesn't contain the SessionLog class
> 
> java.lang.NoClassDefFoundError: org/apache/mina/util/SessionLog
> 	at org.apache.mina.filter.SSLFilter.sessionClosed(SSLFilter.java:393)
> 	at org.apache.mina.common.AbstractIoFilterChain.callNextSessionClosed(AbstractIoFilterChain.java:320)
> 


[jira] Resolved: (DIRMINA-420) Missing Class in latest maven snapshot

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

Mike Heath resolved DIRMINA-420.
--------------------------------

    Resolution: Invalid

org.apache.mina.util.SessionLog has been moved to org.apache.mina.common.SessionLogger

> Missing Class in latest maven snapshot
> --------------------------------------
>
>                 Key: DIRMINA-420
>                 URL: https://issues.apache.org/jira/browse/DIRMINA-420
>             Project: MINA
>          Issue Type: Bug
>    Affects Versions: 2.0.0-M1
>            Reporter: Goran Oberg
>            Priority: Critical
>             Fix For: 2.0.0-M1
>
>
> Latest maven  Mina 2.0.0 M1 snapshot Jar doesn't contain the SessionLog class
> java.lang.NoClassDefFoundError: org/apache/mina/util/SessionLog
> 	at org.apache.mina.filter.SSLFilter.sessionClosed(SSLFilter.java:393)
> 	at org.apache.mina.common.AbstractIoFilterChain.callNextSessionClosed(AbstractIoFilterChain.java:320)

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


[jira] Commented: (DIRMINA-420) Missing Class in latest maven snapshot

Posted by "Goran Oberg (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/DIRMINA-420?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12520281 ] 

Goran Oberg commented on DIRMINA-420:
-------------------------------------

Is this class refactored into another package? I'm not using the class, just getting this runtime exception.

java.lang.NoClassDefFoundError: org/apache/mina/util/SessionLog
	at org.apache.mina.filter.SSLFilter.sessionClosed(SSLFilter.java:393)
	at org.apache.mina.common.AbstractIoFilterChain.callNextSessionClosed(AbstractIoFilterChain.java:320)
	at org.apache.mina.common.AbstractIoFilterChain.access$900(AbstractIoFilterChain.java:43)
	at org.apache.mina.common.AbstractIoFilterChain$EntryImpl$1.sessionClosed(AbstractIoFilterChain.java:689)
	at org.apache.mina.common.AbstractIoFilterChain$HeadFilter.sessionClosed(AbstractIoFilterChain.java:540)
	at org.apache.mina.common.AbstractIoFilterChain.callNextSessionClosed(AbstractIoFilterChain.java:320)
	at org.apache.mina.common.AbstractIoFilterChain.fireSessionClosed(AbstractIoFilterChain.java:315)
	at org.apache.mina.common.IoServiceListenerSupport.fireSessionDestroyed(IoServiceListenerSupport.java:182)
	at org.apache.mina.transport.socket.nio.SocketIoProcessor.doRemove(SocketIoProcessor.java:199)
	at org.apache.mina.transport.socket.nio.SocketIoProcessor.access$700(SocketIoProcessor.java:50)
	at org.apache.mina.transport.socket.nio.SocketIoProcessor$Worker.run(SocketIoProcessor.java:517)
	at org.apache.mina.util.NamePreservingRunnable.run(NamePreservingRunnable.java:39)
	at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
	at java.lang.Thread.run(Thread.java:595)

> Missing Class in latest maven snapshot
> --------------------------------------
>
>                 Key: DIRMINA-420
>                 URL: https://issues.apache.org/jira/browse/DIRMINA-420
>             Project: MINA
>          Issue Type: Bug
>    Affects Versions: 2.0.0-M1
>            Reporter: Goran Oberg
>            Priority: Critical
>             Fix For: 2.0.0-M1
>
>
> Latest maven  Mina 2.0.0 M1 snapshot Jar doesn't contain the SessionLog class
> java.lang.NoClassDefFoundError: org/apache/mina/util/SessionLog
> 	at org.apache.mina.filter.SSLFilter.sessionClosed(SSLFilter.java:393)
> 	at org.apache.mina.common.AbstractIoFilterChain.callNextSessionClosed(AbstractIoFilterChain.java:320)

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


[jira] Commented: (DIRMINA-420) Missing Class in latest maven snapshot

Posted by "Trustin Lee (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/DIRMINA-420?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12520285 ] 

Trustin Lee commented on DIRMINA-420:
-------------------------------------

Please remove mina-filter-ssl-*.jar from your classpath if you are using trunk.  filter-ssl module has been merged into mina-core.

> Missing Class in latest maven snapshot
> --------------------------------------
>
>                 Key: DIRMINA-420
>                 URL: https://issues.apache.org/jira/browse/DIRMINA-420
>             Project: MINA
>          Issue Type: Bug
>    Affects Versions: 2.0.0-M1
>            Reporter: Goran Oberg
>            Priority: Critical
>             Fix For: 2.0.0-M1
>
>
> Latest maven  Mina 2.0.0 M1 snapshot Jar doesn't contain the SessionLog class
> java.lang.NoClassDefFoundError: org/apache/mina/util/SessionLog
> 	at org.apache.mina.filter.SSLFilter.sessionClosed(SSLFilter.java:393)
> 	at org.apache.mina.common.AbstractIoFilterChain.callNextSessionClosed(AbstractIoFilterChain.java:320)

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


[jira] Closed: (DIRMINA-420) Missing Class in latest maven snapshot

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

Emmanuel Lecharny closed DIRMINA-420.
-------------------------------------


> Missing Class in latest maven snapshot
> --------------------------------------
>
>                 Key: DIRMINA-420
>                 URL: https://issues.apache.org/jira/browse/DIRMINA-420
>             Project: MINA
>          Issue Type: Bug
>    Affects Versions: 2.0.0-M1
>            Reporter: Goran Oberg
>            Priority: Critical
>             Fix For: 2.0.0-M1
>
>
> Latest maven  Mina 2.0.0 M1 snapshot Jar doesn't contain the SessionLog class
> java.lang.NoClassDefFoundError: org/apache/mina/util/SessionLog
> 	at org.apache.mina.filter.SSLFilter.sessionClosed(SSLFilter.java:393)
> 	at org.apache.mina.common.AbstractIoFilterChain.callNextSessionClosed(AbstractIoFilterChain.java:320)

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