Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [platform-swt-dev] SWT browser

I can answer a few of these, but Grant will likely need to answer some of them.

On Feb 10, 2011, at 3:05 PM, Dermot Doherty wrote:

> 2) Both Mozilla and WebKit on Mac throw a "java.lang.NoSuchMethodError: doubleValue". It is difficult to pinpoint exactly where this is occurring, but it seems to happen when I create a new SWT browser instance.
> This is not happening on Windows.
> See the log output below:
> java.lang.NoSuchMethodError: doubleValue
> at org.eclipse.swt.internal.cocoa.OS.objc_msgSendSuper(Native Method)
> at org.eclipse.swt.widgets.Display.applicationSendEvent(Unknown Source)
> at org.eclipse.swt.widgets.Display.applicationProc(Unknown Source)

Given that it's java.lang.NoSuchMethodError that makes me think we're using reflection somewhere but the object we invoke it on doesn't have that method. But, I don't see any uses that call doubleValue. It's especially odd to see it during objc_msgSendSuper. Check Console.app to see if you're getting any additional information.

If you have a simple test case that can reproduce it, please file a bug.

>  4) SWT WebKit browser on Mac disables Java when embedded in Safari.
> Explanation: When a SWT WebKit Browser is embedded in a Java applet on Mac the "Enable Java" preference gets disabled. This is not happening when the Mozilla engine is used.
> Is there something in the WebKit implementation that automatically disables Java that may be getting picked up by Safari which is also using the same WebKit engine. This only happens for the first SWT WebKit browser that is embedded. Subsequently embedded SWT WebKit browsers on the same page do not disable the Java (after manually enabling the Java in Preferences > Security).

See WebKit.java:

		WebPreferences.standardPreferences().setJavaEnabled(false);

But, it's only called once during initialization. I suspect standardPreferences() are per-user, so it makes sense that turning it on again in Java Preferences would enable it again for any additional Browser widgets created.

This is probably a holdover from Carbon. I seem to recall a situation where you could end up embedding Cocoa (WebKit) into Carbon and then somehow putting a Carbon view into the Browser. And you can't mix Carbon and Cocoa that way, so it makes sense to block applets. In Cocoa there may not be a reason to prevent that.

> 5) Do Java Applets run in the SWT WebKit browser?

I don't know that we've ever tried. On the Mac it may work now in Cocoa, but you'd have to rebuild the SWT to try it out.

Hope some of that helps.

-- Scott K.

------------------
Scott Kovatch
IBM
Eclipse Platform Team
Pleasanton, CA





Back to the top