Description
Having one `cxf:bean:soapClientEndpoint` (with Singleton scope) and following two routes
from("direct:simpleUriBean") .to("cxf:bean:soapClientEndpoint?dataFormat=PAYLOAD"); from("direct:operandsAdd") .to("cxf:bean:soapClientEndpoint?dataFormat=POJO");
Leads to situation, that invoking route via `direct:simpleUriBean` will use `dataFormat=POJO` instead of PAYLOAD (which reader of that code could expect). Could we somehow detect those misuses of URI options ?
Eg. printing WARNING: You are using URI option dataFormat which wasn't taken into account because you are using shared bean with Singleton scope.