Re: CFX - problem when receiving web service response

2011-12-22 Thread kafe
Actually, i solved my problem by adding a GZIPInInterceptor to my CXF endpoints. Thx for help. -- View this message in context: http://camel.465427.n5.nabble.com/CXF-problem-when-receiving-web-service-response-tp4994825p5094957.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: CFX - problem when receiving web service response

2011-11-18 Thread kafe
I modified JBoss "server/default/deploy/jbossweb.sar/server.xml" http connector and set compression="1" but same result :-( -- View this message in context: http://camel.465427.n5.nabble.com/CXF-problem-when-receiving-web-service-response-tp4994825p5005205.html Sent from the Camel - Users mailing

Re: CFX - problem when receiving web service response

2011-11-18 Thread kafe
Hum... can you be more precise please ? How can i do that ? Thanks for your help. -- View this message in context: http://camel.465427.n5.nabble.com/CXF-problem-when-receiving-web-service-response-tp4994825p5004310.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: CFX - problem when receiving web service response

2011-11-16 Thread Willem Jiang
You are using Servlet transport. You need to configure the WebContainor the support gzip. On Wed Nov 16 21:34:33 2011, kafe wrote: That's what i'm trying to do but without success right now. Here is my camel-cxf.xml spring configuration file : http://www.springframework.org/schema/beans";

Re: CFX - problem when receiving web service response

2011-11-16 Thread kafe
That's what i'm trying to do but without success right now. Here is my camel-cxf.xml spring configuration file : http://www.springframework.org/schema/beans"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xmlns:cxf="http://camel.apache.org/schema/cxf"; xmlns:cxf

Re: CFX - problem when receiving web service response

2011-11-16 Thread Willem Jiang
You many need to install the gzip feature of CXF to consumer request which is gziped. On Wed Nov 16 18:43:53 2011, kafe wrote: Guys, i'm back to keep you informed. I've solved my problem and i can now use POJO format, but i had to disable the gzip compression in the SoapUI mock configuration (

Re: CFX - problem when receiving web service response

2011-11-16 Thread kafe
Guys, i'm back to keep you informed. I've solved my problem and i can now use POJO format, but i had to disable the gzip compression in the SoapUI mock configuration (so that the http response of the web service call is not compressed and can then be correctly managed by CXF/http connector ?). Th

Re: CFX - problem when receiving web service response

2011-11-15 Thread kafe
I found something interesting, if i modify my route to use the CXF MESSAGE format : it works... i get my response on my SOAP UI client. But i'd really like to know why it does not work with the POJO format for example (same problem with PAYLOAD one). -- View this me