Next-gen Applet is completely blank on Mac OS X

Hi.
I am experiencing a strange behavior on Mac OS X with Java Applets deployed though the JNLP mechanism (i.e., exploiting the next-generation Java Plug-in).
For testing purposes, I have developed a VERY SIMPLE applet, just setting a BorderLayout on JApplet's contentPane, then adding sample JButtons on sides, and a sample JLabel in the center. Here is the code:
====
import java.awt.BorderLayout;
import javax.swing.*;
public class TestApplet extends JApplet
public void init()
uiInit();
// TODO overwrite start(), stop() and destroy() methods
private void uiInit()
try
SwingUtilities.invokeAndWait(new Runnable()
public void run()
JButton northButton = new JButton("North button");
JButton southButton = new JButton("South button");
JButton eastButton = new JButton("East button");
JButton westButton = new JButton("West button");
JLabel centerLabel = new JLabel("Center label");
getContentPane().setLayout(new BorderLayout());
getContentPane().add(northButton, BorderLayout.NORTH);
getContentPane().add(southButton, BorderLayout.SOUTH);
getContentPane().add(eastButton, BorderLayout.EAST);
getContentPane().add(westButton, BorderLayout.WEST);
getContentPane().add(centerLabel, BorderLayout.CENTER);
catch (Exception ex)
// It's OK
====
While this simple Applet works fine on Windows clients running a recent JRE, it displays NOTHING on recent Mac OS X clients (tested on both Mac OS X 10.7 and 10.8).
You can test this Applet yourself at:
http://67.225.240.233/TestApplet/TestApplet.htm
Can some Mac users check if they obtain a blank screen on their Mac OS X clients as well?
Can someone guess why I am obtaining this behavior? A bug of Apple's implementation? If yes, it would be a really SERIOUS bug...
It is important to notice that this same applet displays fine on Mac if using the "old fashioned" <applet> tag (i.e., no JNLP).
Any feedback or hint would be greatly appreciated.
Thanks and best regards,
Marco

Thank you. That helps a lot. Since update 9 seemed to cause problems with webstart I had been focusing on trying different methods to start it. It never occurred to me to try changing the size. Although with a smaller size I'm still getting random graphics artifacts(short red lines and dots through out as well as combo boxes that don't show up and tabs where the text shows but not the tab), but it still requires scrolling so I'll try opening it in a page by itself to avoid any scrolling and see if it looks more normal. This applet is using double buffering because its drawing genes, heat maps, sequences that users can zoom in and out and navigate so it just didn't look great without double buffering.
Everything that you describe seems to fit with what I'm seeing. Thank you for figuring it out and submitting a bug report. I hope they'll fix it soon.

