Can't run JMF Applet in IE

OS: win2000 professional
JRE: Jdk-1.4.0._01
JMF: 2.1
Borwser: IE 5.0
I have completed installing the JMF, but no JMF Applet
can be shown in IE, the messages always are
"class Not Found, javax.media.ControllerListener" or
"class Not Found, javax.media.Player"
anyone can help me? thanks!

I think I found where the problem comes from.
In one machine I installed jmf as admin I found following registy key:
LocalMachine--software--microsoft--javavm
there is one value called classpath which contains the jmf directory.
I suppose this key make java plug-in find our jmf library.
However in anothre machine I installed jmf without admin privalages. I didn't see that key contain my jmf directory. This is because I don't have the privalages to modify this key. The installation doesn't give me any warning messages. I think this is the problem.
When Iinclude that tag <APPLET archive="jmf.jar" in the html pages. The java console said that the applet don't have the permission to use capture audio devices. So..... It still don't work
Any suggestions?

Similar Messages

  • How to run JMF Applet on a machine without JMF installed

    Hi
    I have found many question about that but I don't undertand reply.
    I want display a JMF Applet on a machine without JMF installed. This PCs browser is the Netscape navigator 4.78
    I have restrictions, I can't install anything on a client machine. What can I make ?
    Is there solutions ?
    Is it possible to install few components to run the JMF Applet and desinstall it properly ?
    Thanks.
    Sorry I don't speak well english.

    private void detectDevices(Label la) {
    // Check if VFWAuto or SunVideoAuto is available
    Class directAudio = null;
    Class autoAudio = null;
    Class autoVideo = null;
    Class autoVideoPlus = null;
    Object instanceAudio;
    Object instanceVideo;
    Object instanceVideoPlus;
    try {
    directAudio = Class.forName("DirectSoundAuto");
    } catch (Exception e) {
    try {
    autoAudio = Class.forName("JavaSoundAuto");
    } catch (Exception e) {
    try {
    autoVideo = Class.forName("VFWAuto");
    } catch (Exception e) {
    if (autoVideo == null) {
    try {
    autoVideo = Class.forName("SunVideoAuto");
    } catch (Exception ee) {
    try {
    autoVideoPlus = Class.forName("SunVideoPlusAuto");
    } catch (Exception ee) {
    if (autoVideo == null) {
    try {
    autoVideo = Class.forName("V4LAuto");
    } catch (Exception eee) {
    if (directAudio == null && autoAudio == null &&
    autoVideo == null && autoVideoPlus == null) {
    return;
    try {
    if (directAudio != null) {
    instanceAudio = directAudio.newInstance();
    la.setText("loading....dirver:"+directAudio.getName());
    if (autoAudio != null) {
    instanceAudio = autoAudio.newInstance();
    la.setText("loading....dirver:"+autoAudio.getName());
    if (autoVideo != null) {
    instanceVideo = autoVideo.newInstance();
    la.setText("loading....dirver:"+autoVideo.getName());
    if (autoVideoPlus != null) {
    instanceVideoPlus = autoVideoPlus.newInstance();
    la.setText("loading....dirver:"+autoVideoPlus.getName());
    } catch (ThreadDeath td) {
    throw td;
    } catch (Throwable t) {
    call this function for init

  • Running JMF applet without JMF?

    How can I get my JMF applets to run on a users machine without JMF installed on their machine?
    Can I emded a JMF plugin in the HTML code (just enough to let them run the applet!) ?
    thanks

    please dont cry.....
    one thing is u need to send all the class files required for the applet to run on the client side.
    below is the code to detect for the plug in for ie and netscape:
    out.println("<body bgColor=\"#EEEEE0\">");
                        out.println("<h1 align=center>Aspire Chat</h1>");
                        out.println("<table border=1 align=\"center\"><tr><td>");
    //                    out.println("<OBJECT classid=\"clsid:8AD9C840-044E-11D1-B3E9-00805F499D93\" width=\"400\" height=\"400\" align=\"centre\" codebase=\"http://java.sun.com/products/plugin/1.3/jinstall-13-win32.cab#Version=1,3,0,0\">");
                        out.println("<OBJECT classid=\"clsid:8AD9C840-044E-11D1-B3E9-00805F499D93\" width=\"400\" height=\"400\" align=\"centre\" codebase=\"http://java.sun.com/products/plugin/autodl/jinstall-1_4_0-win.cab\">");
                        out.println("<PARAM NAME=\"code\" VALUE=\"Vapp.class\">");
                        out.println("<PARAM NAME=\"codebase\" VALUE=\"http://"+host+":8080/aspire\">");
    // out.println("<PARAM NAME=\"archive\" VALUE=\"AspireChat.jar\">");//, sound.jar, jmf.jar
    out.println("<PARAM NAME=\"archive\" VALUE=\"Aspire.jar, jmf.jar\">");//, sound.jar, jmf.jar
         out.println("<PARAM NAME=\"type\" VALUE=\"application/x-java-applet;version=1.4\">");
    out.println("<PARAM NAME=\"scriptable\" VALUE=\"true\">");

  • I can't run an applet

    When I run the sample applets that come with jdk1.4, the HTML code displays OK, but the applet part only shows a solid grey box.
    Have any ideas why?

    hi,
    can you tell my your HTML code?
    if you use<applet> tag,then your applet will not run,
    beacause the iE or NS don't not support the jdk1.0 up!
    so if you want run the applet ,there are two way:
    1)
    compile your code: javac -target 1.1 yourcode.java
    2)
    you can use the jre plug-in
    first, edit your HTML code use <applet> tag
    second,use the HTMLconverter(java_home/bin) tool convert the HTML code

  • How can I run one applet from enother

    Hi,all!
    I have two applets.And I want to open(run) the second one bypressing a button on a first one.
    Any help will be appreciated.

    "Running an applet" means loading a HTML file that has another Applet tag. I assume this is what you want.
    In that case you can call the following methods (in your codes in the 'first' Applet):
    this.getAppletContext().showDocument(anotherUrlName, targetName);
    anotherUrlName is the URL of the second html file that has another Applet tag. Check API documention for different values for targetName.
    jerry

  • How can I run an applet from an application (frame)?

    I have an application (frame) that render images and save it, and then I want to create an animation with those images using Animator applet from the application itself, but I do not how to call the applet from the application, is this possible?
    Thanks in advance, Jorge

    You can simply run a JApplet in a JFrame. Just create a frame object, an object of your applet, add the applet to the frame and call the init() function of your applet. It could look like this:
    JFrame anyFrame = new JFrame("MyTitle");
    YourApplet yourApplet = new YourApplet();
    anyFrame.getContentPane().add(yourApplet, BorderLayout.CENTER);
    yourApplet.init();
    anyFrame.setSize(new Dimension(800,600));
    anyFrame.setVisible(true);
    You will not necessarily have to write the applets default constructor.

  • How can i run an applet from a webpage????

    can someone PLEASE tell me how i can run an applet from my webpage. a detailed response would be extremely appreciated.
    sam

    Here's a web page that you can use as skeleton. You should be able to start with that.
    <HTML>
    <HEAD>
    <TITLE>Title</TITLE>
    </HEAD>
    <BODY>
    <APPLET CODE="your.class" WIDTH=400 HEIGHT=300 IGNORE=""></APPLET>
    </BODY>
    </HTML>

  • Help me:I can't run my applet in the browser.

    I use JCreator developed an applet, I can run its "htm" file inside JCreator, everything is Ok,but when I try to run it directly (Double click "htm" file) on the browser, it always shows a blank area with a cross on top-left.
    Please help me,thanks!
    (OS: xp, my "htm" file is in the same folder with classes files )

    Could be due to classes not being found or wrong version of java...

  • Can't run an applet with Internet Explorer for Windows

    I'm not sure this is the right news group, if not please direct me to the correct one.
    I have an applet at http://209.55.115.36/webfit/Instructions/instructio_list.php?section_id=1&instructionsPage=2 It works in various browser except internet explorer for Windows. I've tried it with IE on windows XP, 98 and ME. Here is what I do.
    1) I uninstall any copies of the Java Plugin.
    2) I install a new copy of the Java Plugin
    3) I test that I can see the Java Coffee cup in IE
    I try loading in my applet and I get a big grey spot.
    The applet works with all Mac Browsers, Netscape and Opera, but not IE. I don't get any error messages, just nouthing.
    Any pointers or thoughts would be helpful. I'm under a time crunch because I wanted to show it off at a trade show this weekend.
    -Gary

    HEY! I saw what you're talking about! I was working on my own stuff, and my applet said it loaded and init'd, but was still blank. The only difference was I had upgraded to the Plug-In 1.4.1 this morning. So I went back to version 1.4.0 and it worked perfectly again. Maybe that's what's happening to you. So ignore the link I just posted and go to this one:
    http://java.sun.com/j2se/1.4/download.html
    That'll let you download version 1.4.0 instead, and I'll bet you that one works. Let me know. Good luck!

  • Re: Can I run JMF in linux without X

    I've just installed JMF for Linux last night.
    I have it working on a Win 98 system.
    I "think" X-Windows loads the display drivers ? Not sure though.
    I've an old ATI All-in-Wonder video capture card, and think I have to
    upgrade from X Windows 11 Release 6, to a newer version to use the
    new Linux Graphics drivers for my card under the Gatos project in www.Sourceforge.net.... ( For video-in capture, not necessarily video display )
    Hope some of that vague information helps...
    regards,
    Owen

    Yes, you can. However, you must have the Mac OS 9 System Folder installed on your hard drive.

  • Can not run nm-applet as user

    I think this happened after last update on network-manager.
    nm-applet --sm-disable
    ** (nm-applet:7942): WARNING **: <WARN>  request_name(): Could not acquire the NetworkManagerUserSettings service.
      Error: (9) Connection ":1.45" is not allowed to own the service "org.freedesktop.NetworkManagerUserSettings" due to security policies in the configuration file
    There is nothing in daemon.log about any errors.
    Runnig nm-applet works with root.

    ammon wrote:
    wonder wrote:paste ~/.xinitrc
    Nothing special
    exec ck-launch-session syndaemon -t -i 2 & openbox-session
    that is pretty much the problem. you are doing it wrong.
    you only run syndaemon with ck-launch-session.
    you should do
    exec ck-launc-session dbus-launch openbox-session

  • I can't run an applet from the browser

    I created an applet using the JDeveloper 3.1 wizard. The applet works in the JDeveloper environment and from the command line using the appletviewer. However, it won't work from the browser (ie 5.0 or netscape 4.7). The error I am receiving from the java console is:
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.debugoutput read)'
    Diagnostics: Silencing all diagnostic output (use -Djbo.debugoutput=console to see it)
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.logging.show.timing read)'
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.logging.show.function read)'
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.logging.show.level read)'
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.logging.show.linecount read)'
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.logging.trace.threshold read)'
    Failed to query environment: 'access denied (java.util.PropertyPermission jbo.jdbc.driver.verbose read)'
    Exception occurred during event dispatching:
    java.lang.ExceptionInInitializerError: java.security.AccessControlException: access denied (java.sql.SQLPermission setLog)
    Please help.

    these are java 2 security permissions you'll need to address ..
    review the java 2 security permission chapter of the "java developer's guide"
    you can find the documentation in the "java documentation" section of documentation for your rdbms version at the following link : http://otn.oracle.com/docs/products/oracle8i/doc_index.htm
    null

  • How can i run applets in kawa?

    how can i run compiled applet programs in KAWA
    help me

    If you always have the external display connected, you can configure the OS to consider it as the default or main display. Once everything is connected and set to your liking (resolution, color depth, etc.), "bless" the external display by clicking & dragging the menubar from the Mac's internal display onto the external. This only works if you are not using video mirroring.
    Once this is done, applications will open by default on the external and now "main" display and you can configure them to go fullscreen or whatever.

  • Make IE ready to run the applet in ubuntu machine

    Dear friends,
    I want to check JMF installation using diagnostic code in IE6/IE7 on ubuntu.
    I have downloded these browsers. When I was checking the JMF installation, using this below URL,
    http://ku-prism.org/virtualprism/explorations/JavaTest/javatestpage.html
    Applet wasn't run, and it hasn't display the any messages ( success/Failure) inside the applet window.
    Can any one tel me that, How can I run the applet in IE6/IE7 on ubuntu ?
    Note:
    When I was checking this to windows xp ( IE) , it says below nmessages,
    For JRE => jre Version... 1.5.0_10
    For JMF => JMF Version... 2.1.1e
    All Java Build
    Native Libraries found success.
    Thank you,

    As an Applet does not have a method main, then obviously you need to convert it to an application, which does.

  • JMF Applets in IE - desperately seeking help

    how do i run JMF applets in internet explorer of a client where JMF is not installed...is there any downloadable plugin for JMf that the client can download...this very important and i've searching the net but in vain...
    any kind of help would b greatly appreciated....
    wishing u a happy new year
    suri

    Your clients have to download JMF in order to use it in applet. I am not sure whether SUN plan to include it with JRE 1.4 or not.
    Hope it helps,
    St�phane

Maybe you are looking for

  • USER EXIT or BADI for Vendor field in MIRO

    Hi Experts, In MIRO transaction vendor field gets defaulted from Purchase Order. So my requirement is to changes that vendor with alternate payee. To <u>replace the vendor with alternate payee</u> I need the <b>USER EXIT or BADI</b>, kindly help me o

  • Hyperlink in mail

    Hi. I am trying to put a hyperlink in one image inside an email. I can see the image, I can use the hyperlink command in edit but nothing happen. Any suggestions? Thanks. jro

  • How condition divide in to parts i wnats vat4%and cst 1% but at this time

    hi i am doing RG23D process in which take cont ion JIN6 condition type in which come vat+cst 5% and i want to divide it in two like vat 4% and cst1% . what is procedure to dividend it and it shoe in invoice in two different record  .and in invoice sh

  • Unique constraint violation

    Hi, I am a newbie to oracle.. I have a composite primary key consisting of sequence,reg_no,srvc_code and srvc_type.. when i tried inserting a record through the application it is showing that Unique constraint violated..But i did not find the record

  • Google problem

    I am having a problem with Google searches on my iPad. If I do a search, Google will bring up the results, but I can't click on any of them, and eventually it redirects to the Google homepage. This problem happens whether I use the Google home page o