Definition of a HL7 FTP endpoint simulated with a spring Camel mllp

2014-02-07 Thread dtjep
Hi, I have the error : 62 | k.osgi.extender | 1.2.1 | Application context refresh failed (OsgiBundleXmlApplicationContext(bundle=BouchonMLLP_15010.xml, config=osgibundle:/META-INF/spring/*.xml)) org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 7 in X

Re: Definition of a HL7 FTP endpoint simulated with a spring Camel mllp

2014-02-13 Thread dtjep
Hi, I have tried with the following code but I have got the same error in the endpoint : http://www.springframework.org/schema/beans"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.spri

Re: Definition of a HL7 FTP endpoint simulated with a spring Camel mllp

2014-02-13 Thread dtjep
Hi, Thanks for your answer. I have got the same error. An other idea ? DT -- View this message in context: http://camel.465427.n5.nabble.com/Definition-of-a-HL7-FTP-endpoint-simulated-with-a-spring-Camel-mllp-tp5746939p5747260.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Definition of a HL7 FTP endpoint simulated with a spring Camel mllp

2014-02-21 Thread dtjep
Can be resolved like : http://camel.465427.n5.nabble.com/XML-DSL-hl7codec-ACK-response-td5747732.html Best regards -- View this message in context: http://camel.465427.n5.nabble.com/Definition-of-a-HL7-FTP-endpoint-simulated-with-a-spring-Camel-mllp-tp5746939p5747790.html Sent from the Camel -

ftpConsumer still remain in threadpools

2013-04-16 Thread dtjep
Hello, I get file with uri : ftp://directory?include=.*HPR&doneFileName=${file:name.noext}.OK&delete=true Once I get the file, I read another one in a bean : from(url) ... .bean(classEnrich, "enrich") ... In enrich, I read the third file named using (uri is modified to designate the file) : Con

Re: ftpConsumer still remain in threadpools (seen in javaVisual JVM>Beans>org.apache.camel>threadPools)

2013-04-23 Thread dtjep
Hi, I have tried to create the consumer (createConsumerTemlate()) once at the initialization of the enrich object and keep it. 1. I tried with : consumer.start() consumer.receive(...) consumer.stop() The FtpConsumer() remains. 2. I trid without starting and stopping the consumer // consumer.start

Re: ftpConsumer still remain in threadpools (seen in javaVisual JVM>Beans>org.apache.camel>threadPools)

2013-05-06 Thread dtjep
Hi, Problem resolved by creating my own FtpConsumer. Best regards, Dtjep -- View this message in context: http://camel.465427.n5.nabble.com/ftpConsumer-still-remain-in-threadpools-seen-in-javaVisual-JVM-Beans-org-apache-camel-threadPools-tp5730976p5732076.html Sent from the Camel - Users

Set trace to see why doneFileName is not delete

2012-12-19 Thread dtjep
Hi, With Camel FTP we get files using for example the option : ?fileName=.*dat&doneFileName={filename:noext}.done&delete=true Sometimes, the doneFileName is not deleted from the remote server. Is there a way to get more trace of the exchange in the Camel plateforme ? Thanks you Cam