Re: SJMS and InOut

2013-02-10 Thread Claus Ibsen
On Sun, Feb 10, 2013 at 10:38 AM, Harald Wellmann wrote: > Yes, I read the Javadoc. I have a test case which deterministically breaks > when replacing 2) by 1). > > Given that SJMS is not yet released, should I create a JIRA issue, or post > the details somewhere else? > Yeah if you can create an

Re: disable timer for unit tests

2013-02-10 Thread Claus Ibsen
On Sun, Feb 10, 2013 at 4:32 PM, Raul Kripalani wrote: > Hi, > > Identify the timer-based route with an explicit routeId: > > from("timer:...").routeId("timed-route")... > > And then stop it explicitly from your test code: > > context.stopRoute("timed-route"); > > Alternatively, you could disable

Re: Splitter does not bound namespace prefix from xsi:type value.

2013-02-10 Thread Claus Ibsen
Hi What runtime do you use? eg how do you run this Camel application? eg if you use OSGi blueprint then those namespace prefixes may not be bound, as that was possible fixed in a release after 2.10.0. On Mon, Feb 11, 2013 at 6:05 AM, Allan Randall wrote: > I have an XML document that I want to

Splitter does not bound namespace prefix from xsi:type value.

2013-02-10 Thread Allan Randall
I have an XML document that I want to split into multiple documents and process separately. The problem I have is that the namespace prefix in the xsi:type attribute is not added to the DOM thus when I try to process the XML from the managedEntities queue I get the following error; /Execution of

Re: Files cannot be moved on FTP

2013-02-10 Thread Filippo Balicchia
Hi Christian, That line tells how the mbean's attributes are valued to be registered Anyway I have re-run my simple example and if look log http://dl.dropbox.com/u/86667715/camelftp/logWith2_10_3v2.txt now the line are equals. Now, to understand if it a bug we must put ourselves in a position to r

Re: Issue using camel-cxf-transport (2.10)

2013-02-10 Thread Charles Moulliard
The problem is not related or not to the '//' but certainly because the camel endpoints is not discovered by the cxf transport layer ... On Sat, Feb 9, 2013 at 7:06 PM, Taariq Levack wrote: > Charles try without the forward slashes, like so "direct:supervisor" > > On 08 Feb 2013, at 19:03, Ch

RE: File transfer using ftp failed

2013-02-10 Thread AMARNATH, Balachandar
Hello, I used vsftpd server. Is there any requirement for specific FTP server to use for file movement? Regards Bala -Original Message- From: AMARNATH, Balachandar [mailto:balachandar.amarn...@airbus.com] Sent: 08 February 2013 16:21 To: users@camel.apache.org Subject: RE: File transf

Multicast processes in different machine

2013-02-10 Thread AMARNATH, Balachandar
Hello, Is there is a way that the multicasted processes can be executed in different machines? In the following camel route, I want to execute the tasks 2 and 3 in two different machines. .process(new Task1()) .multicast().parallelProcessing() .process(new Task2())

Re: Exception in restful web service

2013-02-10 Thread Richa
I tried to make the function return a simple string : @GET @Path("/xmlHello") @Produces ( "application/xml" ) public String getHello() { return "Hello"; } Also i removed the cxf.xml but still I am getting the same exception. Please help me with this issue. -- View this message in context:

Re: Files cannot be moved on FTP

2013-02-10 Thread Christian Schäfer
Interesting line: "ilePollingConsumerPollStrategy WARN  Trying to recover by disconnecting from remote server forcing a re-connect at next poll:" whereas I don't understand that behaviour.as it's also not an credential problem which would give: "Could not connect to: ...File operation failed: 5

Re: Files cannot be moved on FTP

2013-02-10 Thread Christian Schäfer
thanks for the tip..will check that and report back   regards Christian Von: Filippo Balicchia An: users@camel.apache.org; Christian Schäfer Gesendet: 12:07 Samstag, 9.Februar 2013 Betreff: Re: Files cannot be moved on FTP Hi Christian, if try to make a

Re: VM Queues Disconnected after Karaf Bundle Update

2013-02-10 Thread Achim Nierbeck
Hi Raul, a code sample? I need to create one again :) Cause I don't have access to the original code anymore it's been more than 2.5 Years ago. I know what you are talking of, we have a similar saying in Germany ;) Shooting sparrows with cannons. Never the less I'm gonna create a sample asap. Bas

Re: camel 10.2.3 migration SSL error

