Thanks for the detailed response, I really appreciate it. Sorry to respond late, I've been out.
Yes, you're right. These are two different problems, I believe using File Payloads and streaming...
Type: Posts; User: Kiwiland; Keyword(s):
Thanks for the detailed response, I really appreciate it. Sorry to respond late, I've been out.
Yes, you're right. These are two different problems, I believe using File Payloads and streaming...
Thanks for the response. Yes, I understand that using File payloads writes the message to the same system. I'm considering using a centralized repository(disk location) to which the Files will be...
Thanks Marten, I really appreciate your response.
Cheers!
Hi,
My application reads large files from which SI Messages are constructed. The Message is then transformed to a byte array and put through various JMS Queues for processing. I've been running...
Great, thanks. I really appreciate your response.
Hi,
Should I be writing my own JMS Outbound Adapter to be able to specify a Queue at runtime? Just checking if there's an easier option before I head that way. I don't want to create N outbound...
Not sure where the problem is, but I got around it by making the hibernate session to flush and catch such exceptions well before Tx Commit. Thanks.
Hi,
Is there a way I can specify a destination on the jms outbound adapter using a header property? I couldn't find anything related to this in the reference documentation or the samples. Not sure...
Hi,
I've configured an ErrorChannel with an Inbound JMS Gateway. If I throw a RuntimeException from one of the service activators, I can see that the error message gets put onto the ErrorChannel....
Awesome, thanks. I will get rid of the TransactionalGatewayInvoker. Yes, I have quite a few components in the chain, but I had not included it in my post so it's easier for you to figure out what I'm...
Mark,
Thank you so much for your response. I got it to work by using Gateways. I may not necessarily have done it the most efficient way, but I will refactor it when I get more comfortable with SI....
Thank you for your response, I appreciate it. Sorry that I wasn't very clear.
In the below code, SomeDAO.insert() writes something to the database. Then the message is passed onto...
Hello,
Pardon me if this is a silly question. I'm trying to do the following:
1. Read from a File and write to a Direct Channel.
2. Perform some database operations. (ServiceActivator)
3....
Thank you, Gary. I really appreciate your response. My naive brain thought that anything under the DirectChannel would be "automatically" be part of "one" transaction. I see that the documentation...
Hello,
I'm getting some interesting transaction behavior on Direct Channels. Here's what I'm doing:
1. Read from a File and write to a Direct Channel.
2. Start a Chain
3. Perform Database...