Camel Context shutdown by Spring Child Context

2014-05-27 Thread peter_mine...@skycreek.com
I have a couple of Questions: I have a standalone (legacy) application that creates a Spring Parent Context which is where the CamelContext is created. Spring Batch is, also, created in the Parent Context. What this application does is create a Child Context for each of the Spring Batch Jobs when

File Component

2014-05-27 Thread Curtis Ruck
With camel 2.13.1, I'm trying to use the file component to transfer files over a network. Using the below camel-context.xml, i'm 90% of the time getting the "Cannot delete file." I can't find a reason why it rarely works. Looking at the camel source code, since I'm converting it to a byte[], it

Re: Making a CXF Endpoint backwards compatible

2014-05-27 Thread Matt Raible
I finally got this figured out - without the need to call .marshal or use camel-soap. Basically, I had to add a number of annotations to get names to match, and then do a bit of nesting on the response so it was understood. A lot of the names didn't seem to matter, but I wanted to make the new

Re: Apache camel and Adobe CQ5

2014-05-27 Thread Gregor Zurowski
After reviewing the stack trace you have posted, it looks as if you want to access the repository via WebDAV, but Jackrabbit is trying to use RMI over HTTP to connect to it. Jackrabbit uses a service provider approach to find an appropriate implementation for the javax.jcr.RepositoryFactory interfa

Re: Making a CXF Endpoint backwards compatible

2014-05-27 Thread Matt Raible
I've made good progress on getting this to work, mostly by adding annotations to my service interface. Everything is working as far as calling the service from my test. I did have to change from ClientProxyFactoryBean to JaxWsProxyFactoryBean and set the binding to match the @BindingType(SOAPBi

Re: gauth uses oauth version 1 or 2?

2014-05-27 Thread Camel Guy
Hello, Answering my own question.. guath uses oauth 1.0. I am abandoning gauth (which was really nice to use) for this library https://github.com/fernandezpablo85/scribe-java Not only does it use oauth 2.0 but it supports Microsoft oauth too. ~cg On Thu, May 22, 2014 at 7:43 AM, Camel Guy

Re: Apache camel and Adobe CQ5

2014-05-27 Thread Gregor Zurowski
Manjushree: Can you verify that you can access http://127.0.0.1:4502/crx/server by simply opening this location in your browser? You should see the CRX version and a list of available workspaces. Thanks, Gregor On Tue, May 27, 2014 at 2:06 AM, Manjushree wrote: > I'm working on apache camel an

Re: Camel jsm via jndi example

2014-05-27 Thread Claus Ibsen
Hi Thanks for sharing this. If you want to share you example in our cookbook, then you are welcome to log a JIRA ticket and attach it as a .txt file etc. Then we can add it to the docs http://camel.apache.org/cookbook On Tue, May 27, 2014 at 3:47 PM, sergarci wrote: > Hi > > I've just made an

Camel jsm via jndi example

2014-05-27 Thread sergarci
Hi I've just made an endpoint with jsm using weblogic jndi. Here is the example: the jms-setup.xml file is like: http://www.springframework.org/schema/beans"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation=" http://www.springframework.org/schema/

Too many Connections are in CLOSE_WAIT state

2014-05-27 Thread mayank.gupta
I am using Camel-Http Component for creating HttpRoutes. I used MultiThreadedHttpConnectionManager to configure http connection pool and params. While executing the application , there are too many connections remains in CLOSE_WAIT state for long time and connections which are idle are not getting

reading and setting custom soap headers without cxf

2014-05-27 Thread james555
Hello, I'm using camel-soap for implementing a soap webservice without camel-cxf (to many problems with project's XSD files). Is there a way to 1. read and 2. write a custom soap header. 1. Read custom soap header: After reading camel docs and googling I found a way to read soap header: Node

Re: Apache camel and Adobe CQ5

2014-05-27 Thread Charles Moulliard
Your issue is not related to a camel problem but comes from the fact that you can't establish a session with your JCR server. Have you verified that your credentials are correct ? On Tue, May 27, 2014 at 8:06 AM, Manjushree wrote: > I'm working on apache camel and adobe cq5. > > I wrote a progr

Implementing Cron based Aggregator with selective message type

2014-05-27 Thread amitkumar
Hi I looked at the https://camel.apache.org/aggregator2.html for quartz based aggregation options, couldn't find any and finally resorted to a hack. I created a Quartz Job which would use the signal pattern viz. Exchange.AGGREGATION_COMPLETE_ALL_GROUPS. 1) Are there better ways or why did we not pr