Hi Kevin,
I don't see any bundles concerning MySQL or Hibernate.
Can you send me what you have in the log for the last bundles 108 - 113 ? I
see that some of them are in status "Resolved". So information of the log
will help us
[ 108] [Resolved ] [ ] [ 60] Apache ServiceMix Bundles:
co
On Tue, Jul 7, 2009 at 4:35 AM, Ole Jørgensen wrote:
>
> Im new to Camel and wonder if I can use it for what Im doing.
Welcome on the ride.
>
> I have a existing spring webapplication with a servlet context.
>
> jdk1.6.0_11
> tomcat-6.0.18
> spring-framework-2.5.6
>
> Part of its job is to take us
Hi,
I don't know If I'm wrong or not but I try to configure only
spring/hibernate with Geronimo Transaction Manager in Apache Felix Karaf but
it does not work. Here is the config.
1) Hibernate / Spring / Geronimo
A) Hibernate / Spring config
classpath*:META-INF/com
Hi
Can you try SNAPSHOT as we have fixed an issue with RouteBuilders not
being fully post processed by Spring.
See CAMEL-1663.
On Mon, Jul 6, 2009 at 11:26 PM, tfredrich wrote:
>
> We recently upgraded from Camel-M1 to Camel-M2. Using Spring XML to
> configure the context using the package elem
On Tue, Jul 7, 2009 at 2:03 AM, rogster wrote:
>
> Hi,
>
> I'm trying to do something simple, but can't seem to get it to work. I have
> a route like this:
>
>
>
>
>
> I turned on tracing and I see the that a message was successfully recieved
> from the my service listening on activemq:myqueue,
On Tue, Jul 7, 2009 at 12:41 AM, Christopher
Hammack wrote:
>
> Hi
>
> Are there any plans to add a "direct" component that works across camel
> contexts (e.g. similiar to vm:// vs seda://)?
You can use the vm for that in 2.0m2+ as it will wait for reply, eg
being synchronous when needed.
>
>
Hi,
If for any reason, the message (= file) consumed from a File endpoint cannot
be processed (e.g transaction not committed from a bean), than the lock on
the file is not removed even if I stop the bundle and Apache Karaf must be
restarted to remove/delete the lock
Regards,
Charles Moulliard
Se
HI,
You can set the Message Exchange Pattern from the JBI endpoint URI.
such as "jbi:service:urn:com.myservice:ServiceA?mep=in-out"
"jbi:service:urn:com.myservice:ServiceA?mep=in“
Willem
Claus Ibsen wrote:
On Tue, Jul 7, 2009 at 2:03 AM, rogster wrote:
Hi,
I'm trying to do something simple,
Hi
When you take charge of listening for the JMSReplyTo queue and sending
back a response then you should *not* use InOut
So change .inOut to .inOnly
This works on my laptop
public void configure() throws Exception {
from("activemq:queue:hello")
I'm adding your unit test to camel-jms with the modification about inonly.
On Tue, Jul 7, 2009 at 11:30 AM, Claus Ibsen wrote:
> Hi
>
> When you take charge of listening for the JMSReplyTo queue and sending
> back a response then you should *not* use InOut
>
> So change .inOut to .inOnly
>
> This
On Tue, Jul 7, 2009 at 6:14 AM, Carlo Camerino wrote:
> Hi,
>
> I was just wondering on what is the best way to approach this. I have two
> applications. One is a web application and another one is an application
> running a camel context.
> Given this, I want my web application to commuinicate to
Hi all,
I am trying to set ids on every endpoint in the following way.
But this seems to set ids on the entire route and not on the endpoint.
from("file://C:/Debug/from").id("File_0").to("file://C:/test").id("File_1");
How do I set ids on every point in Java dsl?
The same is achieved in
On Tue, Jul 7, 2009 at 12:58 PM, siva naresh wrote:
>
> Hi all,
>
> I am trying to set ids on every endpoint in the following way.
> But this seems to set ids on the entire route and not on the endpoint.
>
> from("file://C:/Debug/from").id("File_0").to("file://C:/test").id("File_1");
>
> How
I tried using both 1.5 and 1.6. The result is the same.
Claus Ibsen-2 wrote:
>
> On Tue, Jul 7, 2009 at 12:58 PM, siva naresh wrote:
>>
>> Hi all,
>>
>> I am trying to set ids on every endpoint in the following way.
>> But this seems to set ids on the entire route and not on the endpoint.
On Tue, Jul 7, 2009 at 10:10 AM, Charles Moulliard wrote:
> Hi,
>
> If for any reason, the message (= file) consumed from a File endpoint cannot
> be processed (e.g transaction not committed from a bean), than the lock on
> the file is not removed even if I stop the bundle and Apache Karaf must be
Sorry about the lack of detail. I've tried the example on version 1.5 and
1.6 with the same results. The message exchange pattern is inout (the jbi
client should block until it receives a response, also the call to activemq
is synchrounous).
Claus Ibsen-2 wrote:
>
> On Tue, Jul 7, 2009 at
2009/7/7 siva naresh :
>
> Hi all,
>
> I am trying to set ids on every endpoint in the following way.
> But this seems to set ids on the entire route and not on the endpoint.
BTW you had me confused a bit there. At first read I thought you
wanted to do the XML equivalent of
i.e. really to
The ids are important to identify the endpoint to a front end tooling system.
Using the camel naming system. we get null ids for all the endpoints in the
multicast case for example
from("file://C:/Debug/from").multicast().to("file://C:/from","file://C:/from1","file://C:/from2");
Same is the c
>>> from("file://C:/Debug/from").id("File_0").to("file://C:/test").id("File_1");
This is a pretty cumbersome usage and it kind of clutters up the Java
for the route - but having ids on the various bits of the pipeline is really
very useful if you are debugging, or if you are visualizing the overal
2009/7/7 Oisin Hurley :
from("file://C:/Debug/from").id("File_0").to("file://C:/test").id("File_1");
>
> This is a pretty cumbersome usage and it kind of clutters up the Java
> for the route - but having ids on the various bits of the pipeline is really
> very useful if you are debugging, or i
Hi Charles,
I just uploaded the log file. Please take a look and let me know if you need
more information.
Thanks a lot,
Kevin
cmoulliard wrote:
>
> Hi Kevin,
>
> I don't see any bundles concerning MySQL or Hibernate.
>
> Can you send me what you have in the log for the last bundles 108 -
2009/7/7 siva naresh :
>
> The ids are important to identify the endpoint to a front end tooling system.
>
> Using the camel naming system. we get null ids for all the endpoints in the
> multicast case for example.
An even easier fix then, replace the code which does
someNode.getId()
with
some
Hi,
I see in the log that some important bundles have not been installed :
1) Hibernate is not installed
09:21:20,016 | ERROR | Thread-5 | FeaturesServiceImpl |
s.internal.FeaturesServiceImpl$1 380 | Error installing boot feature
reportincident
org.osgi.framework.BundleExce
How does it determine whether synchronous or asynchronous is appropriate?
Example, given these routes:
The behavior I want is that barBean is executed, then in the same thread,
synchronously, I want fooBean to be executed. Essentially "stage2"
On Tue, Jul 7, 2009 at 10:10 AM, Charles Moulliard wrote:
> Hi,
>
> If for any reason, the message (= file) consumed from a File endpoint cannot
> be processed (e.g transaction not committed from a bean), than the lock on
> the file is not removed even if I stop the bundle and Apache Karaf must be
Hi
Charles I am fixing it now. See CAMEL-1808
https://issues.apache.org/activemq/browse/CAMEL-1808
Then the default settings for file will not use java FileLock anymore.
On Tue, Jul 7, 2009 at 10:10 AM, Charles Moulliard wrote:
> Hi,
>
> If for any reason, the message (= file) consumed from a Fi
On Tue, Jul 7, 2009 at 4:30 PM, Christopher
Hammack wrote:
>
> How does it determine whether synchronous or asynchronous is appropriate?
>
> Example, given these routes:
>
>
>
>
>
>
>
>
>
>
>
>
> The behavior I want is that barBean is executed, then in th
someNode.getId() is called during debug interceptor call and it should be
returning whatever was set for that node during initialization of
camelcontext.
Siva Naresh.
James.Strachan wrote:
>
> 2009/7/7 siva naresh :
>>
>> The ids are important to identify the endpoint to a front end too
On Tue, Jul 7, 2009 at 4:47 PM, siva naresh wrote:
>
> someNode.getId() is called during debug interceptor call and it should be
> returning whatever was set for that node during initialization of
> camelcontext.
>
Hi
Let me add an unit test in the Java DSL that sets some custom ids.
And see if I
Hi
Charles if you have the time. Can you try reproduce the bug/issue with
the latest code from SVN?
I have committed a fix for this.
On Tue, Jul 7, 2009 at 4:43 PM, Claus Ibsen wrote:
> Hi
>
> Charles I am fixing it now. See CAMEL-1808
> https://issues.apache.org/activemq/browse/CAMEL-1808
>
>
On Tue, Jul 7, 2009 at 4:53 PM, Claus Ibsen wrote:
> On Tue, Jul 7, 2009 at 4:47 PM, siva naresh wrote:
>>
>> someNode.getId() is called during debug interceptor call and it should be
>> returning whatever was set for that node during initialization of
>> camelcontext.
>>
> Hi
>
> Let me add an uni
2009/7/7 siva naresh :
>
> someNode.getId() is called during debug interceptor call and it should be
> returning whatever was set for that node during initialization of
> camelcontext.
We can just change that to use someNode.idOrCreate() which will only
associate a new ID if there was not one expl
On Tue, Jul 7, 2009 at 3:17 PM, rogster wrote:
>
> Sorry about the lack of detail. I've tried the example on version 1.5 and
> 1.6 with the same results. The message exchange pattern is inout (the jbi
> client should block until it receives a response, also the call to activemq
> is synchrounous)
Hi Charles,
I downloaded dom4j and ran "mvn" command. It seems that it's still not
working.
Below is the repository list for dom4j.
C:\Documents and Settings\chzhang\.m2\repository>dir /s *dom4j*
Volume in drive C has no label.
Volume Serial Number is D051-6A60
Directory of C:\Documents an
Hi Claus,
Thanks for taking the time to reply.
I just took a look at the code on the trunk. Unfortunately, the seda with
waitForTaskToComplete is not equivalent to what I described earlier. The
seda endpoint is still performing polling, acting on a separate thread for
the second route. The o
Hi Claus,
Thanks for your reply. I downloaded and tried with the snapshot dated Tue
Jul 07 17:52:26 GMT+00:00 2009. I got no love... :-(
The SpringInjector is still attempting to instantiate the route builders
using the default constructor instead of auto-wiring using the constructor
that take
OK Claus, here is what I've got after trying against revision 791824
I'm using this unit test: http://pastebin.com/m1138eec9
http://pastebin.com/m1138eec9
The mock is satisfied BUT I get this exception right before the test ends:
JmsProducer:235 - Future timed out: java.util.concurrent.TimeoutEx
Hi,
This is my first project in camel where I set up a very simple route from a
weblogic jms Q to a file.
My RouteBuilder.java file has the following entry:
from("webLogicQ:queue:PaJmsInboundSever/com.mdsi.port.paJms.defaultCISO.Req1Queue?CacheLevelName=CACHE_NONE")
.to("file://soiTest
Hi,
Can you just start stand alone camel context without servicemix ?
From the stack trace , I don't know why it will throw a CORBA related
exception.
Willem
vvchoy wrote:
Hi,
This is my first project in camel where I set up a very simple route from a
weblogic jms Q to a file.
My RouteBuild
from("direct:start").id("A")
.to("log:foo").id("B")
.to("mock:result").id("C");
shows a compile error : Method to(String) is undefined for the type
OperationalIdentifiedType .
I am not sure how you were able to run it.
Claus Ibsen-2 wrote:
>
> On Tue, J
On Tue, Jul 7, 2009 at 11:58 PM, tfredrich wrote:
>
> Hi Claus,
>
> Thanks for your reply. I downloaded and tried with the snapshot dated Tue
> Jul 07 17:52:26 GMT+00:00 2009. I got no love... :-(
>
> The SpringInjector is still attempting to instantiate the route builders
> using the default con
On Wed, Jul 8, 2009 at 7:28 AM, siva naresh wrote:
>
> from("direct:start").id("A")
> .to("log:foo").id("B")
> .to("mock:result").id("C");
>
> shows a compile error : Method to(String) is undefined for the type
> OperationalIdentifiedType .
> I am not sure how
On Tue, Jul 7, 2009 at 6:00 PM, Christopher
Hammack wrote:
>
> Hi Claus,
>
> Thanks for taking the time to reply.
Hi
Feel free to create a JIRA ticket for your request. And as you know we
love contributions so if you got the skills to look into the code you
got the skills to try attempt a patch wi
43 matches
Mail list logo