public static void checkEndpiontIntegration(CxfEndpoint endpoint, Bus bus) throws CamelException {
String wsdlLocation = endpoint.getWsdlURL();
QName serviceQName = CxfEndpointUtils.getQName(endpoint.getServiceName());
String serviceClassName = endpoint.getServiceClass();
DataFormat dataFormat = CxfEndpointUtils.getDataFormat(endpoint);
URL wsdlUrl = null;
if (wsdlLocation != null) {
try {
wsdlUrl = UriUtils.getWsdlUrl(new URI(wsdlLocation));
} catch (Exception e) {