javax/media/NoProcessorException when using an applet
hi,
I wrote a JMF application, this application gets a webcam source and shows it in a JPanel. But now I need a applet of this application. So when I tried to convert it to an applet by adding to the main class "extends javax.swing.JApplet" and I replaced "public static void main(String[] args)" by public void init() but when I try to start the applet in a browser (tried a lot of browsers) the following error occurs:
java.lang.NoClassDefFoundError: javax/media/NoProcessorException
at jmfexample.init(jmfexample.java:3)
at sun.applet.AppletPanel.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
what I try to, I do not get my applet working. I tried to add all sources to an package, I added all the source to a jar file but non of these work, the error still occurs.
I also checkt the JMF settings but these are correct, my browser has access to the JMF and applets may access the JMF etc. I also searched for my webcam, but my cam is still in the device list.
here are my sources:
http://gigcom.gi.funpic.org/Webcam.rar
can somone please help me, its driving me nuts!!!

