Bugs item #646244, was opened at 2002-12-01 00:29
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=376685&aid=646244&group_id=22866

Category: JBossMQ
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Joerg Zissel (jzljzl)
Assigned to: Nobody/Anonymous (nobody)
Summary: SpyJMSException: durableSubName==null

Initial Comment:
My testmdb.ear consists of three MessageDriven 
Beans. When I deploy it, I get an 
org.jboss.mq.SpyJMSException. I think,
the cause of this Exception is that the durable 
subscription name (jbossmq-state.xml) doesn't arrive in
org.jboss.mq.DurableSubscriptionID.DurableSubscriptionI
D( String id, String subName, String selector ).
subName is null. The following patch solves the problem 
for the moment:
    
    public DurableSubscriptionID(
        String id, String subName,
        String selector ) {

        //-----------------------        
        if(subName==null)
            subName="mySubName";
        //-----------------------        
        
        this.clientID = id;
        this.subscriptionName = subName;
        this.selector = selector;
    }

See attachment for further information.


----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=376685&aid=646244&group_id=22866


-------------------------------------------------------
This SF.net email is sponsored by: Get the new Palm Tungsten T 
handheld. Power & Color in a compact size! 
http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0002en
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to