* <p>
* This method is called by our base class during initialization.
* </p>
*/
public final void loadPlugin() throws XmlBlasterException {
ProtocolPluginManager loader = glob.getProtocolPluginManager();
this.driver = loader.getPlugin(super.address.getType(), super.address.getVersion()); // e.g. CorbaConnection(glob);
if (this.driver == null)
throw new XmlBlasterException(glob, ErrorCode.RESOURCE_CONFIGURATION_PLUGINFAILED, ME, "Sorry, protocol type='" + super.address.getType() + "' is not supported");
}