Hi,
I am trying to acknowledge the message in my MessageListener implementation by making a call to jmsMessage.acknowledge() but even before this call happens the message is removed from Queue
...
Type: Posts; User: vishalj; Keyword(s):
Hi,
I am trying to acknowledge the message in my MessageListener implementation by making a call to jmsMessage.acknowledge() but even before this call happens the message is removed from Queue
...
Hi,
Is there a way to add to the bean defiantions after application context is fully initialized
Regards,
Vishal
Hi,
I have set JMSXGroupID in message headers and sending it all over to a JMS broker(activeMQ) .On receiving the same header is missing .
Regards,
Vishal
I am instead using message driven channel adapter
<si-jms:message-driven-channel-adapter
acknowledge="dups-ok" id="jmsIn" channel="RECEIVER_CHANNEL" container="messageListener"...
This is how my listener configuration looks like .
<bean id="queueName" class="org.apache.activemq.command.ActiveMQQueue"
autowire="constructor">
<constructor-arg value="${queue}" />...
Hi,
How do i control the ordering of incoming messages with org.springframework.jms.listener.DefaultMessageListenerContainer
I had set concurrentConsumers to 1 .But still i see multiple threads...
Hi,
Where can i get the source code for spring-dm-server-2.0.0
Regards,
Vishal
I faced a problem when inheriting bean defination for JmsTemplate .
The bean defination in my xml looks like
<bean id="TEMPLATE" abstract="true">
<beans:property name="messageIdEnabled"...
Is it required to follow the order while importing multiple bean defination files using <import> tag
Hi,
I have a sample application with multiple bundles deployed under dm-server ,
AspectBundle,InterfaceBundle,ImplBundle.
In AspectBundle i have defined my Aspect and aop.xml
In...
Thanks Marten ,
Writing my own implementation will solve it .But some flag would have been appreciated , setting on some flag would have always returned me CGLIB proxy .
One more doubt out of...
I did extend RmiProxyFactoryBean and in the implementation of afterPropertiesSet method used used following
ProxyFactory factory = new ProxyFactory(getServiceInterface(),this);...
Hi,
Is there a way i can force RmiProxyFactoryBean to use CGLib to create underlying proxy for remote stub.
Regards,
Vishal
Hi,
I have a remote service implementation using spring RMI .I wanted to apply AOP over the remote method call .But the remote reference comes out to be null when i invoke some remote method .My...
thanks for the reply .It worked for me ,the only thing i changed is the xsd defination in my context.xml for spring-osgi
Regards
Vishal
I have used @Scheduled(fixedDelay=1000*60*60) in one of my methods .But it seems to be hard-coded in code itself .Can it be configured from some property or something
Regards,
Vishal
I dont get any Exceptions in logs. All i get is bundle deployment failure .May be i will try the same with dummy bundle and reply back soon
Regards,
Vishal
Hi, I have an spring mvc based web-app where in i have integrated spring-security.
My requirement is to inject an osgi service reference in one of custom filters in security-filter chain.But i am...
how can i configure the time taken for server startup
Regards
Vishal
We tried out a sample bundle deployment on springsource-dm-server-2.0.0.RELEASE and Terracotta-3.2.0-ee.
A shared object (com.pg.dm.MyObject) was loaded from boot classpath.
A...
my spring message tag looks like :
<spring:message code="MESSAGE" text="Balance" arguments="${account.message},${account.date}"/>
Here first argument is string and second is date .
My...
Hi,
I wanted to display some date fields in my jsp . I used spring:message tag with message defined in resourcebundle as follows
DUMMY_KEY=DUMMY_MESSAGE {0} {1,date}
When i use date alone in...
Hi,
I am facing the same problem . Any solution will be a great help
Regards,
Vishal
Thanks for the reply
I added <mvc:interceptors> and it worked for me .
Regards,
Vishal
Hi,
Is there a way i can get text for my <spring:message> tag for jsp in a slice from resourcebundle loaded through host
Regards,
Vishal