Viewing Applets from IE

Hi,
i am having problems viewing applets from my IE. i have enabled java in the settings, but still i am not able to see applets in IE. so, any one know about this? please give me some suggestions.
thank you.

Is there any message in the status-bar of the browser ?
If it is 'applet xxx notinited' or 'Class xxx not found' and you are sure that you have the applet in
the right directory as specified in the applet/object tag, then you might be interested in this thread:
http://forum.java.sun.com/thread.jsp?forum=37&thread=256639
HM

Similar Messages

  • Viewing applets after a period of time from creation time.

    1.I can't view my applets from the command line the second time after execution. is that the rule? I mean must i always go to a browser to view my applet? Just curious, though.
    2. Can interfaces make use of classes in the API? In this sense, can they import? And if yes, where does overriding come in if an interface is to be used by other classes but with different behaviours?

    Bookie wrote:
    1.I can't view my applets from the command line the second time after execution. is that the rule? I mean must i always go to a browser to view my applet? Just curious, though.
    Applets cannot be run from the command line -- they run only in browsers that support Java.
    2. Can interfaces make use of classes in the API? In this sense, can they import? And if yes, where does overriding come in if an interface is to be used by other classes but with different behaviours?An interfaces can indeed reference other classes, but only to declare the methods that will be present in classes that implement it. This implies that interfaces can (and indeed very often will) have to import.
    Correction: interfaces can also import other interfaces if they extend them!
    For example, suppose you have an interface that declares one method, whose sole argument is an ArrayList -- the interface will have to import java.util.ArrayList:
    import java.util.ArrayList;
    public interface Something{
      public void doThis(ArrayList list);
    }Any class that implements the Something interface will have to provide a method with the same signature -- this is not the same as overriding.
    My respectful suggestion would be that questions of this type should be in the [New To Java|http://forums.sun.com/forum.jspa?forumID=54] forum; I'd also suggest reading up on applets and interfaces as the questions you ask are covered in any basic tutorial:
    [http://java.sun.com/docs/books/tutorial/deployment/applet/|http://java.sun.com/docs/books/tutorial/deployment/applet/]
    [http://java.sun.com/docs/books/tutorial/java/concepts/interface.html|http://java.sun.com/docs/books/tutorial/java/concepts/interface.html]
    All the best,
    Chris.
    Edited by: ChrisBoy on 16-Sep-2008 13:58

  • Running a java applet from flash

    Hi,
    How do you run a java applet from within a Flash movie?
    Is it necessary for the user to download a java interpreter, or is there an interpreter somehow built into their browser that can run applets?

    I was wondering , I don't know too much about Flash
    I remember seeing some classes in amongst the Flash
    files when it installed , but couldn't tell you whart they
    do (at the moment , but you've got me interested)
    maybe you should rethink your strategy for building your page (and your movie) maybe build the movie around
    your applet , or preload it then replace a an area of your movie area with your applet (the way you handle rollovers).
    the advantage is you can make calls to applet methods
    from Flash as it supports Javascript.
    jus remember to set the scriptable <PARAM> to true
    Users shouldn't have to download the plug-in or JRE
    you should specify it in the OBJECT or EMBED tag so
    if they don't have it , the browser will tell them.
    of course this is going to change as Microsoft are stopping support for JAVA , users will then have to download the plug-in from Sun in order to view or use JAVA on the internet.

  • Creating an Applet from an Application

    So i'm developing my own version of the '80s Space Invader game for class, and one of the requirments is that we have to turn in an application, but also post an Applet version on a website. The game is pretty much done, but I am having trouble creating the Applet from the Application. I've done most of the stuff that i thought you were supposed to do. The thing is, it will run whenever i use the appletviewer from the dos prompt just like it does when i'm running the application. However, when Ii try to view it in an actuall explorer window, it wont load.
    The way the program was designed, it had a "SpaceInvaders" class that had the main method, which only had about 4 lines. Then i had a DrawFrame class that extended JFrame, and that had the bulk of the code in it. The main method of the SpaceInvaders class had a "DrawFrame frame = new DrawFrame();" statement, and then a couple set.whatever statements. to change it to an applet, i just commented out the whole of the SpaceInvaders class, then i renamed the DrawFrame class to "public class SpaceInvaders extends JApplet" changed the consructor to the "init()" method, and commented out the setSize and setTitle statements, and also i imported java.applet.*;
    when i try to run the html file in firefox, all i get is the frame with a little red 'X' in it, and at the bottom it says "Applet SpaceInvaders notinited"
    any help, ideas, or tips would be greately appreciated. Thanks in advance, and if you need any more info, let me know.

    i created a very simple applet:
    import java.applet.*;
    import java.awt.*;
    * The HelloWorld class implements an applet that
    * simply displays "Hello World!".
    public class HelloWorld extends Applet {
        public void paint(Graphics g) {
            // Display "Hello World!"
            g.drawString("Hello world!", 50, 25);
    }and it ran just fine inside of a browser. I've also ran other applets that should be very similar to mine, but still mine doesn't work.

  • Open an applet from applet on action of a button

    i want to open a applet from applet on click the button ..
    means there r two applet one having button on it ....click this button open new applet .....plzzz any body help ...

    your Quation is not clear,
    multiple task means, you want to execute the n number of actions with in one click of single button or, you want to send multiple data b/w two views,
    if it is action triggering, you can do that, you can make one action method for the button and you can call n number of methods,
    IF i am worng correct me,
    Cheers,
    Appa

  • Newb - Loading an applet from a specific location (local) help please

    Hi guys,
    I am not familiar with java applets at all, we have a 3rd party solution, for which i need a ...... solution
    There is a website v4.globalmentoring.com/clientJava/clientlogin.asp
    on this site, if you click on a topic, and then select "Get Instructor help" link
    you will be taken to a new window (this is a chat window)
    if you "view source" of that code you will see it has some extensive java loading params etc..
    The deal is this, currently you have to go to the site to download the applet (install it on your machine) - and if you look into your Java Console
    you will see that the applet loaded and cached fine...
    The problem is this - some clients do not have rights to install Java Applets from websites, so i was thinking ... if i can give the necessary jar,cab,etc.. files to the client and the client places the files in a folder on a local network, then on the site i could point to a "local folder" to retrieve all the java information...
    here is what i'm thinking:
    //--------------------------- existing code start ------------------------------
    <applet id=appRemovable class="listappNoMargins" code="com.chatspace.v400321.Chat" archive="cfs40321.jar"
    mayscript
    width="100%" height="400" codebase="/ChatSpace/Java" name="cs">
    <param name="cabbase" value="cs3fu.cab">
    <param name="useslibrarycodebase" value="cfs40321.cab">
    <param name="useslibrary" value="ChatSpace Full Java Client 4.0.0.321">
    <param name="useslibraryversion" value="4,0,0,321">
    <param name="namespace" value="nav4">
    .// some parameters.. lots of em..
    <param name="vdir"               value="/clientJava/">
    </applet>
    //--------------------------------------------- END ------------------------------------
    What would i have to change above to make it point to a different location?
    such as lets say C:\myApplet\ ?
    thnx

    MORE INFO:
    put it this way , there are 100's of work stations that do not have rights to download/install applets - what needs to happen is for the network admin
    to set up a network directory where the applet (and all necessary files)
    will be stored, then on my website, i want to point to an applet on THEIR (the client's) network. so they can actually "download" as they have rights to run applications from local network.
    is this fairly clear?
    thnx

  • Error while accessing a public method of applet from javascript.

    Hi,
    I am getting "Object doesn't support this property or method" error
    when accessing a public method of applet from javascript in IE 6 using
    document.applets[0].myMethod();
    The same is working in IE 7.
    Thanks in advance.
    Regards,
    Phanikanth

    I don't know why it happens, but this works for me in both versions:
    <applet ..... name="MyApplet">
    </applet>and in javascript use
    document.MyApplet.myMethod()

  • Error on load: System.IO.IOException: The process cannot access the file : error in event viewer when users want to view documents from this third party deployed scan solution

    Error on load: System.IO.IOException: The process cannot access the file
    '\\server1\SCANSHARED\.pdf' because it is being used by another process.
       at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy)
       at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy)
       at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
       at System.IO.File.WriteAllBytes(String path, Byte[] bytes)
       at abc.Scan.Layouts.ICC.Scan.View.Page_Load(Object sender, EventArgs e)
    I faced this  error in event viewer  when users want to view documents from this third party deployed scan solution
    here I have two WFS servers  and they configured with load balancing in F5 .
    when I enable both servers in F5 I receive this error messages in 2nd server,
    when users want to view documents
    adil

    Do you have antiVirus installed on the sharepoint servers?
    These folders may have to be excluded from antivirus scanning when you use file-level antivirus software in SharePoint. If these folders are not excluded, you may see unexpected behavior. For example, you may receive "access denied" error messages when files
    are uploaded.
    Please follow this KB and exclude the folders from Scanning.
    http://support.microsoft.com/kb/952167
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • How to import and display an applet from JSP

    i m using netbeans 5.0
    i have class named myapplet.class
    and jsp named myjsp.jsp
    now i want to access(import) this myapplet.class from jsp
    also i want to display this applet from this jsp
    i am able to do either thing but not both
    so please help me it is so urgent and important for me bcoz
    i have to complete my project as early as possible
    Thanks in advance

    my jsp source file page path is D:\Reliance
    project\WebApplication3\web\
    and classes path is D:\Reliance
    project\WebApplication3\build\web\WEB-INF\classes\
    so problem is that if i want to use myapplet.class
    then i have to put my class in D:\Reliance
    project\WebApplication3\build\web\WEB-INF\classes\
    location
    but at that time i am not able to display this applet
    on my jsp
    if i put my myapplet.class in
    D:\Reliance project\WebApplication3\web\ then i m
    able to display
    applet but not able to access(import) this class
    hope you will got the problem!!!
    thanks for your reply !!!try to set the path of your applet on jsp something like this
    "WEB-INF/classes/myclass.class"

  • My iMac is authorised to play iTunes content, but my Apple TV keeps asking for me to authorise. I am unable to view content from my iTunes Library. How can I convince my Apple TV that I am authorised?

    My iMac is authorised to play iTunes content, but my Apple TV keeps asking for me to authorise and I am unable to view content from my iTunes Library. How can I convince my Apple TV that I am authorised?

    I am not exactly sure what you mean by "authorised", but I am experiencing a similar problem...or the same, in that Apple TV keeps telling me to enable home sharing in my MacBook Pro. It does not seem to recognize that home sharing is already enabled on my Laptop.
    Is home sharing and "authorised" one in the same? It used to work just fine before these recent Apple TV updates.
    Apple TV, Mac OS X (10.7.2)

  • How to create an incremental key in a Matrialized View created from Union?

    I am trying to create some sort of incremental key in a materialized view that is formed from several Select and Union statements.
    Why? My materialized view has a composite inteligent key of 5 columns. So, when I want to find a particular records, I don't want to have to do a select statement with some many WHERE and AND clauses.
    The ROWNUM I tried didn't work (as I thought) because my Materialized view is made out of several union and each select statement of the UNION generates a new set of incremental numbers.
    I also tried creating a SEQUENCE (I understand the sequence number will keep growing each time I do a refresh ) but it doesn't look like I can create a SEQUENCE on Matrialized View.
    Anyone has any suggestion as how do I create some kind of incremental number in a materilized view created from an Union.
    Thank you.
    H

    I'm assuming that this is a continusation of your earlier message
    Re: Can I create Sequence on Materialized Views?
    It doesn't seem to make sense, as others mentioned in that thread, to try to add this sort of key to a materialized view. Since the key would change every time you refreshed the materialized view, I'm having difficulty understanding how this will simplify your life. Your code would still have to refer to all 5 columns of the composite key since that would be the only constant.
    Justin

  • Is there a way to disable previously viewed iMessages from appearing as Messages notifications when waking my MacBook Pro from sleep?

    Is there a way to disable previously viewed iMessages from appearing as Messages notifications when waking my MacBook Pro from sleep?  Regardless of whether I am using iMessage from  my iPhone or iPad, when I open my MBP, I get attacked by Messages notifications for iMessages I've obviously already seen or responded to.  Is there a way to change this?  Are others having this issue?
    Additionally,  previous iMessages sent or received from those  devices sometimes don't populate into the Messages window on the MBP.  I haven't been able to identify when or what causes this; sometimes it just doesn't seem to work (and I verified that the messages sent/received were, in fact, iMessages and not SMS).
    Thanks - any help or insight would be appreciated!

    First you need to determine what laptop model you have; then we can help you. A Mac Book Pro cannot run OS 9.1.
    With your Mac booted up, click on the  at the far left of the menu. Then click on About This Mac. It will show what version of OS  you are running. What is the version?
    A MBP will be running something like version 10.x.
    If you are running version OS 9.x, you don't have a Mac Book Pro.
     Cheers, Tom

  • Referencing a "locally installed" Java applet from a server-based HTML page

    How does one reference a "locally installed" Java applet from a server-based HTML page (i.e. via the applet, object, or embed tags)? I have seen references in documentation that this is possible, but I have not seen any examples. I have tried a few things, but nothing seems to be working.
    Some background...
    I'm working on a web site that aggregates Internet video. For many users, I would like the site to work "without" requiring Java to be installed (or any prompts, etc.). This version of the site allows users to stream videos directly over the Internet and does not require any sort of access to the local system.
    However, in addition, I have a download manager that can be installed on the local system. Currently, it's a Windows-based "service" that is always running in the background, downloading files, etc. (with plans to later support other OSes).
    My dilemma is trying to communicate between my web site running in the local browser (executing JavaScript code) and the download manager. I call this component the "gateway". I need the gateway to be able to do the following:
    1) Pass user credentials from the web browser UI to the download manager (so it can communicate with my servers).
    2) Check the status of downloaded videos
    3) Launch a local media player (such as Windows Media, QuickTime, etc.) (or perhaps tell the download manager to launch the media player).
    Under Windows XP, I have an ActiveX control that can do these things. It communicates with the download manager via reading/writing to a shared XML configuration file.
    Unfortunately, under Vista and IE7 Protected Mode, ActiveX controls have become very restricted and my gateway no longer works. As such, I am looking at using Java for the gateway (also giving me the additional benefits of supporting additional browsers and OSes).
    From my understanding, I believe I can created a "face-less" Java applet, whose methods can be called from JavaScript. Ideally, I'm thinking I could install the applet onto the local system at the same time the download manager is installed. This would give the applet the security permissions it needs to communicate with the download manager.
    Thanks for any help and suggestions!

    Hi,
    Put the .jar file and the .class file in the path mentioned in one of the aliases in the plsql.conf file like /images or create
    a seperate directory and create an alias like /applets "path" in the plsql.conf file.
    <html>
    <body>
    <applet code=com.chartapplet.chart.BarChartApplet
    codebase=/applets/
    archive=/applets/chart.jar width=300 height=200>
    <param name=background value="white">
    </body>
    </html>
    Hope this helps.
    Thanks,
    Sharmila

  • Calling a method in the view controller from the component controller

    Hi
    Is there anyway to call a method in the view implementation from the component controller??
    Thanks
    jack

    Thanks for all your replies. I want this kind of a functionality because Im trying to invove a DC (Child DC) from a Parent DC such that the Child DC's view is displayed onto the view container of the Parent DC. I have embedded using 'interface view of a component instance' in the Parent Window and am able to create the component and set usage though the onPlugDefault of the Child View.
    But I observe that when i make a call from the parent, the flow is like this:
    1. The wdDoInit of the Child Component Controller gets triggered first.
    2. Then the wdDoInit of the Child's <b>VIEW</b> gets triggered
    3. and <b>THEN</b> the onPlugDefault of the Child Component Interface View
    What I had actually wanted was to Fire onPlugDefault where Im calling a method LoadData(), after which the Child DC's view must be triggered so it can display the fetched data.
    What is actually happening is the view gets displayed, but no data is displayed in the view.
    Right now I have just given a work around where Im triggering <b>LoadData()</b> of the <b>COmponent COntroller</b> from the <b>wdDoInit</b> of the <b>VIEW</b>.
    Is there a better way to do this? I find it strange that I have to load the Data from the view.
    Thanks
    Jack

  • ADF - Accessing view object from a button in a window

    Hi
    I am using Jdeveloper 10.1.3.2.0 to build a Swing/ADF application.
    I added a method to a view class to call a database procedure.
    I use that view as a base of a jTable to display data in a window.
    Now I need to call the method that I created in the view class from a button on the same window where I display the data, ideally using the same db connection.
    I am quite new to ADF and I have no idea how to get a reference to the view instance in the button method to call my new method. How can I do that? Is there another way to achieve this?
    Thanks!
    Luis

    You usually do this by creating the method at the application module level and then exposing it as a client method. You can then drag and drop it onto your form as a button.
    See details in the ADF Developer Guide chapters 8.3-8.5:
    http://download.oracle.com/docs/html/B25947_01/bcservices003.htm#sm0206

Maybe you are looking for

  • ITunes 10.1 no longer syncs?

    After updating to the latest iTunes 10.1, it keeps crashing when attempting to sync new songs. Windows says iTunes isn't responding, checks for solution, and closes. This problem has only happened with this version of iTunes, and syncing music is the

  • Apple Monitor doubles as a space heater

    Hi, Just got a 23" apple monitor and you could use it as a space heater. Had it on for about 2 hours and the thing gets hot, Real hot.... Is this normal.... Seems to work fine but it does get hot... Thanks Dave

  • Has anyone solved this problem?

    My ipod was taking forever on the 'do not disconnect' setting and getting really hot. I left for work and it was still the same when i came in 4 hours later. In the end i decided to simply remove the dock from the ipod. When the screen changed it had

  • How can I use stored music on my iphone 6 as a ringtone?

    How can I use stored music on my iphone 6 as a ringtone?

  • Output type triggers HU and PGI

    hi, I am associating an output type in delivery to trigger creation of HU and PGI. When i run it independantly without output type, it is working. But, when triggered with output type , it is giving call transaction command as illegal command. Is tha