Re: Exception in createSesson() inside an EJB user transaction

2016-03-22 Thread THMayr
Hi Tim, here the complete list of imports: import javax.ejb.MessageDrivenContext; import javax.jms.Connection; import javax.jms.ConnectionFactory; import javax.jms.DeliveryMode; import javax.jms.Destination; import javax.jms.JMSException; import javax.jms.Message; import javax.jms.MessageListener

Re: Error getting Queue size

2016-03-22 Thread Rohit Sonawat
you have to explicitly handle your code, there might be many changes as you are doing big jump from 5.6 to 5.12.2 and there is no issue in AMQ -- View this message in context: http://activemq.2283324.n4.nabble.com/Error-getting-Queue-size-tp4709767p4709896.html Sent from the ActiveMQ - User ma

Re: external ActiveMQ 5.13.2 + WildFly 9.0.2

2016-03-22 Thread Tim Bain
The best way to create a queue is to subscribe to it or to publish a message to it. The broker will create the queue automatically when either of those two things happen. On Mar 17, 2016 12:24 PM, "zappee" wrote: > Hi, > > I am preparing my first ActiveMQ environment with WildFly App Server. > I

Re: Exception in createSesson() inside an EJB user transaction

2016-03-22 Thread Tim Bain
Here's part of the stack trace: "at de.adesso.tma.test.ejb.TestMessageBean.onMessage(TestMessageBean.java:212)" Can you tell us what is at line 212 and the types of any objects referenced in it (including packages)? I'd also try to figure out what version of org.apache.activemq.ra.ManagedConnecti

Re: Error getting Queue size

2016-03-22 Thread Tim Bain
Is there a reason why you're not doing what the error message implies and changing your code to cast to (and therefore use) org.apache.activemq.broker.region.virtual.MappedQueueFilter instead of Queue? That seems like the obvious answer, unless there's more to your question than what you've asked.

Re: NFS v4 locks "given up" w/o any logging?

2016-03-22 Thread Paul Gale
We're using the following with our NetApp device: -rw,soft,intr,noexec,nosuid,nodev,users,rsize=65535,wsize=65535,proto=tcp ​Whilst 'soft' is generally not recommended I've found that using 'hard' causes the broker to lock up immediately. The settings we have in place above were chosen by our sto

Re: NFS v4 locks "given up" w/o any logging?

2016-03-22 Thread James A. Robinson
To answer my own question, no (at least not NFS 4): https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/6/html/Storage_Administration_Guide/ch-nfs.html On Mon, Mar 21, 2016 at 3:46 PM James A. Robinson wrote: > I suppose I should pose the question to folks that use NFS, do y

Re: 'AllowLinkStealing' does not work for TCP transport with leveldb persistent store

2016-03-22 Thread Tim Bain
Rob's comment on https://issues.apache.org/jira/plugins/servlet/mobile#issue/AMQ-4719 shows it being set via a URI parameter; can you see if it works when specified that way? On Mar 22, 2016 9:33 AM, "khandelwalanuj" wrote: > Hi, > > Broker config is attached in last update. > > I have also verif

Re: 'AllowLinkStealing' does not work for TCP transport with leveldb persistent store

2016-03-22 Thread khandelwalanuj
Hi, Broker config is attached in last update. I have also verified same behavior by overriding addConnection() : /@Override public void addConnection(ConnectionContext context, ConnectionInfo info) throws Exception { LOG.info("Allowed link stealing is : " + context.is

Re: Error getting Queue size

2016-03-22 Thread Ravi1978
It is a "Virtual Topic". Sorry i didn't mention that clearly -- View this message in context: http://activemq.2283324.n4.nabble.com/Error-getting-Queue-size-tp4709767p4709875.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.