Class.forName will use the ClassLoader which belongs to your plugin, so this is not the way to go. Since the classloaders are managed by equinox, you should direct your search this way.
I found an
eclipsezone thread, where somebody recommends using Platform.getBundle("bundle.id").loadClass("classNa me")
Good luck!
Tomas