We are still seeing the problem (interceptor not working for JMS channel)
We are currently using Spring Integration 2.0.1
Type: Posts; User: rgupta12; Keyword(s):
We are still seeing the problem (interceptor not working for JMS channel)
We are currently using Spring Integration 2.0.1
I have read through B.4 Error Handling, but is there a bit more detail on when "errors" are put on this channel (under what conditions), it seems a bit vague from what I have read,
Regards,
Spring Integration 2.0 GA
We have an interceptor (to add header info), works on a channel, but not on a jms-channel?
singleLMRecords is a JMS channel
others (singleLMRecordsTemp) are not, and it...
We have inbound pollers
<int-jdbc:inbound-channel-adapter running on two weblogic servers hitting a single database, I know it is has been discussed (table locking, etc), but is it suggested to...
I am confused about using <jms:listener
vs.
a bean with DefaultMessageListenerContainer?
Can anyone shed some light, it seems I want a pojo to process the message so jms:listener is the way to...
It was suggested, I was hoping for an example as I am struggling with it, but I will do some digging around,
thanks
Having trouble, using eclipselink, and getting
javax.persistence.TransactionRequiredException:
Exception Description: No externally managed transaction is currently active for this thread
...
Sure, we have a jdbc poller that takes messages from database, we want these persisted and put on jms queue, so I have a jms channel that does that.
After that, we have a chain that basically...
Can someone point me in the right direction, we need the service-activator to be multi-threaded, I do not know how to do this
<jms:channel id="fileRequests" message-driven="true"...
Hoping you could give a hint, we are going the route you suggested, however how do I "insert" the DefaultMessageListenerContainer inside the chain?
Maybe this is right approach?
...
Could you shed a bit of light on that,
1. I am going to open a jira - we agree on that?
2. please shed some light on a solution (multi threaded) that will give us same functionality as the code I...
Does that make sense? It is a requirement
Works nicely when I do:
message-driven="true"
, (transacted), keeps retrying. (I put in a dummy service activator <!-- <int:service-activator input-channel="fileRequests" ref="test"...
Since we are testing using a jdbc poller, I need to create a subscriber and onmessage consumer
I will try it, we need it to be false since we are using a JMS queue, and the chain is a pollable subscriber (jdbc poller), see below
<int-jdbc:inbound-channel-adapter channel="fileRequests"...
Works, question though, I have used
acknowledge="transacted"
on a message-driven-channel-adapter,
and it worked like a charm, ANY exception throws after the message was recieved put the message...
last question, we want to have the jms channel feed into a chain, is destination-resolver the correct parameter (please see below)
<jms:channel id="fileRequests" message-driven="false"...
This is the version, will M7 fix this?
thanks!
Nov 4, 2010 12:37:07 PM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
INFO: Loading XML bean definitions from URL...
We are not using it, the question pertains to Spring Integration, can you shed some light while the toolsuite would alleviate the problem?
2.0
But it looks like a valid parameter
http://www.springframework.org/schema/integration/jms/spring-integration-jms-2.0.xsd
Just Developer, do you have a suggestion?
Thanks!
Can anyone help, xsd says it it is valid?
http://www.springframework.org/schema/integration/jms/spring-integration-jms-2.0.xsd
<jms:channel id="fileRequests" message-driven="false"...
We have a jdbc poller, and a jms channel that take the records and put them on a queue.
We then want a channel to recieve the messages (pollable) from the queue and begin processing.
Here is the...