Hi Suresh, unfortunately the Apache mailing lists strip attachments from mails, so the we can't see your program.
>From the stack trace I see you are using the now deprecated "amqp-1-0-client-jms", which was not based on Proton, but an earlier library developed as part of the process of validating the AMQP 1.0 protocol. The new, supported, JMS client for AMQP 1.0 can be found here: https://qpid.apache.org/components/jms/ . -- Rob On 16 May 2017 at 22:06, Suresh Gade <[email protected]> wrote: > Hi > > > > I was trying to implement Windows Service Bus 1.1 with AMQP for my > project, I have installed Windows Service Bus 1.1 > > and created a Queue with the name *test* using Service Bus Explorer, > > I am testing the sample Service bus functionality with the Java program > attached in the email, > > > > When I run the Java program i am getting the ConcurrentTimeOutException > when creating the producer. > > I am pretty much new to the Service Bus thing and I tried to find out some > solution online but it wasn't successful. > > > > The servicebus.properties file contains the below content > > connectionfactory.SBCF = amqps://username:password@FQDN/ swebns > > queue.QUEUE = swebns/test > > > > Below is my console log > > > > Initial setup > > Creating context > > Creating connection factory > > Creating connection > > Creating session > > Creating queue > > Exception creating producer > > *javax.jms.JMSException*: *java.util.concurrent.TimeoutException* > > at org.apache.qpid.amqp_1_0.jms.impl.MessageProducerImpl.<init>( > *MessageProducerImpl.java:98*) > > at org.apache.qpid.amqp_1_0.jms.impl.SessionImpl.createProducer( > *SessionImpl.java:390*) > > at org.apache.qpid.amqp_1_0.jms.impl.SessionImpl.createProducer( > *SessionImpl.java:59*) > > at prerna.jms.test.QpidTest.main(*QpidTest.java:59*) > > Caused by: > *org.apache.qpid.amqp_1_0.client.Sender$SenderCreationException*: > *java.util.concurrent.TimeoutException* > > at org.apache.qpid.amqp_1_0.client.Sender.<init>(*Sender.java:178*) > > at org.apache.qpid.amqp_1_0.client.Sender.<init>(*Sender.java:119*) > > at org.apache.qpid.amqp_1_0.client.Sender.<init>(*Sender.java:112*) > > at org.apache.qpid.amqp_1_0.client.Sender.<init>(*Sender.java:98*) > > at org.apache.qpid.amqp_1_0.client.Sender.<init>(*Sender.java:84*) > > at org.apache.qpid.amqp_1_0.client.Sender.<init>(*Sender.java:78*) > > at org.apache.qpid.amqp_1_0.client.Session$1.<init>( > *Session.java:90*) > > at org.apache.qpid.amqp_1_0.client.Session.createSender( > *Session.java:89*) > > at org.apache.qpid.amqp_1_0.jms.impl.MessageProducerImpl.<init>( > *MessageProducerImpl.java:86*) > > ... 3 more > > Caused by: *java.util.concurrent.TimeoutException* > > at org.apache.qpid.amqp_1_0.transport.ConnectionEndpoint.waitUntil( > *ConnectionEndpoint.java:1232*) > > at org.apache.qpid.amqp_1_0.transport.ConnectionEndpoint.waitUntil( > *ConnectionEndpoint.java:1214*) > > at org.apache.qpid.amqp_1_0.transport.SessionEndpoint.waitUntil( > *SessionEndpoint.java:681*) > > at org.apache.qpid.amqp_1_0.transport.LinkEndpoint.waitUntil( > *LinkEndpoint.java:355*) > > at org.apache.qpid.amqp_1_0.client.Sender.<init>(*Sender.java:167*) > > ... 11 more > > > > Any help would be greatly appreciated. > > > > Thanks, > > Suresh > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] >
