Sorry for me being so impatient .. this thing is making me go crazy :) . Just not able to figure out the reason.
Anyways, I am not sure if the exception is getting swallowed by ActiveMq, because...
Type: Posts; User: atinsood; Keyword(s):
Sorry for me being so impatient .. this thing is making me go crazy :) . Just not able to figure out the reason.
Anyways, I am not sure if the exception is getting swallowed by ActiveMq, because...
Is my post missing any information, why is no one replying :(
I am using DMLC(DefaultMessageListenerContainer) from Springs 2.5.1
I am setting an exception Listener against this DMLC instance. Now if I test this against Weblogic and bring down the Weblogic...
Found similar link here
http://forum.springsource.org/showthread.php?t=56634
Think this will be helpful
I am trying to set the destinationName as null in the DefaultMessageListenerContainer and am setting the destination using the destination param
even though the documentation states that...
Alll i did to fix is get the destination also via jndi lookup
<bean id="weblogicQ" class="org.springframework.jndi.JndiObjectFactoryBean" lazy-init="true" scope="prototype" >
<property...
I have a bean in which one of the properties need to be set with "this" keyword. Basically one of the property of the bean needs to be the instance of bean itself that is creating it.
Not sure how...
I am trying to use custom class loader with my JMS application. This is the code i am trying
//my custom class loader
SegmentedClassLoader loader =new SegmentedClassLoader("location of jars",...
Hey
I think I know wat are you talkin about, even I had the same doubt. If you read this paragraph from Spring's doumentation, it will make things clear. SO the good thing about Listener container...
Thanks navdeep..
Just wondering, wat do u means by the core pool size of MDP's, is it the total of concurrentConsumers also maxConcurrentConsumers.
Also, will this thread pool serve all my...
Yup you are rite.. that is wat m actually doing in the second approach. Why springs, I am actually using Spring for JMS where in springs provide me DefaultMEssageListenerContainers, helps me to pool...
Thx for the help
http://forum.springsource.org/showthread.php?t=72245
is wat I am talkin about. The second approach shows how to do it via code but then this is not springs way of doing things....
I actually need to create beans out of the config file.My problem is I need to specify some of the props as variables
<?xml version="1.0" encoding="UTF-8"?>
<beans...
Thanks for the reply.
So, from wat i learnt u need to call stop --> initialize --> start if you want change your destination or for that matter i guess any member level variable for DCL.
What I...
Navdeep, do you mind sharing a sample config file. Would be a great help.
We have a requirement where in we need to use a default message listener container to listen to multiple destinations.
Also these destination can be across multiple providers. WhatI have got from...
Is anything wrong with the question, or anything that doesn't make sense. I am wondering why i sno one replying
I was going through how JMS can be configured using Springs. In one of my previous posts on consumer pooling in JMS I was told I can use any of these. Can anyone please highlight what are the pros...
thx rober...
so basically if spring app is running in some container like web container then there is no need for getBeans.. ok
but if i am writing simple test code say a static void main and...
I was going through the spring documentation and read this paragraph
"indeed, your application code should have no calls to the
getBean(String) method at all, and thus no dependency on Spring...