Recompile Applet, see old vers in browser

I am developing an Applet.
I make changes to the code.
I recompile it successfully.
I load its' associated HTML file into my browser (IE6).
Instead of seeing the new version, I see the old.
I have clicked on 'Tools', then 'Internet Options...', then the button 'Delete Files...', checked the box 'Delete all offline content', and 'Okay'ed everything, but I still see the old version.
What am I missing? Please help. Thx.

From the original author:
Thanks to all for your input. The Duke Dollars were awarded to user 'jajenkins', who hit the nail on the head. Using the Java Console is the easiest and best way to force the latest and greatest version of you under-developement applet into the browser.
Here's how it worked for me.
Using Internet Explorer 6 and Java Plug-in 1.4.
In IE6, choose menu item 'View', submenu item 'Java Console'. A Java console for the Microsoft VM appears, and at the same time, an icon appears in the systray for the Java Plug-in Java Console (looks like a steaming cup of java, of course). Close the Microsoft VM Java Console, as it is useless. Double-click the systray icon - the Java Plug-in Java Console appears. When you have a modified and recompiled applet ready, navigate off the document containing the old version of your applet, type 'x' in the Java Console, then navigate back to the applet containing document. Vwala - your new applet, running just the way you coded it. No more need to clear the temporary internet files cache. No need to close any browser instances.
Again, thanks to 'tajenkins', and to all other contributors :)

