Mac OS X: java.lang.ClassNotFoundException: com.sun.java.browser.plugin2.DOM
- by Thilo
I am trying to use the new LiveConnect features introduced in Java 6 Update 10.
Code looks like this (copied from the applet tutorial):
Class<?> c = Class.forName("com.sun.java.browser.plugin2.DOM");
Method m = c.getMethod("getDocument", java.applet.Applet.class);
Document document = (Document) m.invoke(null, this);
But all I am…