Wayne Keenan wrote:
On Mon, Jan 25, 2010 at 4:25 AM, Willem Jiang wrote:
Hi Wayne,
I'm not sure we need to populate the headers for the HTTP PUT method.
Can you point me out if there any specification for it ?
Willem
I looked at the RFC's for http 1.0 and 1.1, to me it doesn't appear to
p
Hi
You may take a look at this soap DataFormat[1], and csv DataFormat[2]
As soap DataFormat is working in progress, you can add your requirement
when you try it.
[1]https://issues.apache.org/activemq/browse/CAMEL-2396
[2]http://camel.apache.org/csv.html
Willem
lekkie wrote:
Hi guys,
I'd like
It's a bug of XStream DataFormat.
I created a JIRA[1] for it.
[1] https://issues.apache.org/activemq/browse/CAMEL-2407
Willem
jonathanq wrote:
I should also mention - this is Camel 2.0.0
jonathanq wrote:
I am trying to unmarshal an xml message from JMS that was originally
marshaled using Xs
Thanks Claus, that works. But, I need to handle the returned contents from
my Route. Just figured I needed the Exchange to get at the contents as a
String.
Kit
Claus Ibsen-2 wrote:
>
> Can you not just do a
>
> from(seda).to(http);
>
> The camel http component will automatic use POST if no
Hi guys,
I'd like to convert a soap request to a csv file. Also, I'd like the element
names to to be the headers for the csv data.
kr.
--
View this message in context:
http://old.nabble.com/XML-request-to-CSV-conversion-tp27329468p27329468.html
Sent from the Camel - Users mailing list archive a
I should also mention - this is Camel 2.0.0
jonathanq wrote:
>
> I am trying to unmarshal an xml message from JMS that was originally
> marshaled using Xstream.
>
> When I create the message I am doing this:
>
> XStream xstream = new XStream(new DomDriver("ISO-8859-1"));
> template.sendBody(x
I am trying to unmarshal an xml message from JMS that was originally
marshaled using Xstream.
When I create the message I am doing this:
XStream xstream = new XStream(new DomDriver("ISO-8859-1"));
template.sendBody(xstream.toXml(myObject));
On the consuming process I have this in my route:
fr
Can you not just do a
from(seda).to(http);
The camel http component will automatic use POST if no uri parameters.
You should also be able to configure in the uri for the http endpoint
that it should use POST
On Tue, Jan 26, 2010 at 2:37 PM, kitplummer wrote:
>
> Getting closer:
>
> import org.
On Tue, Jan 26, 2010 at 5:40 PM, mcrive wrote:
>
> Hi Claus,
> I am sorry but I don't understand what you mean...
>
> would it be possible for you to send me a sample (just the route)
>
Sorry I am too busy to create such a sample. I think you just need to
play a bit more with it and try to
invoke
On Tue, Jan 26, 2010 at 5:46 PM, titexe wrote:
>
> Hello,
>
> how I can recover the value of the variable%ACTIVEMQ_HOME% in my route
> camel?
>
This is not specific to Camel. Try googling for how to get environment
variables in Java.
I think its just a java.lang.System.getenv() or something like
Hello,
how I can recover the value of the variable%ACTIVEMQ_HOME% in my route
camel?
Thank you in advance
best regards,
titexe
--
View this message in context:
http://old.nabble.com/Recover-value-of-variable-in-camel-tp27325821p27325821.html
Sent from the Camel - Users mailing list archive
Hi Claus,
I am sorry but I don't understand what you mean...
would it be possible for you to send me a sample (just the route)
Claus Ibsen-2 wrote:
>
> Hi
>
> Interesting use case you got.
> I got to go over this again at another time. I am at a business
> convention in the US which means I a
Here is some AMQ documentation about that
http://activemq.apache.org/enterprise-integration-patterns.html
On Tue, Jan 26, 2010 at 12:57 PM, Claus Ibsen wrote:
> On Tue, Jan 26, 2010 at 5:21 PM, BenXS wrote:
> >
> > Hi Ashwin,
> > thank you for response. But this procedure seems to me rather
> l
On Tue, Jan 26, 2010 at 5:21 PM, BenXS wrote:
>
> Hi Ashwin,
> thank you for response. But this procedure seems to me rather long-winded.
>
> Do I really need Spring?
> Are there really no pre-compiled, ready-to-use *.jars of Camel?
>
> What I expect is a camel.jar which I have to put into the tar
ActiveMQ ships with camel-core.jar already, if you take a look at the
default activemq.xml file from a fresh ActiveMQ install you'll see
there's a camel context configured with a couple example routes, so if
you want you can have your routes in-process in the broker. Hope that
helps!
On Tue, Jan
Hi Ashwin,
thank you for response. But this procedure seems to me rather long-winded.
Do I really need Spring?
Are there really no pre-compiled, ready-to-use *.jars of Camel?
What I expect is a camel.jar which I have to put into the target
applications (here: ActiveMQ) "lib" subdirectory. Second
Getting closer:
import org.apache.camel.Exchange
import org.apache.camel.Processor
import org.apache.camel.Message
class JobRoute {
def configure = {
println "Setting JobRoute Camel Router..."
from("seda:my.queue") {
Exchange exchange =
template.send("http://local
You may have something misconfigured in your web.xml.
The error talks about Servlet vs. SerlvetFilter which are two different things.
On Mon, Jan 25, 2010 at 9:38 PM, mistrz wrote:
>
> Following this pattern, when starting jetty I get this exception:
>
>
> [ Main Thread] Conte
On Tue, Jan 26, 2010 at 11:16 AM, huntc wrote:
>
> Hi Claus,
>
> I have now created a Cookbook recipe explaining this use case.
>
> http://cwiki.apache.org/confluence/display/CAMEL/Fine+Grained+Control+Over+a+Channel
>
I like the recipe, great work.
> Kind regards,
> Christopher
> --
> View this
Hi
Can you create a JIRA and submit a small test case with it?
It will make us easier to dig your issue.
Willem
lekkie wrote:
Guys, can u help out?
lekkie wrote:
I tried this but it did not work.
Something strange however, happens. I noticed if I use the default
aggregationStrategy, the lo
Hi,
Here is a quick response to the general steps.
a> Start the ActiveMQ Broker. It typically comes up on
tcp://localhost:61616
b> Check out the example
/examples/camel-example-spring-jms. This example is
available in the 1.6 version of Camel.
c> Build and deploy into a Spring contain
On Mon, Jan 25, 2010 at 4:25 AM, Willem Jiang wrote:
> Hi Wayne,
>
> I'm not sure we need to populate the headers for the HTTP PUT method.
> Can you point me out if there any specification for it ?
>
> Willem
>
>
> I looked at the RFC's for http 1.0 and 1.1, to me it doesn't appear to
preclude us
On Tue, Jan 26, 2010 at 5:25 AM, kitplummer wrote:
>
> Ok, just thinking at this point...and I don't yet understand Camel well
> enough. So, I need some insight.
>
> What I want to do is use Camel to facilitate some back-end business logic
> in
> my Grails app. Here's the general idea. From my
Hi Claus,
I have now created a Cookbook recipe explaining this use case.
http://cwiki.apache.org/confluence/display/CAMEL/Fine+Grained+Control+Over+a+Channel
Kind regards,
Christopher
--
View this message in context:
http://old.nabble.com/requestBodyAndHeader-and-HEADER_CLOSE_SESSION_WHEN_COM
Guys, can u help out?
lekkie wrote:
>
> I tried this but it did not work.
>
> Something strange however, happens. I noticed if I use the default
> aggregationStrategy, the log:Response1 will be logged (as null), however
> if I changed it to myAggregatorStrategy, it never prints the log (let
>
25 matches
Mail list logo