Hi,
I have the following routes defined in my application.
from("jetty:http://0.0.0.0:6666?matchOnUriPrefix=true")
.to("http://localhost:8899?throwExceptionOnFailure=false");
from("jetty:http://0.0.0.0:8899?matchOnUriPrefix=true").to("cxfbean:customerCXFService");
Basically the first endpoint (6666) is just routing/redirecting to the
second end point (8899).
When the client uses the endpoint (8899) directly, it works fine. But when
the client uses the endpoint 6666, it has to ideally route it to 8899 and
then return the result but then it throws IllegalArgumentException host
parameter is null.
The same route configuration works fine in the 2.0 M2 release, started
choking after I upgraded to M3 release.
Any help appreciated.
Cheers!!
Katta
--
View this message in context:
http://www.nabble.com/HTTP-component-throwing-IllegalArgumentException-in-M3-release.-tp25057133p25057133.html
Sent from the Camel - Users mailing list archive at Nabble.com.