Similar Messages

  • MAC OS 10.8.4 - CC desktop app is completely blank.

    My CC desktop app is completely blank. What to do. (I reinstalled) already. MAC OS 10.8.4

    Navigate to ~/Library/Application Support/Adobe/OOBE/opm.db and trash it. Launch CC desktop and sign in. ( http://helpx.adobe.com/x-productkb/global/access-hidden-user-library-files.html).

  • Completely blank window on Mac OSX 10

    Recently the desktop client has stopped working for me entirely. The window is completely blank. No text whatsoever other than the identifying "Spotify" text at the top of the window. I don't know if this is related to an OSX update or not because I don't use the desktop client very frequently and only just noticed it. I've tried wiping the system of it (including the app itself, the caches and application support files) to no avail. Clean wipe and reinstall resulted in this same black screen (screencap attached). Preferences is grayed out so I can't access that to make changes either like some posts suggested. Advice?

    I did, no thanks to Spotify's tech support! I communicated back and forth with their twitter account for a week or so and they couldn't resolve it for me, so I actually gave up on it for a while. Then recently I decided to try again, and figured out the solution (for me, anyway). Apparently the issue was related to the login items I had set on my Mac. Spotify was one of them, and once I deleted it from those items, and then did the clean reinstall, it has worked fine since. Go to System Preferences -> Users & Groups -> Login Items and click Spotify, and then hit the minus button to fully remove it from the list. Just unchecking it only hides Spotify at startup, you want to make it so it does not open at all at startup. Doing this, followed by the recommended clean wipe (deleting caches, preferences, etc. along with the application itself) and then reinstalling did the trick for me. I hope it solves your problem too!

  • I just got Pages for my iPad. I am learning Mac. I spent hours on a document last night. This morning the document is there but it is completely blank. Did I somehow delete content? If so! What did I do? Is there any way to retrieve this document????

    I just got Pages for my iPad.  I am learning Mac. I spent hours on a document last night that has no content this morning.  The document is there but it is completely blank.  Did I accidentally delete the content?  If so, how?  Is there any way to retrieve this content?

    I'm not sure what happned either but If you are doing this via iTunes, iTunes should have backed up the iPad first. It can take a good bit of time when you update with iTunes on your computer because iTunes downloads and installs the entire iOS all over again. If you are running iOS 5 on the iPad, and you will be now, you can update OTA via WiFi in the future and the process takes far less time since you will only be downloading an incremental update.
    If you are syncing on a regular basis with iTunes, you should have a recent backup. In the worst case scenario, you should be able to restore from the backup. And as stated aboce, you can download all apps again and virtually all purchased content from iTunes (if you live in the U.S.) and you can always sync your iTunes library back to the iPad.
    Let the update finish and see where you are then. Come back if you need help.

  • Completely blank (but glowing) screen on 4th gen iPod Touch.

    Completely blank (but glowing) screen on 4th gen iPod Touch.  Tried holdingsleep/home buttons, no joy.  When plugged into pc, not coming upon iTunes. Suggestions?

    Here are Apple's repair quotes.
    http://www.apple.com/support/ipod/service/prices/
    You would be must better off having a 3rd party repair company do the job instead.  Here is one such site.
    http://www.irepair.com/ipod-screen.html
    Google "iPod touch screen replacement" for a plethora of other options.
    B-rock

  • My iphone wont even turn on. I was updating to my mac and it went completely blank

    I need help immediately please. I was updating to my computer and my phone went completely blank. On the screen right now is just the apple on a black screen. I can't turn it on at all....can't do anything with it. This is my work phone.

    - After charging for 1/2 hour or so, does iTunes see the iPod?  If yes, restore the iPod from backup.
    - If no, se if placing the iPod in recovery mode will make it visible so you can restore the iPod.  For recovery mode see:
    iPhone and iPod touch: Unable to update or restore

  • Difference in JRE 1.6.0_14 Classic Plug-in & JRE 1.6.0_14 Next Gen Plug-in

    Using the "Next Gen Plug-in", when a method argument is passed as a "blank" from Javascript to Java, it is treated as NULL in Java, whereas if we use "Classic Plug-in", there is no change to the argument value and a blank argument is always treated as a blank in Java.
    This "Next Gen Plug-in" is causing problem in our Application as "blank" value is treated as NULL when passed from javaScript to Java, thus throwing Null Pointer Exception.
    Any idea to come out of this...

    Our Application is standalone browser based (IE 6.0) application which communicates between JavascScript to Java using Applet. Below is the code snippet which gives problem when passing a blank value from java script to Java using Next Gen Plug-in -
    JavaScript code -
    var state = document.PrimaryInsured.DeliveryState.value;
    The above code takes the value from a dropdown into variable 'state' and then calls the below Java method GetMaxJuvenileAge() with string parameter-
    var juvenileAge = GetEALifeJavaUtils().GetMaxJuvenileAge(state);
    Java code -
    public int GetMaxJuvenileAge(String state)
    if(state.equals("ABC"))
    return 15;
    else
    return 16;
    Now when variable state is blank (e.g. "") in javaScript and same is passed to java method then, java method take this value as blank when use 'Classic Plug-in' which is correct.
    However when use 'Next Gen Plug-in' value comes in Java as null and we get null pointer exception in java.
    We checked in javaScript that value is blank (not null) as state.length returns 0. So please help me in resolving this...

  • Help!  Desktop completely blank and finder not opening

    Hello
    I was using iTunes last night and went away to make a cup of coffee. When I went back to it, the screen was flickering all over the place and only stopped when I closed the lid down and re-opened it. The screen returned to normal, but when I closed down iTunes and then tried to do the same with Finder, the 'spinning wheel of death' cropped up. So I went into Forced Quit to try to shut them down altogether.
    The shut down didn't work and since then the desktop has been completely blank. Also, although Finder is indicated as being open on the dock, the taskbar at the top is competely blank when I close all other applications down. I can open other applications (hence being able to get online here!) but when I try to close the computer down, nothing happens.
    So to summarise...
    Finder is not responding and will not let me close it down
    The Computer will not close down at all
    I can't get into a Finder window in order to delete things to free up memory.
    HELP!!! To add to misery, it's a work laptop!!!
    Thanks!
    Powerbook G4   Mac OS X (10.3.9)  
    Powerbook G4   Mac OS X (10.3.9)  

    thanks for that.
    Unfortunately i have next to no memory left to be able to download this. Have been trying to delete some files and music to make some room, but cannot do this without Finder (vicious circle!!)
    any more options?!!

  • When i open finder the windown is a completely blank grey box with the title "Window" as a header, and all my folders will not open when clicked

    when i open finder the windown is a completely blank grey box with the title "Window" as a header, and all my folders will not open when c
    the problem started when my computer screen broke from something falling on it, the screen was replaced but the people that fixed it for me told me there may be some hard disk issues when a problem like this happens, they ran their own checks and found nothing and i was given my laptop back, then when i tried to use it, i found this problem. everything else works fine.
    i have shutdown and re-started my computer multiple times and i have also re-started finder multiple times, both having no effect
    i have also done a few other things to find that my apple.com.finder.plist and apple.com.sidebar.plist are both missing, and are not re-creating themselves, i have found no way to bring them back either.
    any help would be greatly appreciated, thanks

    there is an app called daisydisk on mac app store which will help you see exactly where the memory is focused and consumed try using that app and see which folders are using more memory

  • Woke up to my iPhone 4 being completely blank. I've tried restarting and resetting it as well as charging it and plugging into my computer. Can anyone shed some light as to what may be wrong or how to fix it? Thanks

    Woke up to my iPhone 4 being completely blank. I've tried restarting and resetting it as well as charging it and plugging into my computer. Can anyone shed some light as to what may be wrong or how to fix it? Thanks

    Hello there, Kyle.Kuz.
    The following Knowledge Base article that provides some helpful pointers to help resolve your issue is:
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/TS2802
    Specifically:
    Will not turn on, will not turn on unless connected to power, or unexpected power off
    Verify that the Sleep/Wake button functions. If it does not function, inspect it for signs of damage. If the button is damaged or is not functioning when pressed, seek service.
    Check if a Liquid Contact Indicator (LCI) is activated or there are signs of corrosion. Learn about LCIsand corrosion.
    Connect the iPhone to the iPhone's USB power adapter and let it charge for at least ten minutes.
    After at least 15 minutes, if:
    The home screen appears: The iPhone should be working. Update to the latest version of iOS if necessary. Continue charging it until it is completely charged and you see this battery icon in the upper-right corner of the screen . Then unplug the phone from power. If it immediately turns off, seek service.
    The low-battery image appears, even after the phone has charged for at least 20 minutes: See "iPhone displays the low-battery image and is unresponsive" symptom in this article.
    Something other than the Home screen or Low Battery image appears, continue with this article for further troubleshooting steps.
    If the iPhone did not turn on, reset it while connected to the iPhone USB power adapter.
    If the display turns on, go to step 4.
    If the display remains black, go to next step.
    Connect the iPhone to a computer and open iTunes. If iTunes recognizes the iPhone and indicates that it is in recovery mode, attempt to restore the iPhone. If the iPhone doesn't appear in iTunes or if you have difficulties in restoring the iPhone, see this article for further assistance.
    If restoring the iPhone resolved the issue, go to step 4. If restoring the iPhone did not solve the issue, seek service.
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro D.

  • Help regarding applet for querying client's MAC?

    Please help with an applet and java code that uses Runtime.getRuntime().exec("ipconfig -all") and gets the client's machine MAC address?
    If any one already worked with applets for querying client mahchine MAC , please give me a solution.

    remus.dragos wrote:
    vasu.mtech wrote:
    I am giving an explanation where I want this:
    We have an application, where user will be given a specific machine(with one MAC) and have to login from there only. If he tries to login from different machine with same user id, we should throw an error message. That's concept. We know that this reduces/kills operatability of the user from different machines.
    But we shouldn't allow the user operating from diffrent machines.What happens if the admins NIC burns? And he gets a news one? He can't log in until you manually change his
    MAC in the database ???Database? That's not secure!
    It has to be hardcoded into the exe (guess what the kid's next question will be?).

  • Adobe's take on CS6 performance on the next gen MBP

    Forgive me if I missed this, but being gutted they still haven't released a new Mac Pro (spec bumps released today don't count), I'm thinking of just getting a Next Gen MBP and work from there.  Does Adobe have an opinion on how it performs with CS6 particulaly related to Cuda acceleration and the Mercury Playback engine?  Will it do well with only 16GB of RAM and the internal 650M card?

    Chris Smith x0h00 wrote:
    Forgive me if I missed this, but being gutted they still haven't released a new Mac Pro (spec bumps released today don't count), I'm thinking of just getting a Next Gen MBP and work from there.  Does Adobe have an opinion on how it performs with CS6 particulaly related to Cuda acceleration and the Mercury Playback engine?  Will it do well with only 16GB of RAM and the internal 650M card?
    I'm not Adobe and don't speak for them.  What I say here is probably worth less than you paid for it.  However...
    Doing some thought exercises should pretty much answer your question.  Some things about the new MBP (which I intend to get, eventually) -
    1GB of VRAM.  MPE in hardware mode, assuming it works with the GT650M (and no reason to assume it won't) will be somewhat hobbled with only a Gig of VRAM.
    16G of RAM is probably enough but a bit on the tight side depending on what you're editing.
    Spinning media: using a laptop for your primary editing rig is always a challenge due to storage.  The new MBPs have 2 Thunderbolt ports which is nice, so you'd be encouraged to add external storage via those ports.  But doing so is going to cost you some serious $$.
    Can you do it?  I'd assume so.  Will it perform as well as a Mac Pro with a decent video card and a cubic f'load of RAM in it?  Probably not.  IMHO: I think you're foolish to walk away from the Mac Pro for PPro editing if you want to stay in the Mac world.  The new MBP laptops look superb, and after years of having cruddy displays on their 15" laptops, Apple has finally turned a weakness into a strength (2880x1800.. good grief!)  But, unless you start going nuts with Thunderbolt add-ons, the laptop is still going to be I/O-bound to some extent, and limited in what it can do from a video performance perspective.
    jas

  • I have completed a software update as prompted. However, all "Pages" and "Numbers" files are completely blank. Please advise

    I have completed a software update as prompted. However, all "Pages" and "Numbers" files are completely blank. Please advise

    Hi... Sorry for delay. I've been away working.
    I have just completed another software update as prompted again, and I'm still having problems.
    Nearly all my software won't open. It doesn't matter if it's relatively old software I brought over from my last Mac or new software I've purchased from the App store within the last year or two. It always says whatever software I'm trying to open has "quit unexpectedly"
    My Mail, App store, Stickies and Safari seem to work, but most other things won't.
    I've run a verify disk permissions and a repair disk permissions, but this message appears... Maybe it is a clue to the problem if you understand these things:
    Warning: SUID file “System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent” has been modified and will not be repaired.
    Please advise...
    Best wishes
    Anton

  • "Get Info" Window is Completely Blank

    Ok, I'm not positive how long this has been going on -- it's persisted through at least one itunes update. When I go to "get info," the box is completely blank except for "previous," "next," "ok," and "cancel" buttons. How do I fix this?!

    gtigan
    There is no patch or fix for this.
    If you use many keywords then I heartily recommend Keyword Manager as a major improvement on the v6 handling of keywords.
    I'm not sure of the source of your bad feelings about v7, but among the features that mark it as a significant advance over v6 are it's handling of keywords. Though non-destructive editing is probably the single best reason, among many, to upgrade.
    Regards
    TD

  • How do I completely restore my Mac air

    How do I completely restore my Mac Air?

    Boot from the Reinstall Drive (USB thumb drive) that came with your MBA.
    (Restart and when you hear the startup sound, hold down the C key until the gray pinwheel appears)
    When the OS X window appears, select your language.
    On the next screen, select Utilities from the Menu Bar.
    To restore to an earlier point in time from a Time Machine backup, select Restore System from Backup
    To make your machine look like it did when new, select Disk Utility, then select the system drive and click the Erase button.
    This will reformat the drive and you can then reinstall the OS from the main menu.

Maybe you are looking for

  • DMS Document relationship with company code

    Hi All, I have to delete all DMS Documents for Document Type AAA and company code 8200. I am not able to find relationship between Document info records and company code in table level so can you please guide me How to get the relationship. I checked

  • Cache problem for included stylesheets on remote server

    Hi. We are building an XSL page that includes changing named templates through xsl:includes where the included stylesheet is on a remote server. The content of the remote stylesheet can change at any time. The problem is that the Oracle XSLT caching

  • RAID reconfiguration and change to GPT

    Hi I have 2x HP DL 380 G6 Servers with Windows 2008 R2 Datacenter and Windows server 2012 R2 datacenter which are hyper V servers. Until now everything was fitting 2TB RAID 5 . Recently I added new HDDs and nothing above 2TB is recognized. I assume t

  • FDMEE 11.1.2.4 compatibility with Shared Services 11.1.2.3.500

    Hi, I am wondering if FDMEE 11.1.2.4 can co-exist in an 11.2.3.500 environment. I already read the oracle certification matrix, but I'm not sure if I'm getting it right. Best regards,

  • How to lock all else?

    Hi Many moons ago -- back in Illustrator 6 -- you used to be able to lock everything *except* your current selection with a simple command (I believe it used to be opt-command-2). Very useful. Now i'm using Illustrator CS5, and I can't find this comm