I have a few problems while getting started my Soundrecorder-applet in a browser (Firefox, Safari, Chrome...) I was able to isolate the problem as far discribed below:
Problem:
Installed java version: 6u32
Compiled java version (applet): 6u32 OR 7u4
Result: The applet works without any Problems on following OS's: Windows, Linux, OS x under Safari, Chrome and Firefox.
Installed java version: 7u4
Compiled java version (applet): 6u32 OR 7u4
Result: The applet does NOT work on following OS's: Windows, Linux, OS x under Safari, Chrome and Firefox.
First conclusion: Applet does not work with the installed version 7u4 of Java!
I also have to mention that I did some required modifications to get my code compiled under java 7.
build.xml - file:
<target name="build" depends="base">
<javac srcdir="${src}" destdir="${bin}" target="1.7">
</javac>
</target>
org.eclipse.jdt.core.prefs:
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
org.eclipse.jdt.core.compiler.compliance=1.7
org.eclipse.jdt.core.compiler.source=1.7
Hint: The org.eclipse.jdt.core.prefs should not need to be considered cause the compilation has been made with Apache Ant Java library.
JFrame
(easier for others to test)? – Andrew Thompson Jun 6 '12 at 11:57