I am not certain if this posted so I am reposting. Apologize if this is a
duplicate.
-
Just to experiment, I did a couple of things.
First, I changed my script from just "Hello" to this:
"Hello" + " world"
That works.
Then I tried this:
sum = 5 + 3
"Hello" + " world"
That doe
Have a look at the multicast EIP.
Sent from a mobile device
Am 14.12.2012 19:22 schrieb "dmcamp" :
> Thanks for the response David.
> Is there any other way to accomplish what I need?
> The thing is, I'm using business beans, and they are not coupled to camel
> stuff, and I would like to keep it
How did you test this?
I set up a small example which shows that the deliveryPersistent option
works. However, it looks like the replyToDeliveryPersistent option has no
effect (with Camel 2.8.0 and also Camel 2.10.2). It's delivered persistent
independent from the configuration.
Maybe an ActiveMQ e
Are you setting the body with an xml string like "" or just ""?
You need to set an xml string that represents whatever the root
response element you defined.
And is it still not working?
2012/12/14 brxv :
> The wsdl does define a response.
> I'd described the respose as bank but to be more precis
When I checked the sample in chapter 3 of "Camel In Action", it
reminded me of the dependency "camel-csv", which I removed because I
was trying something with camel-bindy - after changing my POM back -
it worked. Sorry for the noise.
On Fri, Dec 14, 2012 at 1:05 PM, Chris Wolf wrote:
> Trying to
As long as your beans are just looking at the exchanges being passed
to them and not changing them, I should think they wouldn't care about
extra headers, unless they're specifically looking at all headers
attached to an exchange.
Barring that, is there an identifying key in the transformed object
Hi
Following the code snippet Claus has already provided there's also a
concrete example on the Camel codebase you could take a look at:
https://svn.apache.org/repos/asf/camel/trunk/components/camel-jms/src/test/java/org/apache/camel/component/jms/activemq/TwoEmbeddedActiveMQBrokersTest.java
Bab
Am 14.12.12 16:48 schrieb "lawkai" unter :
>Hi Babak,
>
>I have checked the latest version in trunk.
>
>While I agree that the ExecutionReport did get printed out via the
>additional route to the bean QuickfixjMessageJsonPrinter, wouldn't it be
>better if it gets routed back to become the http r
Hi Christian,
You're right!
I was using Java Wrapper do start/stop the java program as a linux
service. Sometimes the wrapper starts two program instances, I don't
know why but on this time that error occurs because one instance read
and delete the file at the same time the another instance are r
I had earlier mailed a case study on Camel migration from Egate. Glad to inform
that migration is complete and we are looking at NFR. We plan to use Camelwatch
tool for testing performance and recovery which we feel are key objectives.
The entire architecture of migration now resembles a XML pip
I checked the code of SpringIntegrationConsumer (I'm not really familiar
with Spring Integration), and I think I see the problem:
SpringIntegrationConsumer exclusively create InOnly exchanges for the
incoming org.springframework.integration.Message. Because of this, the
Camel SMPP component will s
Save the untransformed message in å header ør property
Den 14. des. 2012 16:59 skrev "dmcamp" følgende:
> Hello All,
>
> I have the following situation:
> In my camel route I'm sending an object, which is then transformed by an
> endpoint, then the transformed object is sent by email by another e
The wsdl does define a response.
I'd described the respose as bank but to be more precise, it is a soap
envelope with a soap body.
within this is the root element of my return type, but no child tags, even
if I try to set them.
if i add a file url to the route, the contents are stored "correctly"
Does your wsdl define a response message?
If it doesn't, it is normal that you get an empty response. In that
case, you see an empty HTTP 202 response with the current CXF but with
older CXF versions, you will see an HTTP 200.
2012/12/14 brxv :
> Hello.
> I'm just startig out with camel and am try
Hi Lars,
So the camel endpoint you have at the end of the route is a cxf
endpoint, as you talk about a SOAP fault from the end of the route?
In a request-response scenario, you will get the SOAP fault
transferred back to the other end of the route and this is typically
returned as an HTTP 500 SOAP
On 14 Dec 2012, at 8:47, neilac333 wrote:
> I thought about that so I tried the following:
>
> def foo():
>return "hello"
>
> foo()
>
>
> But I still get the same NPE. How do I get the result of the script to be
> passed along?
>
> Thanks.
>
>
>
> --
> View this message in context:
Hello All,
I have the following situation:
In my camel route I'm sending an object, which is then transformed by an
endpoint, then the transformed object is sent by email by another endpoint,
and I want to put another endpoint after the last one which deletes the
original object from a DB.
How can
Hi Babak,
I have checked the latest version in trunk.
While I agree that the ExecutionReport did get printed out via the
additional route to the bean QuickfixjMessageJsonPrinter, wouldn't it be
better if it gets routed back to become the http response for the request
(http://localhost:9123/order
Hello.
I'm just startig out with camel and am tryng to achieve the following
scenario.
1) start up a contract-first cxf service which accepts a message from a
consumer, say soapUI
2) process the message and use it as an input to another web-service
3) do some further fiddling with the message and
Hi all,
I have a problem that I need to solve and I would like to get a few ideas
about the best options on how to do it since I am new to Camel.
So I do need to implement a gateway to consume XML based messages from a
server. Initially I thought that Netty Consumer mode sounds like it would
matc
On Fri, Dec 14, 2012 at 2:37 PM, Claus Ibsen wrote:
> Hi
>
> Have you checked the Netty documentation / forum?
>
Norman from the Netty team said the ipfilter should be the way to do this
http://static.netty.io/3.5/api/org/jboss/netty/handler/ipfilter/package-summary.html
> And what do you mean b
Hi
Have you checked the Netty documentation / forum?
And what do you mean by not allowed? Should the client be denied a
connection to the netty server,
or should the netty server, just "delay" until the 1st is done, and
then continue processing that?
You can possible set the worker pool to have
Hi
I suggest to dive in the source code of the Camel version you use in
camel-mail. And look the code in MailBinding. There is some code that
set java mail properties. There may be something that causes that auth
to be true or something.
Camel 2.2 is not supported anylonger at Apache.
On Wed, D
On Mon, Dec 10, 2012 at 11:38 AM, domenico
wrote:
> I have now come to a stage where I need to connect my route to a 3rd party
> transport library. This library consists of 70+ jar files. Soem of them are
> propietary, some are just standard stuff such as xalan.jar etc. The jar
> files reference e
On Tue, Dec 11, 2012 at 11:02 AM, hefiso
wrote:
> Hi Preben
>
> Thanks for the workaround! Indeed, using
>
> propertyName="CHARSET_NAME">iso-8859-1
>
> makes the FTP-producer respect the requested charset.
>
> However, I think the best solution is to make the FTP-component behave just
> like Fil
On Fri, Dec 14, 2012 at 8:32 AM, FPF emc wrote:
> Hello,
>
> I am writing a custom component which is similar to the crypto component. I
> want to create a component which uses the PKCS7 or CMS Signed Data or
> Enveloped Data for signing and encryption. For this I looked at the
> existing crypto c
On Fri, Dec 14, 2012 at 12:17 PM, newbiee wrote:
> Thank you Hadrian!
>
> The other part of my question is how to route messages to two different
> queues managed by two different queue managers. PRODUCTION environment has
> different queue manager than QA environment. How can I specify this in th
quot;GOOG"
> }
>
> "trailer": {
>"CheckSum": "144"
> }
>
>}
>
>Is there something we need to change in the route as well?
>Appreciate your help.
I already fixed this as well. What you should be able to see now is both
Ord
I just tried set the Python Script as one line like "hello".
I can get the result as you want.
--
Willem Jiang
Red Hat, Inc.
FuseSource is now part of Red Hat
Web: http://www.fusesource.com | http://www.redhat.com
Blog: http://willemjiang.blogspot.com (http://willemjiang.blogspot.com/)
(Engli
29 matches
Mail list logo