Re: RAW xml to SOAPMessage convertion in CXF WS endpiont

2009-06-21 Thread Willem Jiang
Hi, This is the Camel 1.x branch's CxfPayLoadSoapHeaderTest[1]. [1]https://svn.apache.org/repos/asf/camel/branches/camel-1.x/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfPayLoadSoapHeaderTest.java Willem trivedi kumar b wrote: > Hi Willem, > > I am using Apache camel 1.

Re: camel bean processor question

2009-06-21 Thread Claus Ibsen
On Sat, Jun 20, 2009 at 12:49 AM, sriramch wrote: > > I am trying to route to a bean instance by specifying a method-name using > Camel 1.6. This specific route is defined as below: > > > > The method myMethod is overloaded > > public void myMethod(){ > } > > public void myMethod(Date date){ > }

Re: Camel http: How to disable cookies ?

2009-06-21 Thread Claus Ibsen
Hi Jorn Could you verify if this works. Then I would like to add a little bit of documentation to the wiki how to disable cookies. On Sun, Jun 21, 2009 at 4:42 AM, Willem Jiang wrote: > Hi, > > Please use this parameter > httpClient.cookiePolicy=ignoreCookies > > Willem > > Jörn Kottmann wrote

Re: "Can not delete file" when combining file poller and JMS

2009-06-21 Thread Claus Ibsen
On Fri, Jun 19, 2009 at 5:49 PM, Marek2009 wrote: > > Hello Klaus, Adrian, Bruno, > > although the workaround you suggest is trivial, it took us a while to > implement and test it. :-) > > I would like to confirm that inserting a "convertBodyTo(String.class)" > worked for us (Camel 1.6.0). > Sinc

Re: Executing a Quartz Endpoint on demand

2009-06-21 Thread Claus Ibsen
Hi You can have multiple inputs to a given route, so you can have one for the quartz and another for invoking on demand for instance using a direct endpoint You simply just add another tag Then you can use the producer template to send a message to "direct:hitme" to invoke your route. On T

Re: XML Validation with multiple XSLT schema files.

2009-06-21 Thread Claus Ibsen
On Thu, Jun 18, 2009 at 1:32 PM, SwenVogel wrote: > > The problem is that all schemas must be present at the time of validating. > This is because the > element declarations ar spread across differnet schema files. > > But i think it should work when setting the Schema used by the > ValidatingPro

Re: Can I call umarshall/marshall process/endpoint from a camel bean ?

2009-06-21 Thread Claus Ibsen
On Thu, Jun 18, 2009 at 1:11 PM, Charles Moulliard wrote: > For me too. Camel bindy uses the echange for classloading of the model > classes and use converter > I am wondering if a DataFormat could implement CamelContextAware and get that injected. >From the camel context we can get hold of the t

Re: Autowiring RouteBuilders defined as beans in Spring.

2009-06-21 Thread Claus Ibsen
On Mon, Jun 22, 2009 at 2:52 AM, sgargan wrote: > > Claus, > > I've added documentation for this feature. I took the liberty of inlining a > lot of the code blocks in the page rather than using the snippets that were > currently there. I really like this feature, but it suits the developers > bes

Re: Autowiring RouteBuilders defined as beans in Spring.

2009-06-21 Thread sgargan
Claus, I've added documentation for this feature. I took the liberty of inlining a lot of the code blocks in the page rather than using the snippets that were currently there. I really like this feature, but it suits the developers best and poses a chicken and egg scenario for contributors with n

Re: camel:run JVM arguments

2009-06-21 Thread bwtaylor
Actually, the code is just fine. I'd just recommend documenting the features a little better on your wiki. There actually are quite a few configuration settings that'd be good to mention there. Basically, all the options of the http://mojo.codehaus.org/exec-maven-plugin/java-mojo.html maven exec

Re: RAW xml to SOAPMessage convertion in CXF WS endpiont

2009-06-21 Thread trivedi kumar b
Hi Willem, I am using Apache camel 1.6.1 version and I couldn't find CxfPayload.class file in the respective package. Is it something being supported in the later versions of apache camel? The below links are really useful, thanks a lot for providing them. Thanks, Trivedi willem.jiang wrote: >