2013-02-10 Thread Christian Müller
It's the right version [1]. Did you recompile your application with Camel 2.10.3 or did you only update the dependencies in your runtime environment? Also make sure you do not have another Jetty version at compile or runtime in your classpath. [1] https://svn.apache.org/repos/asf/camel/tags/camel-

Re: Best Deployment server

2013-02-10 Thread Christian Müller
It really depends on your needs, your existing environment, your skills, ... As you may know, you can execute/run your Camel routes - standalone (easy to start) - servlet engine like Tomcat (easy to operate if you already use a servlet engine) - JEE server like JBoss, WebSphere, ... (easy to operat

Re: migrating from camel 2.7.4 to 10.2.3 error with slf4j

2013-02-10 Thread gmdavidson62
Thanks to Claus I was able to get this resolved. It was a classpath issue, which was obvious, but which one caused the issue, see explanation below. The jetty dependencies seemed to be ok, except these: [INFO] | +- org.eclipse.jetty:jetty-webapp:jar:7.1.6.v20100715:compile [INFO] | \- or

Re: VM Queues Disconnected after Karaf Bundle Update

2013-02-10 Thread Raul Kripalani
Hi Achim, Would you mind explaining this approach a little bit? A code sample would be awesome. Until now we have suggested folks to use NMR, but installing 7 SMX bundles just to achieve inter-bundle communication seems like "shooting flies with a bazooka" (like we say here in Spain :D). I remem

Re: disable timer for unit tests

2013-02-10 Thread Raul Kripalani
Hi, Identify the timer-based route with an explicit routeId: from("timer:...").routeId("timed-route")... And then stop it explicitly from your test code: context.stopRoute("timed-route"); Alternatively, you could disable autostart for that route altogether, but then you have to start it manual

Re: migrating from camel 2.7.4 to 10.2.3 error with slf4j

2013-02-10 Thread gmdavidson62
Here is the maven dependency tree from maven: [INFO] [dependency:tree {execution: default-cli}] [INFO] com.infarmbureau:CSP-Services:war:0.0.1 [INFO] +- com.infarmbureau.esb:ESBClientJava6:jar:2.0.0:compile [INFO] | \- org.apache.activemq:activemq-optional:jar:5.5.0:compile [INFO] | +- org.e

Re: migrating from camel 2.7.4 to 10.2.3 error with slf4j

2013-02-10 Thread Claus Ibsen
What version of Jetty are you using? And make sure if you have several Jetty JARs on the classpath, that they are the same version. On Sun, Feb 10, 2013 at 3:57 PM, gmdavidson62 wrote: > I've tried several combinations of log4j and slf4j...with no success, any > ideas how to proceed, thanks! > A

AW: disable timer for unit tests

2013-02-10 Thread jhm
One possibility is having a flag: createRouteBuilder() { from(...).to(...); // standard routes if (inProduction) { from("timer:...").to(...); } } Or specify the timer in a special class which you dont start via Spring. Not sure if the ControlBus could help (is just a pattern whic

migrating from camel 2.7.4 to 10.2.3 error with slf4j

2013-02-10 Thread gmdavidson62
I've tried several combinations of log4j and slf4j...with no success, any ideas how to proceed, thanks! Any other information needed? tomcat:6 jdk:1.6.21 stack trace: SEVERE: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderLi

disable timer for unit tests

2013-02-10 Thread martin11
Hello, I use Camel ver. 2.10.1 and in production context I use timers (cca 10sec.) to create an event on route. I also create unit tests (extended from CamelSpringTestSupport) for my production context to make tests on individual routes. When I run my tests, timers expires and start new route. Be

Re: VM Queues Disconnected after Karaf Bundle Update

2013-02-10 Thread SteveC
Thanks for your reply Achim. I will try the approach you suggest - first I will need to learn how to expose a vm component as an OSGi service of course - I'll let you know how I get on. Regards Steve -- View this message in context: http://camel.465427.n5.nabble.com/VM-Queues-Disconnected-aft

RouteBuilder CXF, WebService Url and WSDL ?

2013-02-10 Thread sekaijin
Hello, I need to define a camel route that invokes a web service. I thought about using camel-cxf to call the web service. My routes are defined in Java dsl the parameters are read in a database and a RouteBuilder define route in java DSL. I have several platform (Dev, Qual, Integration, Recipe,

Re: SJMS and InOut

2013-02-10 Thread Harald Wellmann
Yes, I read the Javadoc. I have a test case which deterministically breaks when replacing 2) by 1). Given that SJMS is not yet released, should I create a JIRA issue, or post the details somewhere else? Best regards, Harald Am 10.02.2013 06:51, schrieb Claus Ibsen: On Sat, Feb 9, 2013 at 4