Forgot to add the workaround!
Modify the .classpath file as follows:
1) move the src/test/resources in front of the src/main/resources element.
2) Remove the 'excluding="**"' from both resource...
Type: Posts; User: Gorky; Keyword(s):
Forgot to add the workaround!
Modify the .classpath file as follows:
1) move the src/test/resources in front of the src/main/resources element.
2) Remove the 'excluding="**"' from both resource...
When STS creates a .classpath file on a Gradle project, the following entries are created (in the following order),
<classpathentry excluding="**" kind="src" output="build/resources/main"...
Greetings.
When the STS Gradle plugin generates artifacts (class files, resource files, etc), should they not be put in the same place and same layout as Gradle uses? And should there be "Checks"...
On later review, I realized that this should be "CONVERSATION_ID" for the header attribute, NOT the previous payload.headers.CONVERSATION_ID. However, due to the previous comments, that still did...
The config I am using:
<aggregator ref="projectAggregator"
input-channel="aggrChannel"
correlation-strategy-expression="payload.headers.CONVERSATION_ID"
...
Did some debugging.
It seems that the setting of "correlation-strategy-expression=" is ignored, and instead "correlationId" ID is always used as the value.
This seems to be caused by the fact...
- Message has no payload (IBM MQ Header: content = nil) – JMS Listener throws an Exception that does NOT get passed to the errorchannel, but instead rolls the transaction back, leaving message on the...
Any ideas why not all Errors are being redirected to the ErrorChannel? How do I configure an "ErrorListener"?
-Steve
Greetings.
I've been seeing this showing up on more and more machines starting from last week as well. At first, I thought it was just an Eclipse issue on my machine, but now it's being reported...
That link seems to be SI 1.x, NOT 2.x, which is what I am working with. What I came up with was;
<router input-channel="errorChannel" default-output-channel="defaultErrorChannel">
...
Question: How do you configure ErrorMessageExceptionTypeRouter? I've not found any examples anywhere in the documentation?
Answer: (Found this while looking for examples in Google)...
Yes, much, thanks!
Hi Mark.
Thanks for the reply.
JMS Adapter -> Transformer -> JDBC Processor (End Consumer)
Transformer - errors here need to be consumed.
JDBC Processor - unhandled errors here need to be...
Hi Mark.
Sorry we missed in Dallas -- that was a really nasty storm a couple of weeks ago.
Unfortunately, until we try to Transform the Message from XML to a Jaxb object, we don't know if it's...
Transformer generates a dummy object for the invalid message, Router routes to a dummy processor. There has GOT to be a better way of handling this scenario.
Greetings.
This scenario is a little complex (sorry).
Transaction Start
JMS->Sends XML->SI Listener->Transformer->Router->Processor->Database
Transaction End
"Happy Path" is working.
Greetings.
According to http://static.springsource.org/spring-integration/reference/htmlsingle/#jdbc-inbound-channel-adapter, all rows available to a query are retrieved at once, and then...
Should I need to mention that <int:annotation-config/> does NOT create the channel, even though this is implied in...
I just realized that I could have been a little bit clearer:
In my project, its not always known until runtime what classes & modules are available, so is there a way to configure the channels to...
Greetings.
I have an application were a variable number of Services (SI ServiceActivators) may be deployed. Which Services are deployed is determined at Runtime. (Especially as some are ONLY...