Re: Newbiew: from(cxf).to(file) doesn't work

2009-11-23 Thread Alexandros Karypidis
t that your route does not set an out message on the exchange: the file component is working to a 'InOnly' MEP while the CXF component is working in 'InOut' MEP. Maybe add a processoe after your 'to' that sets a response? /Ade - Original Message ----- From: A

Re: Newbiew: from(cxf).to(file) doesn't work

2009-11-22 Thread Alexandros Karypidis
Bingo! File is written correctly now. Thanks! Claus Ibsen wrote: On Mon, Nov 23, 2009 at 8:47 AM, Alexandros Karypidis wrote: I changed my Router to read: from("cxf:bean:asyncMessagingProvider").to("log:AsyncMessaging").to("file:///outfiles/"); instead of: from("cxf:bean:asyncMessa

Re: Newbiew: from(cxf).to(file) doesn't work

2009-11-22 Thread Willem Jiang
'InOut' MEP. Maybe add a processoe after your 'to' that sets a response? /Ade - Original Message - From: Alexandros Karypidis To: users@camel.apache.org Sent: Sun Nov 22 16:41:37 2009 Subject: Newbiew: from(cxf).to(file) doesn't work Hi, I'm trying to

Re: Newbiew: from(cxf).to(file) doesn't work

2009-11-22 Thread Claus Ibsen
On Mon, Nov 23, 2009 at 8:47 AM, Alexandros Karypidis wrote: > I changed my Router to read: > > from("cxf:bean:asyncMessagingProvider").to("log:AsyncMessaging").to("file:///outfiles/"); > instead of: >       from("cxf:bean:asyncMessagingProvider").to("file:///outfiles/"); > Try adding a .convertB

Re: Newbiew: from(cxf).to(file) doesn't work

2009-11-22 Thread Alexandros Karypidis
I changed my Router to read: from("cxf:bean:asyncMessagingProvider").to("log:AsyncMessaging").to("file:///outfiles/"); instead of: from("cxf:bean:asyncMessagingProvider").to("file:///outfiles/"); Now, I can see the SOAP envelope in the output as it passes through the log endpoint

Re: Newbiew: from(cxf).to(file) doesn't work

2009-11-22 Thread Claus Ibsen
; Hi there, >>> >>> I *think* your problem may be related to the fact that your route does >>> not set an out message on the exchange: the file component is working to a >>> 'InOnly' MEP while the CXF component is working in 'InOut' MEP. >>>

Re: Newbiew: from(cxf).to(file) doesn't work

2009-11-22 Thread Alexandros Karypidis
dis To: users@camel.apache.org Sent: Sun Nov 22 16:41:37 2009 Subject: Newbiew: from(cxf).to(file) doesn't work Hi, I'm trying to create my "hello world" of CXF 2.2.4 + Camel 2.0.0. The idea is simple: I publish a WSDL as a camel-cxf endpoint and add a route to a file endpoi

Re: Newbiew: from(cxf).to(file) doesn't work

2009-11-22 Thread Alexandros Karypidis
at sets a response? /Ade - Original Message - From: Alexandros Karypidis To: users@camel.apache.org Sent: Sun Nov 22 16:41:37 2009 Subject: Newbiew: from(cxf).to(file) doesn't work Hi, I'm trying to create my "hello world" of CXF 2.2.4 + Camel 2.0.0. The idea is simp

Re: Newbiew: from(cxf).to(file) doesn't work

2009-11-22 Thread Willem Jiang
onse? /Ade - Original Message - From: Alexandros Karypidis To: users@camel.apache.org Sent: Sun Nov 22 16:41:37 2009 Subject: Newbiew: from(cxf).to(file) doesn't work Hi, I'm trying to create my "hello world" of CXF 2.2.4 + Camel 2.0.0. The idea is simple: I publish a

Re: Newbiew: from(cxf).to(file) doesn't work

2009-11-22 Thread Adrian Trenaman
7; that sets a response? /Ade - Original Message - From: Alexandros Karypidis To: users@camel.apache.org Sent: Sun Nov 22 16:41:37 2009 Subject: Newbiew: from(cxf).to(file) doesn't work Hi, I'm trying to create my "hello world" of CXF 2.2.4 + Camel 2.0.0. The idea is si

Newbiew: from(cxf).to(file) doesn't work

2009-11-22 Thread Alexandros Karypidis
Hi, I'm trying to create my "hello world" of CXF 2.2.4 + Camel 2.0.0. The idea is simple: I publish a WSDL as a camel-cxf endpoint and add a route to a file endpoint. If I understand correctly, that would lead to files being created in a folder, containing the SOAP xml of the web service. Wh