// Check that we were passed a valid serviceKey per
// 5.1.12.4 of the UDDI v3 spec
String businessKey = body.getBusinessKey();
org.apache.juddi.model.BusinessEntity modelBusinessEntity = em.find(org.apache.juddi.model.BusinessEntity.class, businessKey);
if (modelBusinessEntity == null) {
throw new InvalidKeyPassedException(new ErrorMessage("errors.invalidkey.ServiceNotFound", businessKey));
}
}
}
ServiceList result = InquiryHelper.getServiceListFromKeys(body, findQualifiers, em, keysFound);