protected void findWsdl() {
String wsdlLocation = null;
GrailsCxfEndpoint annotation = getClazz().getAnnotation(GrailsCxfEndpoint.class);
if(annotation != null && !annotation.wsdl().equals("")) {
wsdlLocation = annotation.wsdl();
} else {
wsdlLocation = (String) getPropertyOrStaticPropertyOrFieldValue(PROP_WSDL, String.class);
}
if(wsdlLocation != null && !wsdlLocation.equals("")) {