Ok, now all takes sense.
I thought that the gateway was the key point, but the documentation on error handling was a little short.
Kind regards.
Massimo
Type: Posts; User: m.ugues; Keyword(s):
Ok, now all takes sense.
I thought that the gateway was the key point, but the documentation on error handling was a little short.
Kind regards.
Massimo
Hallo all:
I have this simple configuration:
<!-- Chain error handler -->
<int:chain input-channel="defaultErrorChannel" output-channel="responseChannel">
<int:service-activator...
Hello all.
I need to execute a jdbc inbound channel adapter scheduled from another system and not through the poller.
I have to integrate the channel adapter with a Scheduler application that can...
Hello all.
I have a file inbound adapter that reads a csv file.
I need to split the file content one message for row.
Which is the best way to achieve this?
Kind regards.
Massimo
Perfect. Now it's very clear.
Hello all.
I need to manage a chain within one transaction.
The chain is described below:
<int:chain input-channel="preProscessingChannel" >
<int:transformer...
Hello all.
I have this configuration:
<bean name="recursivelyScanner" class="org.springframework.integration.file.RecursiveLeafOnlyDirectoryScanner"></bean>
<file:inbound-channel-adapter...
Thank's. I will thing about it ;)
Kind regards
Massimo
I was wondering the same thing. The problem is that using Oracle as RDBMS the select for update statement works in a different way from mySql, in such a way that parallel queries does not work as...
>>Is your downstream idempotent?
No. I need to handle messages (record on db) once.
>>That is would it be a problem if the same record selected by multiple processes is presented multiple times...
Hallo all.
I have a spring integration applistence cation deployed on Weblogic 10.3 in cluster mode; Oracle 10g ad RDBMS.
I have this configuration:
<int-jdbc:inbound-channel-adapter...
Thank you very much, I'm going to try immediatly :)
Max
Hallo all.
In my spring context I have this service activaro definition:
<bean id="inserimentoCanaleActivator"...
Yes I'm using direct channels for both chains, but I didn't understand how to achieve to goal.
Can you give me more details?
Kind regards
Max
Hallo all.
I have this use case.
First chain:
<int:chain input-channel="inserimentoCanaleActivate" output-channel="inserimentoCanalePreRouting">
<int:service-activator...
Hallo all.
I have a distributed enterprise application deployed on weblogic 10g.
In my configuration the cluster is made of two nodes.
The E-R model is the following:
S_CONT_EVENT_MESSAGE
ID:...
Hallo Enrico.
As I described in other threads
I had several problems configuring the exception translation on my daos.
I have an event-driven enterprise application with this configuration:...
Hallo.
Since it seems that I cannot use the spring DataAccessException translation mechanism in my dao, I would like to know if it possible to translate the
Internal Exception:...
Noone can help me?
Massimo
Hallo all.
I use EclipseLink as JPA vendor and I have a problem with the EclipseLinkJpaDialect.
I notice that extends DefaultJpaDialect but not overrides the translateExceptionIfPossible method....
Hallo all.
I noticed that using the dataAcceesException translation when I encounter a sql integrity violation is translated to JpaSystemException, subclass of UncategorizedDataAccessException.
...
It was only to see if the exception was raised:
@Override
@Transactional(propagation = Propagation.REQUIRES_NEW)
public EventMessage<String> activate(EventMessage<String> eventMessage)...
I debugged the control flow.
This is my dao method that should raise the exception:
@Override
public void saveItem(T instance) {
try {
EntityManager em =...
Maybe the problem is that the SQLException is nested and the real exception is thrown by the weblogic container?
This stack trace makes me think about it.
2011-05-31 16:24:55,125 ERROR...
I cannot since every dao is an instance of GenericDaoJpaImpl.
On the genericDao I cannot use the @PersistenceContext annotation since the dao is used with my two persistence units.
One solution...