Re: [JBoss-user] How to look up queue with jboss3.0

2002-06-14 Thread Slava Voronin
try lookup("ConnectionFactory") ch ejb wrote: > hi there, > i am getting error when iam looking a queue in jboss3.0. > the error is > JNDI lookup failed: javax.naming.NameNotFoundException: > QueueConnectionFactory > > how can i look up a queue named A from the Queue coonection?? > my pieces o

Re: [JBoss-user] How to look up queue with jboss3.0

2002-06-14 Thread ch ejb
ECTED] >Subject: Re: [JBoss-user] How to look up queue with jboss3.0 >Date: Fri, 14 Jun 2002 09:13:56 +0200 > > > QueueConnectionFactory queueConnectionFactory = null; > > QueueConnection queueConnection = null; > > QueueSessionqueueSession = null

Re: [JBoss-user] How to look up queue with jboss3.0

2002-06-14 Thread Ionel Gardais
> QueueConnectionFactory queueConnectionFactory = null; > QueueConnection queueConnection = null; > QueueSessionqueueSession = null; > Queue queue = null; > QueueSender queueSender = null; > > jndiContext = new InitialContext(); > queueName = new

[JBoss-user] How to look up queue with jboss3.0

2002-06-13 Thread ch ejb
hi there, i am getting error when iam looking a queue in jboss3.0. the error is JNDI lookup failed: javax.naming.NameNotFoundException: QueueConnectionFactory how can i look up a queue named A from the Queue coonection?? my pieces of related code is as follows:(this works fine with Jboss2.4.3)