Re: HTTP Proxy with File Attachments

2015-11-11 Thread Castyn
By enable logs do you mean set them to debug in servicemix? I am using Redhat Fuse ESB 6.1. I can try to log out each complete request, should actually be able to enable that stuff on the service layer as well. Might see a difference. I was still hoping there was just a config option I was mis

Re: HTTP Proxy with File Attachments

2015-11-11 Thread yogu13
Couple of things could help you... 1. Enable camel and jetty logs 2. Try and configure a TCP Tunnel (like NetTool or anyother of your choice) so you can see what is the difference between requests. Regards, -Yogesh -- View this message in context: http://camel.465427.n5.nabble.com/HTTP-Proxy-

Re: Consume messages & rollback

2015-11-11 Thread yogu13
Camel's JMS component uses spring, i am afraid if for some reason do not want Spring as part of the stack then you will have to custom code the endpoint for yourself. Transactions support is what you need for achieving the required behaviour which camel supports. Regards, -Yogesh -- View this

HTTP Proxy with File Attachments

2015-11-11 Thread Castyn
Hi all, I am running into an issue when doing something I feel should probably be very simple. In a servicemix bundle, I need it to act is a proxy to another http endpoint on another server. This all works without issues until an attachment is sent along with the http request. Here is all my co

[ANNOUNCEMENT] Apache Camel 2.14.4 Released

2015-11-11 Thread Gregor Zurowski
The Apache Camel community announces the immediate availability of the new patch release Apache Camel 2.14.4. This release contains 18 fixes applied in the past few weeks by the community on the Camel 2.14.x maintenance branch. We expect this to be the last patch release for the 2.14.x branch. The

sftp endpoint is not as performant as expected

2015-11-11 Thread David Hoffer
I have a spring configured (XML) Camel project where where are many routes but the starting point of all the data is an sftp URI. E.g. ftp://{{gp.camel.sg.username}}@ {{gp.camel.sg.host}}:{{gp.camel.sg.port}}/{{gp.camel.sg.path}}?password={{gp.camel.sg.password}}&delete=true&exclusiveReadLockStra

ConcurrentModificationException in camel-jetty DefaultHttpBinding.doWriteResponse

2015-11-11 Thread jspyeatt
I'm running camel 2.15.2 and have been performing some load tests on a jetty consumer component with some POST requests. My endpoint uri looks like this jetty:http://0.0.0.0:8080/pe-eh/v1/event?httpMethodRestrict=POST&maxThreads=200&minThreads=5 I can consistently produce the stack trace seen

Camel jetty response body

2015-11-11 Thread souciance
Hello, I am using the REST dsl to define a simple HTTP POST using Jetty as the underlying component. The message is sent to another route which simply logs and returns: OK Everything works ok but when I test this with fiddler or run a unit test, the OK part is surrounded with quotes. The respon

camel lock on file

2015-11-11 Thread Ishada
Hi, I am trying to implement a scenario using camel which is as follows:- 1->Get File From JMS queue 2->Store the file and crc value of the file in a directory 3->Move the file and crc file to the SFTP server and once it is successfull My route is as follows from("jms:queue") .multicast("",

Consume messages & rollback

2015-11-11 Thread Felix Thomas
Hello, I have a scenario like 1) reading from a queue (Rabbitmq or ActiveMQ) 2) Processing- transformation 3) Send to another queue . I want my process to be failsafe i..e. unless the message is sent to the endpoint the original message in the producer queue should not get consum

Camel Multiple Routes Connecting

2015-11-11 Thread Ishada
Hi, I am trying to implement a scenario using camel which is as follows:- 1->Get File From JMS queue 2->Store the file and crc value of the file in a directory 3->Move the file and crc file to the SFTP server and once it is successfull delete the files from the directory. My route is as follows