for(String remote : remoteNames) {
try {
Class remoteClass = sessionDesc.getEjbBundleDescriptor().getClassLoader().loadClass(remote);
BusinessInterfaceDescriptor busIntfDesc =
new BusinessInterfaceDescriptorImpl(remoteClass);
remoteBusIntfs.add(busIntfDesc);
} catch(ClassNotFoundException e) {
throw new IllegalStateException(e);