In this case it is:
org.springframework.integration.transformer.MessageTransformationException: org.springframework.integration.MessagingException: failed to transform message headers
at...
Type: Posts; User: jakub.kettner; Keyword(s):
In this case it is:
org.springframework.integration.transformer.MessageTransformationException: org.springframework.integration.MessagingException: failed to transform message headers
at...
this is the begining
org.springframework.integration.transformer.MessageTransformationException: org.springframework.integration.MessagingException: failed to transform message headers
at...
exception is too long - I am not able to send full stackTrace
Caused by: org.springframework.integration.MessagingException: failed to transform message headers
at...
this is what I am doing:
<int:header-enricher input-channel="afterFailRenameChannel" output-channel="logChannel">
<int:header name="LEVEL" value="ERROR"/>
<int:header name="TITLE"...
Thank you Gary,
you are right - I saw <Retry: count=0>,<Retry: count=1> (when the error handler is defined AFTER the retry advice) event when trapException="false"....
Thank you :-),
I have switched to 2.2.1.BUILD-SNAPSHOT and it works. Interesting note is that it works (3 attempts) only in case of definition in such order:
...
Hello,
first of all thank you for developing request-handler-advice-chain.
I have simply question. Is there possible to have combination of RequestHandlerRetryAdvice and...
Thank you Cleric. I can figure oneself how the request-handler-advice-chain would be useful for me in this case but unfortunately I need to use SI 2.1 for now (since the whole code is connected with...
Hello,
I would like to ask you to follow up with one (similar) question http://forum.springsource.org/showthread.php?104110-ftp-outbound-adapter-interceptor&
Since outbound-channel-adapter does...
Oh beginner error! It helped -Thank you Garry.
regards,
Jakub
Thank you Gary.
Surrounding by single quotes helped to solve mentioned exception but next run thrown another exception:
org.springframework.beans.factory.BeanCreationException: Error...
Hi,
I am using SI 2.2.0 now but I had the same problem with 2.1.0. I would like to use int-ftp:outbound-gateway but every time I define it I get the following exception.
So far I just want to...
Ok, just in case that someone will face the same problem - solved using this way:
import org.apache.commons.beanutils.BeanMap;
...
pojoMap = new BeanMap(pojo1); //sent as payload
Hello,
I have question regarding sql-parameter-source-factory.
I have, lets say this Pojo:
public class Pojo1 {
private var1;
private var2;
// getters and setters
}
Thank you Garry! Factory-method did the trick - I must confess that I had only weak idea of what can I do with factory-method.
Bye,
Jakub
Actaully I am not sure whether what I want I can call dynamically generating factories or dynamic behaviour. I would like to create aplication context only once. In this contextl should be declared...
Thank you for quick reply Gary. I don't want to be ungrateful but it seems to us as quite complicated - to have parent->child application-context but maybe I misunderstood the main benefit of this...
Hi,
I have a requirement to read FTP connection information from DB - create instance of
org.springframework.integration.ftp.session.DefaultFtpSessionFactory and cache this instance. In my...