I'm not sure I understand your scenario. But I think you're looking for the int-jdbc:inbound-channel-adapter. Gary will correct me if I'm wrong, but the poller on the outbound gateway only defines...
Type: Posts; User: mgirard; Keyword(s):
I'm not sure I understand your scenario. But I think you're looking for the int-jdbc:inbound-channel-adapter. Gary will correct me if I'm wrong, but the poller on the outbound gateway only defines...
Another couple of things you can try:
in your error handling route, set up a logging outbound adapter instead of the transformer have it dump the message for a quick debug.
...
In the spring integration reference document it shows the sprint-int mail outbound channel adapter as:
<int-mail:header-enricher subject="Example Mail"
to="to@example.org"...
Thanks, Gary! Once again you've set me on the proper path. Spring-Int team FTW!
(BTW- I'm OK with a RTFM response ;) )
Here's where I got off....
From the post about "What's new in 2.2..."
So, I assumed that if you had direct channels and an error happened on the...
I guess it's just stuck in my head that conceptually a gateway always expects a return. :)
Is it just a matter of putting a low reply timeout? Or is there a better way?
At one point we were...
OK. Long post. I think the issue here is that I'm trying to catch a downstream error - I can understand why it might not work, but what I had read in one of the posts about 2.2 features implied that...
Thank you for taking the time,Gary. I really appreciate it. It's a complex flow, so I'll work It down to a simple example of when it doesn't work and post the final routing. As I go along , I'll...
OK... this isn't working. Apparently I have something misconfigured or misunderstood
Everything is set up as a direct channel. The billingServicesSender just throws a Runtime exception. I'm...
The one thing I forgot to mention w/ this split/aggregate stuff is that if a split message fails somewhere, you have to remember to handle the error and pass something on to the aggregator -...
We had to do something similar to this - but decided to do something like a claim check type pattern (assuming you have some sort of split/aggregate route). This way if we ended up scaling processing...
In the past, we've played around with using different tools to handle error in spring int flows, with mixed success.
- Error Gateways - Work as advertised, errors can route to the errorChannel....
Thanks, Gary, exactly what I needed to know.
Quick question for someone with internals knowledge -
As an example, if I have a service activator that has stateless retry advice on it, and a retry might take a while (think very slow external...
Has anyone run into this? I haven't found anything on the intertubes yet, and haven't run remote debugging (yet...)
----------------
I've run into an issue where I've configured Spring MVC 3.2 with...
In most normal-flow cases I do want that error to come back, but it's nice to have the option. Now it's back to work...
Thank you both for the quick response!
So all subscribers are executed sequentially based on the order, and if the first one fails an error is bubbled back up the chain (to the gateway)? Otherwise the 2nd subscriber will execute, and so...
I'm trying to do something simple, but can't seem to get it to work. The use case is something like this:
I want to send a quick rest call to trigger an event into a spring route, that event...