String message = "The location of the Generic Factory is not specified.";
throw new XBayaException(message);
}
try {
this.creator = new GFacServiceCreator(wsdlLoc);
} catch (URISyntaxException e) {
String message = "The location of the Generic Factory is in a wrong format";
throw new XBayaException(message, e);
}
if (this.creator == null) {