Re: Why camel put the post request's form body into request header?

2015-03-17 Thread Yuffie
. -- If you reply to this email, your message will be added to the discussion below: http://camel.465427.n5.nabble.com/Why-camel-put-the-post-request-s-form-body-into-request-header-tp5764312p5764314.html To unsubscribe from Why camel put the post request's form body

Re: Why camel put the post request's form body into request header?

2015-03-17 Thread Willem Jiang
When the content-type isĀ application/x-www-form-urlencoded, it means the POST message body is form, so camel try to parser the message body into a value set and put them into a message header. Can you check why the post body is huge? If you are using camel-jetty and camel-netty4-http to build a

Why camel put the post request's form body into request header?

2015-03-17 Thread Yuffie
Hey, I'm a newbie in camel. When I use camel-jetty and camel-netty4-http, I find the component will put the body into header when the content-type is application/x-www-form-urlencoded. It cause the OutOfBoundException when the post body is huge. Is this an issue? Or there is any reason that camel