Similar Messages

  • Applet can not run in browser, but it wroks in appetviewer. Why?

    I wrote a very simple applet, and it works well when I use appletviewer. But when I use browser to open the html file which contains the applet, it always gives no class found error. My browsers are IE5.0 and Netscape4.77. Hwo can I make the applet run in browser?
    Quick response is greatly appreciated.

    see you have to put the proper code base in your html file.check if your browser is java enabled or not.Java plugin comes with IE 5 and it automatically get installed if you won't disagree with that.Check in optin menu of ur browser that java is enabled or not.
    Applet works fine with all browser.
    2nd thing when you r running applet through appletviewer,it runs as an application from your local JVM while running through browser means you are running applet through browser 's JVM.

  • Applet JNLP not accessible in browser ?

    Hello,
    I am new to java and to programiing in general. Thanks in advance for your help. I can't get an Applet to work in any browser (Google, Mozilla, IE) while it works fine in appletviewer. Why?
    The Source:
    import java.awt.*;
    public class Hwa extends java.applet.Applet {
    public void init (){
         add(new Label("Hello World"));
    compiled in Hwa.class, then in a Hwa.jar file,
    The JNLP file:
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="" href="">
    <information>
    <title>Hw Applet</title>
    <vendor>CCN</vendor>
    </information>
    <resources>
    <j2se version="1.4+" href="http://java.sun.com/products/autodl/j2se" />
    <jar href="http://www.ccca.eu/Hwa.jar" />
    </resources>
    </jnlp>
    The HwaAPJNLP.html file:
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <html dir="ltr" lang="fr"><head>
    <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
    <title>CCCAEU</title>
    <meta content="" name="author">
    <style type="text/css"></style>
    <link rel="stylesheet" href="CCCAEU.css" type="text/css">
    </head><body>
    <applet code="Hwa.class" ref_jnlp="Hwa.jnlp" height="50" width="150"></applet>
    </body></html>
    All files are copied on the http://ccca.eu/. of the server
    Executing appletviewer HwaAPJNLP.html (local copy of the html file) works just fine BUT launching http://www.ccca.eu/HwaAPJNLP.html returns a blank rectangle with the JAVA console message "Detected from bootclasspath: C:\\PROGRA~1\\Java\\jre7\\lib\\deploy.jar" and "Incompatible magic value 1008812135 in class file Hwa". WHY ?
    FYI, the ".htaccess" file on my WebServer is
    AddType x-mapp-php5 .php
    AddType application/x-java-jnlp-file JNLP
    Thanks in advance for your support.

    Thank you Baftos. It works but I still do not understand the logic. Before, my Hwa.class was only accessible through my Hwa.jar file on http://www.ccca.eu/Hwa.jar, itself defined as the reference if the jnlp file, see above. My understanding of the jnlp logic is that the html page will load the Hwa.class from the Hwa.jar file. Is that correct ? Thanks to your post, I copied the Hwa.class directly under http://www.ccca.eu/Hwa.class and yes, when accessed through the browser, I can download it. Even better, my previous html page above - unchanged - now WORKS. Thanks for letting me know where I think wrong.

  • Applet not running in local browser

    I can run any applet from web.
    I can run any applet in appletviewer.
    But I can not run applets in browser from local html file.
    I can not run even the demos that came with de SDK 1.4.1_01.
    Can anyone give me some hint?
    Maybe is very obvious but I ca not see it.
    Thank you very much.
    Valeriu Sprintu

    the hello.java file is:
    import java.applet.Applet;
    import java.awt.Graphics;
    public class hello extends Applet {
    StringBuffer buffer;
         public void init() {
         public void start() {
         public void stop() {
         public void destroy() {
         public void paint(Graphics g) {
              //Draw a Rectangle around the applet's display area.
              g.drawRect(0, 0, size().width - 1, size().height - 1);
              //Draw the current string inside the rectangle.
              g.drawString("Hello", 5, 15);
    The hello.html file is:
    <html>
    <body>
    Applet should be there
    <br>
    <applet code="hello.class" width=200 height=200>
    No applet
    </applet>
    </body>
    </html>
    hello.html and hello.class are of course in the same folder.
    If I modify the .html file acording to OBJECT tag specifications for Java Plug-In the same applet runs OK in the browser (IE5.0 ).
    I forgot to tell that I have installed the last version of SDK j2sdk1.4.1_01
    <html>
    <body>
    Applet should be there
    <br>
    <OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
    WIDTH = 200 HEIGHT = 200 >
    <PARAM NAME = CODE VALUE = "hello.class" >
    <PARAM NAME="type" VALUE="application/x-java-applet;version=1.1">
    No applet
    </OBJECT>
    </body>
    </html>
    I think there is a problem with the JVM from Microsoft
    Thank you,
    Best regards,
    ValeriuS

  • Can't access old ver. 9, 11 & 13 clips after Windows upgrade

    In Sept. 2014 I downloaded PE 13 from B&H, worked fine and was able to access old PE9 & PE11 clips.  In Dec. 2014 had problems with Wind. 7 Home Ed. and had to upgrade to 8.1 (decided on Pro).  Installed 8.1 Pro end of Dec. 2014 and bought PE 13 DVD from B&H to reinstall after I backed up my hard drive.  Problem after install of 8/1 Pro and installing PE13 from DVD I can't access and restore old clips from 9, 11 & 13.  Tried everything I can think of....any suggestions PLEASE!

    Very good, I completely understand.  Please understand "I am not a computer geek!"
    With the old computer system, you have Premiere Elements 9, 11, and 13 projects. And, you import media into each and see thumbnails for each of your imports in the project media area of the program (in version 11 and 13, called Project Assets).  CORRECT!  Please as we go forward I have the PE 13 that was downloaded from B&H and worked perfectly with my previous assets in PE 9 & 11.
    When you go to open a project in one of these programs and go to the project media area, do the source media thumbnails still show as before with image in the thumbnail? Or does the thumbnail have a display of circular arrows? If the present as before, can you drag the file from the project media area to the Timeline? If you cannot, it that the problem? NO!  (First info is when I set up my new PE 13 after copying all data to a 1T desk drive and loaded Windows 8.1 Pro to replace my Windows 7 Home Edition, I set up the PE 13 and used 64 bit as suggested.)  NOW...When I locate my previous Project Assets on the 1T drive they show as "red blocks" with a play arrow in them where previously were thumbnails, but I can't retrieve them.  As such there is nothing to add to the timeline.  Last night I added to the NEW PE 13 a 22 min program I'm working on.  I have all those assets, thumbnails and everything is working as wonderfully as it did in 9, 11 and downloaded 13.
    Now in response to a previous question you asked:
    1. When you open Premiere Elements 13 Expert workspace, go to Publish+Share/Computer/QuickTime, do you see a list of presets when you explore
    the Presets" field there?  NO.... I can get to /Computer but there is no QuickTime there!  I did download QuickTime yesterday after your suggestion.
    2. You wrote
    Restarted PE13 and received the message "The selected file cannot be played becuse your system does not have the required compresser/decompresser (codec) installed.
    Where are you getting the selected file---- from Premiere Elements 13 Expert workspace Project Assets to where it was imported originally from a hard drive save location?
    Or other? What is the specific full name of one of these files that is giving the error message?
    With everything I've been trying, I'll have to recreate this series of events to answer directly.
    When you did the switch from Windows 7 Home to Windows 8.1, did you go 64 bit to 64 bit or 32 bit to 64 bit in operating system?  Help me with a way to determine what the bit was on 9 & 11!
    Were two separate computers involved or did you manage to change the operating all on one computer?  All on one Computer
    The major focus for me right now is to make sure I know what file triggers the ".....not have the required compressoer/decompressor (codec)"? And to know that
    you are in the Premiere Elements 13 Editor and not the Organizer 13 workspace.  Help me understand!!!!  I know the difference between "Add Media", "Project Assets", "Organizer", "Editor" and "Workspace".  But "Project Assets" and "Workspace" are part of "Editor", so I don't understand your question.
    WolcottVideo
        Can't access old ver. 9, 11 & 13 clips after Windows upgrade
        created by A.T. Romano in Premiere Elements - View the full discussion
    WolcottVideo (Mike Bruce)
    Thanks for the replies.
    My communications are in the threads or via Adobe Forums private message. The thread communication is preferred since then all share, and learn.
    Please try to reply to the post 4 questions or use the Adobe Forums private message system to send me a private message. To do the latter, click on my Adobe ID at the top of any of my replies in your thread. That should bring up my profile. Click on the orange envelope message icon to the right of what you see in order to set up and send your email to me directly. No one but you and I see the Adobe private message communications.
    Here is a basic description of where the details between us need to be confirmed...
    With the old computer system, you have Premiere Elements 9, 11, and 13 projects. And, you import media into each and see thumbnails for each of your imports in the project media area of the program (in version 11 and 13, called Project Assets).
    When you go to open a project in one of these programs and go to the project media area, do the source media thumbnails still show as before with image in the thumbnail? Or does the thumbnail have a display of circular arrows? If the present as before, can you drag the file from the project media area to the Timeline? If you cannot, it that the problem?
    We will be watching for your reply.
    ATR
    If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7087876#7087876 and clicking ‘Correct’ below the answer
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7087876#7087876
    To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"      
    Start a new discussion in Premiere Elements by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • New iMac doesn't see old iMac data on Time Capsule

    I have a brand new iMac - my Time Capsule doesn't see my backup, it sees my Mac Book Pro backup but not old iMac (which is broklen, hence new one from Apple). I can see old iMac data is there through browser but not seen by Migrate assistant. Any ideas?

    Look at manual resstore methods.. I would be careful migrating to a later OS.
    Q14-17 in pondini.
    17 in particular.
    http://pondini.org/TM/FAQ.html

  • Applet does not run in Browser

    Iam using Windows XP and IE 6.0. Applets do not run in my browser. Hovering the cursor where the applet should be in the browser, I get a Class not found message. Setting the CLASSPATH variable did not help. Any suggestions?

    You might find an answer in this new page
    [url http://java.sun.com/j2se/1.4.2/docs/guide/deployment/deployment-guide/upgrade-guide/index.html]Java Upgrade Guide: Migrating From the Microsoft JVM to the Sun JRE

  • Error 4280 for Matshita UJ-831Da - Burn worked w/ old ver. iTunes, NOT NOW

    Using Sony laptop, CD/DVD drv = Matshita UJ-831Da.
    1. Burn quit working when iTunes upgraded to 7.2.
    2. I now get Error 4280.
    3. The only change was an upgrade to iTunes.
    4. No other software, or OS, changed on the system.
    5. Burn always worked with old ver. of iTunes.
    6. Burn still works with Win Media Player.
    7. Burn still works with all other software.
    QUESTION # 1
    Does anyone know if there is a fix from Apple for this cd/DVD drive for the latest upgrades of iTunes?
    QUESTION # 2
    Does anyone know why Apple refuses to address the widespread problem and offer an easy-to-find list of fixes for their own Error 4280?
    Thanks,

    I'm having the same 4280 issue when trying to burn. What can I do? Here are my CD diagnostics...
    Microsoft Windows XP Professional Service Pack 2 (Build 2600)
    Dell Computer Corporation Latitude D600
    iTunes 7.3.2.6
    CD Driver 2.0.6.1
    CD Driver DLL 2.0.6.2
    LowerFilters: Cdr4_xp (5.2.0.91),
    UpperFilters: pwd_2k (5.2.0.91), cdralw2k (5.2.0.91), GEARAspiWDM (2.0.6.1),
    Current user is an administrator.
    Video Display Information:
    Mobility Radeon 7500
    Radeon Mobility
    MOBILITY RADEON 9000
    Intel(R) 82845G/GL Graphics Controller
    Intel(R) 82865G Graphics Controller
    Intel(R) 82852/82855 GM/GME Graphics Controller
    Intel(R) 82810E Graphics Controller (Microsoft Corporation)
    Connected Device Information:
    Disk drive, FUJITSU MHT2040AH, Bus Type ATA, Bus Address [0,0]
    Disk drive, WD 1200BEVExternal USB Device, Bus Type USB
    CD-ROM Drive, SAMSUNG CDRW/DVD SN-324S, Bus Type ATA, Bus Address [0,0]
    If you have multiple drives on the same IDE or SCSI bus, these drives may interfere with each other.
    Some computers need an update to the ATA or IDE bus driver, or Intel chipset. If iTunes has problems recognizing CDs or hanging or crashing while importing or burning CDs, check the support site for the manufacturer of your computer or motherboard.
    D: SAMSUNG CDRW/DVD SN-324S, Rev U303
    Audio CD in drive.
    Found 13 songs on CD, playing time 58:50 on Audio CD.
    Track 1, start time 00:02:00
    Track 2, start time 03:47:08
    Track 3, start time 08:49:28
    Track 4, start time 13:12:55
    Track 5, start time 21:13:38
    Track 6, start time 24:56:53
    Track 7, start time 29:07:35
    Track 8, start time 33:34:20
    Track 9, start time 37:17:35
    Track 10, start time 41:30:33
    Track 11, start time 45:32:10
    Track 12, start time 51:32:05
    Track 13, start time 53:25:38
    Audio CD reading failed. Error Code: 1110 1110 1110 1110 1110 1110 1110 1110 1110 1110 1110 1110 1110 1110 1110 1110 1110 1110 1110 1110.
    iTunes cannot play or import music from a CD in this drive. The drive may need a firmware update. Check with the manufacturer.
    Get drive speed succeeded.
    The drive CDR speeds are: 4 8 10 16 20 24.
    The drive CDRW speeds are: 4.
    The last failed audio CD burn had error code 4280(0x000010b8). It happened on drive D: SAMSUNG CDRW/DVD SN-324S on CDR media at speed 20X.

  • Can no longer see old or saved messages in iphone mail inbox

    I updated my phones software yesterday upon request and now i can no longer see old or saved messages in my inbox.  I can see the n ew ones when they arrive, and this problem is restricted only to the inbox as i can see messages in the junk and sent folders fine.
    Hope someone can help!

    Try a reset of the device by pressing and holding the home and power button for 15-20 seconds until the white Apple logo appears.

  • I'm new to mac. Just started out. Have OS 10.8.3. I have an HP 1315 printer.  It prints and copies, wont scan.  I see old threads on this, nothing recent.  ?can i make this work, or do i need a new printer??

    I'm new to mac. Just started out. Have OS 10.8.3. I have an HP 1315 printer.  It prints and copies, wont scan.  I see old threads on this, nothing recent.  ?can i make this work, or do i need a new printer??

    Hi Newbie111
    I see that you are unable to scan with the Photosmart 1315.
    What driver are you using?
    The driver listed in the url below is a basic print driver that will allow you to print only.
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ps242muc&c c=us&dlc=en&lc=en&os=1006&product=61956&sw_lang=
    You can try using the apple drivers in the url below.
    http://support.apple.com/kb/DL907
    If you have any further issues please let me know.

  • I just downloaded iPhoto 9.5 to replace my old ver. 7.x.  Downloaded the library upgraded but have no idea where it installed as it is not listed in Applications.  Opened iPhoto added my Library (12.5 GB) but iPhoto shows no pictures.

    I just downloaded iPhoto 9.5 to replace my old ver. 7.x.  Downloaded the library upgraded but have no idea where it installed as it is not listed in Applications.  Opened iPhoto added my Library (12.5 GB) but iPhoto shows no pictures. In fact, iPhoto indicates that I have zero photos in the library while at the same time indicating the file size as 12.5 GB.

    If your old iPhoto version was iPhoto 7, you need to run the iPhoto Library upgrader:  http://support.apple.com/kb/DL1523
    It will install itself in the Utilities folder in your Applications folder.
    Run it, and after that, you should be able to open your iPhoto Library with iPhoto '11.

  • Pl provide program/report-allows us to see old comments made by the Manager

    Hi Sap Gurus
    In SAP, report SWI5 gives us the workflow of a manager, to see comments if manager rejected a claim.
    Once claim gets settled, the workflow comments in SWI5 disappear. Which report in SAP will bring up logged workflow comments, from past claims.
    An example, emp 123456, claim 5102535278 Shan, had this claim rejected. So business went in PR05,Settled the claim, now when you go into SWI5, to look at the managers workflow for that claim, the comments are gone.
    Please can someone provide a program/report that allows us to see old comments made by the manager.
    Your help really appriciated..
    Thanks

    hi thanks for reply,
    we are generating the reports in oracle and accessing the reports from the oracle secure enterprise search. so which user logs in to the oracle SES, and if we view any report he can view only few pages in the report, to which he is authorised to view.
    thanks you,
    swapna soni

  • Same applets running on 2 different browser independent of  each other

    Hi all,
    I am calling the same applet two times in a browser. So i declared all the variables to be shared by the 2 applets as "private static".
    Now i want the applets in 1 browser to be independent of the applets in another browser when multiple browsers are invoked.(remember that each browser has 2 applets each).
    In other words,same applets invoked in MULTIPLE BROWSERS should be independent of each other. How to go about doing that?
    Is it possible to somehow invoke separate jvms for 2 separate browsers on the same machine when clicked on the same link twice?
    Thanks in advance.

    Hi all,
    I am calling the same applet two times in a browser.
    . So i declared all the variables to be shared by the
    2 applets as "private static".
    Now i want the applets in 1 browser to be
    be independent of the applets in another browser when
    multiple browsers are invoked.(remember that each
    browser has 2 applets each).
    In other words,same applets
    r words,same applets invoked in MULTIPLE BROWSERS
    should be independent of each other. How to go about
    doing that?
    Is it possible to somehow invoke separate jvms for 2
    separate browsers on the same machine when clicked on
    the same link twice?To start a new JVM try System.exec("java someclass");
    Thanks in advance.(T)

  • How to see old successfully delivered messages in Adapter Engine

    We are unable to see the messages that were successfully delivered  by Adapter Engine more than a day.Ho do we see old successfully delivered messages by Adapter Engine.We are only able to see the messages that were 1 day old.We are using PI 7.1.
    We are able to see the older messages in Integration Engine as per the config  in sxmb_adm.
    Any Help greatly appreciated.
    Thanks,
    Aravind

    Only message that contain error,holding,not delivered are getting persisted not the sucessfully delivered ones.
    Is there any Archiving scheduled for your Adapter Engine?
    I want to see the old messages that were delivered sucessfully
    In Message Monitoring Itself select Archive (instaed of Database) and make a search.....if archiving is scheduled then you should be able to see the messages by this option.
    Regards,
    Abhishek.

  • How to see WAD reports on browser

    Hi experts,
    We created some reports on BEx. Now we want to show them in browser.
    For this i went into WAD and gave one report as input.
    An URL is generated.  I copied that URL and pasted in the Address bar of internet explorer.
    It is giving an error as follows:
    =========================================
    Service cannot be reached
    What has happened?
    URL http://ocbomsap04:8014/sap/bw/BEx call was terminated because the corresponding service is not available.
    Note
    The termination occurred in system BP1 with error code 403 and for the reason Forbidden.
    The selected virtual host was 0 .
    What can I do?
    Please select a valid URL.
    If you do not yet have a user ID, contact your system administrator.
    ErrorCode:ICF-NF-http-c:000-u:SAPSYS-l:E-i:ocbomsap04_BP1_14-v:0-s:403-r:Forbidden
    HTTP 403 - Forbidden
    Your SAP Internet Communication Framework Team
    =================================================================
    This is the first time we are using to publish a report on browser. What the settings do we need to do to see the reports on browser ?
    Plz provide some step by step..
    Regards,
    Nishuv.

    Hi,
    Go to All programs and select your web application designer
    Select the button to create a new page in WAD
    Select the chart and place in the layout
    Next goto Data provider Target and select your query
    Give your report name in the given data provider screen
    Select your query in History/find/Favourites/Infoareas button
    Select your query in this screen and click OPEN
    Now we can see the data provider is assigned to the chart.
    To edit the chart you have to right click on the chart
    After right click on it we will find another screen where we can edit all the settings
    In this screen we can find NEXT click button to change our settings
    In this screen we can state the tasks (Title, units, values, range)
    In this screen we can change our background /validity/color
    In this screen we can add values to the chart
    In this screen we can add validity/positions/order/axis types to the chart
    In this screen we can change the global settings/and overview of the chart.
    This screen shows that we have customized the chart successfully
    After successful creation of the chart we have to save the chart
    Save your chart in your favorites by giving the description and technical name in the given block.
    Now execute your WAD by selecting the execute button
    This is the design what will be given as your out put
    Please save your LINK.
    http://epsys:50000/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.sap.pct!2fplatform_add_ons!2fcom.sap.ip.bi!2fiViews!2fcom.sap.ip.bi.bex?TEMPLATE=PRICETRENDTEST&DUMMY=0
    Now your WAD is successfully designed.
    Check this link what I have done in last month.May be this link will definitely helpful.
    Thanks==points
    Regards
    Sudheer
    Edited by: SUDHEER on Dec 19, 2008 7:28 AM
    Edited by: SUDHEER on Dec 19, 2008 7:33 AM

Maybe you are looking for