Hi Mark,
Tx so much, I really appreciate your explanation.
Dont you think that it could be interesting to have some kind of mechanism that creates a new transaction for each thread created by a...
Type: Posts; User: Alvaro V.G.; Keyword(s):
Hi Mark,
Tx so much, I really appreciate your explanation.
Dont you think that it could be interesting to have some kind of mechanism that creates a new transaction for each thread created by a...
Hi Oleg,
I get your point but in my case I have a new Thread where I execute two independent tasks sequentially and for that reason I thought that maybe I could join both to the same transaction....
Well here is the configuration,
<!-- ####################### START POINT - GATEWAY###################################################### -->
<integration:gateway...
I have a gateway that sends a message to the channel exportChannel. This channel has a task executor that dispatches the message asynchronously (in other thread).
can the TX be used in the other...
Hi,
I have a question about Transactions in Spring integration.
Let's assume the following case.
<integration:publish-subscribe-channel id="exportChannel"
...
Hi Mark,
i really appreciate your answer. It explains everything.
Tx so much.
Regards
Alvaro
the next lines are part of my spring integration application context
<!-- #######################ASYNCHORNOYUS CHANNEL########################################### -->
...
Hi guys,
I found the right configuration for using Authentication/Authorization with ActiveMQ using spring integration:
<!-- ###################### PRODUCER...
Hi guys,
I found the right configuration for using Authentication/Authorization with ActiveMQ using spring integration:
<!-- ###################### PRODUCER...
Ok, I will. Tx.
Hi,
In one of my tests I have an activemq embedded (5.3.0) configured to force the producer to authenticate in a specific queue before sending the message.
The configuration is the following:
...
Hi,
In one of my tests I have an activemq embedded (5.3.0) configured to force the producer to authenticate in a specific queue before sending the message.
The configuration is the following:
...
Hi,
In one of my tests I have an activemq embedded (5.3.0) configured to force the producer to authenticate in a specific queue before sending the message.
The configuration is the following:
...
Hi Dave,
I appreciate your help a lot.
I have a use case to propose you.
Assuming that MyTransferObject class is something like that
public class MyTransferObject {
Let say that we have the following code:
final MyTransferObject to = new MyTransferObject();
......
RetryCallback<MyTransferObject> callback = new RetryCallback<MyTransferObject>() {
public...
Hi, keep working in the idea of this thread I have a question about stateful RetryTemplate.
Let say that we have the following code:
final MyTransferObject to = new MyTransferObject();
.........
Hi,
Tx a lot Oleg for the idea.
I have been testing with stateless RetryPolicy in a RetryTemplate and the test was ok. Now I am going to focus my tests in a stateful RetryPolicy.
As soon as I...
Hi,
I want to implement the 'retry policy' in both cases.
Right now it is not a priority the number of times. I prefer to think how to face the problem.
I was thinking to use 'ReplyTemplate'...
Hi,
Currently I am working with Spring Integration framework and I need to apply a retry policy in a service (Service activator) that persists information in DB.
In the case of exception I...