//step three, we have two options
//1) import the wsdl's services into a brand new business
//2) import the wsdl's services into an existing business
//in either case, we're going to have to parse the WSDL
ReadWSDL rw = new ReadWSDL();
Definition wsdlDefinition = null;
if (pathOrURL.startsWith("http")) {
wsdlDefinition = rw.readWSDL(new URL(pathOrURL));
} else {
wsdlDefinition = rw.readWSDL(pathOrURL);
}
if (wsdlDefinition == null) {
System.out.println("There was an error parsing the WSDL!");
return;