Re: Mail - copyTo not working and MailBoxPostProcessAction not found

2015-01-06 Thread Claus Ibsen
Hi I added an unit test of the copyTo function https://github.com/apache/camel/commit/5a4d715a1b065a3598ad0ef85b98da81f438c0b5 Not sure why it fails for you. Maybe its some permission issue or the copyTo folder does not exists, and cannot be created or something. Your best chance is to run with

Re: Camel-boot autowiring issue

2015-01-06 Thread Steven Marcus
Hello, Thanks for the sample project. I adapted it to experiment with @EndpointInject and @Produces -- they appear to be broken with spring-boot? The shouldInjectCamelContext() test fails with null for resultEndpoint -- and template is null too. (Using recently updated camel-spring-boot SNAPSHOT.

Re: Camel CXF SOAP Service

2015-01-06 Thread Gnana
I have tried with version 4 & 5. but no response. -- View this message in context: http://camel.465427.n5.nabble.com/Camel-CXF-SOAP-Service-tp5761359p5761410.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Recording events

2015-01-06 Thread Claus Ibsen
Hi There is also the event notifier which can be useful to capture this. Or route policy as well. Depends a bit how generic vs special case it has to be. On Tue, Jan 6, 2015 at 2:55 PM, James Green wrote: > We're about to build a number of jars which will use Camel to route > messages from sou

Re: elasticsearch component config issues

2015-01-06 Thread batwad
Hi Willem, Thanks for your reply. I should have added that we are using Camel 2.12 and I see the code you've highlighted is tagged as 2.14, so it's possible you've fixed a bug already. I notice the 2.14 code does enable sniffing, which the 2.12 code does not. However it looks like node.client i

Re: Does Camel REST DSL work with a Restlet Servlet?

2015-01-06 Thread Robinson Duffy
I've found sort of a workaround for this…not sure if it is the best solution. I created a new class that implements the RestConsumerFactory and in the createConsumer method I have it create a restlet endpoint without the host or port. Basically a route with This is the same endpoint uri struct

Re: Recording events

2015-01-06 Thread Preben.Asmussen
Hi James We record business events like the ones you describe, but are not using the wiretab eip since this is recording the event even if the exchange ultimately fails. Sending a message to a wiretab endpoint will be a fire and forget operation that runs in a separate thread. Correct me if I'm w

activemq jms topic route with durable subscriber

2015-01-06 Thread agentalpha
Hi, I have following route which reads the messages from topic and processes it. And configuration for connectionFactory is as follows: The idea is that as soon as a message is publishe

Re: Mail - copyTo not working and MailBoxPostProcessAction not found

2015-01-06 Thread A-Light
Oh Claus, I see!!! I'm very sorry I didn't notice the release is different!!! Ok, so never mind about the postProcessAction issue, when the 2.15 camel release will be available on maven I'll consider upgrading. What remains open is why the copyTo parameter doesn't work in my route. Thanks a lot,

Re: elasticsearch component config issues

2015-01-06 Thread Willem Jiang
It doesn’t make sense that camel-elasticsearch endpoint became a master node. In camel we just setup the Client parameter here[1], please feel free to add more option on it if you need. I think we can also introduce addresses option to add other host address for the transport client to use, plea

RE: Recording events

2015-01-06 Thread Morgan Hautman
Hello James, Yes , this seems like a Wiretap . Maybe you should also copy your exchange if needed. http://camel.apache.org/wire-tap.html -Original Message- From: James Green [mailto:james.mk.gr...@gmail.com] Sent: dinsdag 6 januari 2015 14:55 To: users Subject: Recording events We're a

Recording events

2015-01-06 Thread James Green
We're about to build a number of jars which will use Camel to route messages from sources to destinations via business logic processors. One of things we're looking for is the ability to record business events as they happen. Sounds a bit like Wire Tap? We're unsure. Ultimately the events will fo

Re: Custom Codec for TCP IP

2015-01-06 Thread Willem Jiang
Netty is more popular then Mina, so I suggest to take a look at camel-netty or camel-netty4 component. You can setup you own delimiters by applying the custom  DelimiterBasedFrameDecoder to the netty endpoint with the option of decoder or decoders. Please checkout the camel-netty[1] or camel-nett

Re: Mail - copyTo not working and MailBoxPostProcessAction not found

2015-01-06 Thread Claus Ibsen
Hi Ah also always check the documentation http://camel.apache.org/mail That options is a new option in Camel 2.15 onwards. So you cannot use it with an older Camel release. On Tue, Jan 6, 2015 at 2:37 PM, Claus Ibsen wrote: > Hi > > See this unit test > https://github.com/apache/camel/blob/mast

Re: Mail - copyTo not working and MailBoxPostProcessAction not found

2015-01-06 Thread Claus Ibsen
Hi See this unit test https://github.com/apache/camel/blob/master/components/camel-mail/src/test/java/org/apache/camel/component/mail/MailPostProcessActionTest.java On Tue, Jan 6, 2015 at 10:40 AM, A-Light wrote: > Hi Claus, > thanks for the info! But it looks like the problem is somewhere else.

elasticsearch component config issues

2015-01-06 Thread batwad
We have been using the camel-elasticsearch component in transport client configuration for some time, however we were seeing NodeClosedExceptions when the node with which it was communicating was restarted so switched to the node client to take advantage of the automatic failover. We configured th

Re: Camel CXF SOAP Service

2015-01-06 Thread Willem Jiang
It look like a issue of SOAPUI instead of CXF or Camel. Did you try to use different version of SOAPUI to generate the quest for the example? Willem Jiang Red Hat, Inc. FuseSource is now part of Red Hat Web: http://www.fusesource.com | http://www.redhat.com Blog: http://willemjiang.blogspot.com

Custom Codec for TCP IP

2015-01-06 Thread ravindran
I am using netty component to send message over TCP I/P to 3rd party server and also hosting TCP IP serverfor message exchange initiated from 3rd party system. Sample Inbound (REQUEST) message: 1|SMMDDN|EMPID|EMPNAME|DESIGNATION|DEPARTMENT Sample outbound (REPLY) message: 1|ACK

Re: Mail - copyTo not working and MailBoxPostProcessAction not found

2015-01-06 Thread A-Light
Hi Claus, thanks for the info! But it looks like the problem is somewhere else. I tried to: - create a class that implements org.apache.camel.component.mail.MailBoxPostProcessAction but that interface is not existent, so the compiler says "org.apache.camel.component.mail.MailBoxPostProcessAction c

Camel CXF SOAP Service

2015-01-06 Thread Gnana
I have configured camel cxf soap service as mentioned in below example https://github.com/apache/camel/tree/master/examples/camel-example-cxf-tomcat I have ran the application in Jetty server. I am able to consume the service using java client as per example and able to see the WSDl file in bros