Applet doesn't show after plugin update & using JNLP, no errors

We have an applet that worked after the plugin update, then I wrote the JNLP file and can't get it working, it seems to be loading but doesn't show anything. I have tried and searched for possible errors but doesn't seem to be any obvious error for me. Also JaNeLA doesn't give any errors. When I try to load the applet I can see how open two java consoles (maybe this is an error?), in the first console the last output is:
network: Created version ID: 1.0+
network: Created version ID: 6.0.18
basic: Progress indicator deleted: nullAnd in the second:
basic: Subprogram loaded.
basic: Applet resized and added to parent container
basic: PERF: AppletExecutionRunnable - applet.init() BEGIN ; jvmLaunch dt 309262 us, pluginInit dt 2161125 us, TotalTime: 2470387 us
basic: Loading Java Miniapplication
basic: Loading Java MiniapplicationThe jnlp file I wrote is this:
<?xml version="1.0" encoding="utf-8"?>
<jnlp codebase="http://genomedu.net/applet/applet/" href="jvrmed_applet.jnlp">
  <information>
    <title>JApplet demo</title>
    <vendor>Jungle waa</vendor>
    <homepage href="http://funforyou.net/"/>
    <description>This is a demo</description>
    <offline-allowed/>
  </information>
    <resources>
      <j2se href="http://java.sun.com/products/autodl/j2se" version="1.4+"/>
      <jar href="http://download.java.net/media/applet-launcher/applet-launcher.jar"/>
      <jar href="http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl.jar"/>
      <jar href="http://download.java.net/media/gluegen/webstart/gluegen-rt.jar"/>
      <jar href="http://download.java.net/media/java3d/webstart/release/vecmath/latest/vecmath.jar"/>
      <jar href="http://download.java.net/media/java3d/webstart/release/j3d/latest/j3dcore.jar"/>
      <jar href="http://download.java.net/media/java3d/webstart/release/j3d/latest/j3dutils.jar"/>
      <jar href="pixelmed.jar"/>
      <jar href="gdata-core-1.0.jar"/>
      <jar href="gdata-media-1.0.jar"/>
      <jar href="gdata-photos-2.0.jar"/>
      <jar href="gdata-photos-meta-2.0.jar"/>
      <jar href="google-collect-1.0.jar"/>
      <jar href="mail-1.4.3.jar"/>
     <jar href="jvrmed.jar" main="true"/>
   <extension name="jogl" href="http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl.jnlp"/>
    </resources>
  <applet-desc
      name="JVRMed_app"
      main-class="vrmed.app.jVRMed.JVRMed_app"
      width="793"
      height="563">
  </applet-desc>
</jnlp>
And the applet tag in the html is:
<applet name="jvrmed" code="org.jdesktop.applet.util.JNLPAppletLauncher"
      width=793
      height=563 >
   <param name="jnlp_href" value="http://genomedu.net/applet/jvrmed_applet.jnlp">
</applet>The old applet tag that launched the applet before the plugin update:
<applet name="jvrmed" code="org.jdesktop.applet.util.JNLPAppletLauncher"
      width=793
      height=563
      archive="http://download.java.net/media/applet-launcher/applet-launcher.jar,
               http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl.jar,
               http://download.java.net/media/gluegen/webstart/gluegen-rt.jar,
            http://download.java.net/media/java3d/webstart/release/vecmath/latest/vecmath.jar,
            http://download.java.net/media/java3d/webstart/release/j3d/latest/j3dcore.jar,
               http://download.java.net/media/java3d/webstart/release/j3d/latest/j3dutils.jar,
            pixelmed.jar,
            gdata-core-1.0.jar,
            gdata-media-1.0.jar,
            gdata-photos-2.0.jar,
            gdata-photos-meta-2.0.jar,
            google-collect-1.0.jar,
            mail-1.4.3.jar,
               jvrmed.jar">
   <param name="codebase_lookup" value="true">
   <param name="subapplet.classname" value="vrmed.app.jVRMed.JVRMed_app">
   <param name="subapplet.displayname" value="jVRMed">
   <param name="noddraw.check" value="true">
   <param name="progressbar" value="true">
   <param name="jnlpNumExtensions" value="1">
   <param name="jnlpExtension1"
          value="http://download.java.net/media/jogl/builds/archive/jsr-231-webstart-current/jogl.jnlp">
   <param name="idsession" value="jvrmed_snaps">
   <param name="idprofile" value="1">
</applet>I know there are many extra parameters in the old version, I have deleted them for debugging because there was the same result with them. What really bothers me is that I don't get any error and the java process is running while tries to load the applet. Anyone had a similar experience and can give a clue?

Hi,
since JRE 6u21 the JNLPAppletLauncher doesn't work anymore.
The Java 3D's jars and native libraries hosted by Oracle.Sun can be accessed by including the extension http://download.java.net/media/java3d/webstart/release/java3d-latest.jnlp. More details can be found here : Java 3D Web Start Release https://j3d-webstart.dev.java.net/release/index.html
See also the example 'H'weight & L'weight in Harmony' http://www.interactivemesh.org/testspace/appletpropelleruniverse1200x800_J3D.html and search in the Java 3D forum http://www.java.net/forums/javadesktop/java-desktop-technologies/java-3d
This is an attempt to adapt your JNLP file :
<?xml version="1.0" encoding="utf-8"?>
<jnlp codebase="http://genomedu.net/applet/applet/" href="jvrmed_applet.jnlp">
  <information>
    <title>JApplet demo</title>
    <vendor>Jungle waa</vendor>
    <homepage href="http://funforyou.net/"/>
    <description>This is a demo</description>
    <offline-allowed/>
  </information>
  <resources>
    <j2se href="http://java.sun.com/products/autodl/j2se" version="1.4+"/>
    <!-- !!! Includes the remote Java 3D / JOGL libraries !!! -->
    <extension href="http://download.java.net/media/java3d/webstart/release/java3d-latest.jnlp"/>
    <jar href="pixelmed.jar"/>
    <jar href="gdata-core-1.0.jar"/>
    <jar href="gdata-media-1.0.jar"/>
    <jar href="gdata-photos-2.0.jar"/>
    <jar href="gdata-photos-meta-2.0.jar"/>
    <jar href="google-collect-1.0.jar"/>
    <jar href="mail-1.4.3.jar"/>
    <jar href="jvrmed.jar" main="true"/>
    <property name="sun.awt.noerasebackground" value="true"/> 
    <property name="sun.awt.erasebackgroundonresize" value="true"/> 
  </resources>
  <applet-desc
      name="JVRMed_app" main-class="vrmed.app.jVRMed.JVRMed_app" width="793" height="563">
  </applet-desc>
</jnlp>
Applet tag:
<!-- please check if codebase="??" is needed -->
<applet name="jvrmed" width=793 height=563 >
   <param name="jnlp_href" value="http://genomedu.net/applet/jvrmed_applet.jnlp">
</applet>August

Similar Messages

  • Safari doesn't open after i updated it to 1.6.8

    Safari doesn't open after i updated it to 1.6.8

    Reinstall Safari 5.1.2
    Then restart your Mac.
    If that doesn't help, you may have a third party add on that was compatible with the prior version of Snow Leopard, but not 10.6.8.
    Troubleshooting help here >  Safari: Unsupported third-party add-ons may cause Safari to unexpectedly quit or have performance issues
    And try Safari in another user account. If you can't open Safari there as well, that's an indication the startup disk may need repairing.
    Log back in to your admin account, launch Disk Utility. That's located in /Applications/Utilities
    Select the startup disk on the left then select the First Aid tab.
    Click: Verify Disk  (not Verify Disk Permissions)
    Help for repairing the disk if necessary here > Using Disk Utility to verify or repair disks

  • Downloaded Safari 5, doesn't show after multiple installs / reboots

    I went to apple.com and downloaded the latest is Safari 5 at http://www.apple.com/safari/download/ and downloaded the package, ran installation and then rebooted the Mac.
    I tried this several times. When I tried to check for any Safari, it doesn't show after installation.
    The only contents on the Mac named 'safari' is the .dmg I used. And I tried to install more than once.
    I did click on the dmg and did actually use the installer package.
    I did also restart the Mac 10.6.8.
    I did open my System Profiler (Applications/Utilities), and clicked the gray disclosure triangles so that they face down. No Safari.
    I found another thread discussing this, but could not make any of the suggestions work, and several I couldn't even find.
    Thanks,
    Tony
    Hardware Overview:
      Model Name:    iMac
      Model Identifier:    iMac10,1
      Processor Name:    Intel Core 2 Duo
      Processor Speed:    3.06 GHz
      Number Of Processors:    1
      Total Number Of Cores:    2
      L2 Cache:    3 MB
      Memory:    4 GB
      Bus Speed:    1.07 GHz
      Boot ROM Version:    IM101.00CC.B00
      SMC Version (system):    1.52f9
      Serial Number (system):    QP******5PC
      Hardware UUID:    6D4B1C2A-800A-5E20-B0A7-3791AE3F5CA2
    <Serial Number Edited by Host>

    Not in Applications.
    Did this download / install multiple times. It's a problem that has happened to others who have posted here.
    Tony

  • HT4623 I have an iPod with iOS 4.2.1 and would like to up date version 5. The pc I normally sync with has XP operating system. So I can't up date to iTunes 10. And my iPod doesn't show the software update button shown in the article. What can I do?

    I have an iPod with iOS 4.2.1 and would like to up date to version 5. The pc I normally sync with has XP operating system. So I can't up date to iTunes 10. And my iPod doesn't show the software update button shown in the article. What can I do?

    You cannot update it if you can't get the latest version of iTunes. Actually, the latest version of iTunes will run in XP if you have Service Pack 2. Also, you posted in the iPad forum, and your profile shows you have an iPad, but in your post, you say it is an iPod. Is it an iPad or an iPod?

  • My SuperDrive doesn't work after Lion update

    My Superdrive doesn't work after Lion update, i have tried a few solutions that i found in forums, but nothing seems to work, please help me shed some light on my problem.
    Thanks

    I too have had the problem since updating to Lion.  My superdrive isn't even recognized.  I have repaid hard disk permissions and also reset PRAM.  Sure wish I had a fix. 

  • HT201407 "Your iPhone could not be activated because the activation server is temporarily unavailable." this massage showing after i update through itune

    "Your iPhone could not be activated because the activation server is temporarily unavailable." this massage showing after i update through itune

    See this discussion.
    https://discussions.apple.com/message/21189708

  • Lightroom CC 5 doesn't launch after 2014 update.

    Lightroom CC 5 doesn't launch after 2014 update. Mac OSX 10.8.5. Tried the suggestion to log out of Adobe Cloud and log back in. Also rebooted computer. No luck. Photoshop CC 2014 seems to have installed perfectly. Can't install previous version either, can't even find it via Adobe Cloud. Tried re-downloading from Adobe web site but it sits there saying "downloading now" -- but nothing is downloading!

    Charr please see Not able to launch Lightroom after updating it to 5.5 from Creative Cloud for possible solutions to allow Lightroom to open.

  • Itunes doesn't show any app updates

    Hi folks,
    iTunes doesn't show any app updates. On my iPhobe and iPad there are updates in the app store... Any hints?
    Thanks
    Pat

    Same problem here
    I can see I have updates on iPhone or iPad but nothing on iTunes

  • After iTunes update, iTunes.exe System Error - msvcr80.dll missing  & icudt49.dll missing.

    After iTunes update, iTunes.exe System Error - msvcr80.dll missing. Followed the support suggestion & uninstalled then re-installed iTunes 5 times & still no good so followed Apples advice & uninstalled again then went into programme files & manually deleted the files re-installed again & now getting iTunes.exe System Error - icudt49.dll missing. I give up, anyone out there help ?

    I've just (finally) managed to fix this problem today. I checked the Apple Support forums, and it seems a lot of people are having the same problem.
    I rang the Apple Support line, and the very helpful man (thanks Alan!) talked me through it stage by stage. If you go to the following page on the internet:http://support.apple.com/kb/TS5376   it takes you through the process. WARNING - it takes a little time! The main purpose of this is to remove any trace of the old version of iTunes from your computer...
    Basically, the first thing you have to do is go to your Program Files and double click on your iTunes folder. There'll be a number of files with the suffix .dll - you need to move all the .dll files from that folder to your desktop - you can simply click and drag them on the desktop..
    Next, uninstall iTunes - go to Control Panel / Add/Rempve Programs and when the list comes up remove iTunes. This will take a few minutes... Then reboot your computer.
    Next, go back to Control Panel / Add Remove and Remove - IN THIS ORDER -
    Apple Software Update
    Apple Mobile Device Support
    Bonjour
    Apple Application Support
    Reboot again!
    Next, check in your Program Files that the iTunes folder is completely gone - if it has, great: if it hasn't, right-click on the folder and press Shift and Delete - it will say "Are you sure you want to completely remove the folder "iTunes"? Click on "Yes".
    Reboot!
    Then go to the iTunes download page and voila! It should download iTunes without any problems... well it did for me.... Good luck!

  • My java applet doesn't show up in Firefox

    We have a new Mac running OSX 10.8.4 and installed with Firefox 21.0 and Java 7 update 25. The web applet/plugin doesn't show up in Firefox, if we go to java.com and do the tests it just comes back 'We are unable to verify if Java is currently installed and enabled in your browser'
    The same test in Safari comes back fine and shows Java 7 Update 25 installed and working.
    The plugin does not show at all in Firefox add-ons. Browser functionality is enabled in the main Java control panel.
    We have completely removed and reinstalled both Firefox and Java.
    Thanks

    Hi iNerd
    Thanks for the link but neither of the two options that are discussed are presented to the user. Instead the user just gets the message 'We are unable to verify if Java is currently installed and enabled in your browser'. I know it is installed and enabled for general browser use as it all works fine in Safari. We would obviously just use Safari except the key site the user needs to link to works better with Firefox.

  • HTML animation effects doesn't work after last update

    After last update my html animation that have different effects with different time: fade, translate, rotation, scale, ecc... plays but some effects doesn't play.
    Various animated png in html project appears immediatly without shows transitions or deformations.
    I have made html animation with Motion Composer that have time curve for each effect.. and all work fine with previous dps desktop tools...
    I don't use Hedge because folios with hedge animation is mooooooooore large than folios with motion composer animation.
    A single complex animation (10 .png(1024x768) with multipe effects fo each) made with composer produce a 1MB folio...
    The same animation made with Hedge produce more the 100MB folio.
    why new version of dps don't show my html anim correctly ? I hope adobe correct this proble. 

    We just released an update to the DPS tools that addresses the issues around HTML/iFrame and buttons in release 25. You can download the updated components by following the links at http://www.adobe.com/go/learn_dps_install_en.
    Neil

  • Flash doesn't work after I updated it

    I am using Firefox 34.0.5 and updated my flash player but after the update it stopped working. The videos doesn't show up. I tried disabling all add-ons and found out that Shockwave Flash 16.0 is causing the problem. What should I do to make it work again?
    I don't know why but some videos work just fine and other videos doesn't show anything even a white or black screen, even though they're from the same site. When a video doesn't show up, the cursor changes from the normal cursor to "working in background" cursor rapidly.

    ''Talha [[#answer-672921|said]]''
    <blockquote>
    Hey,
    Did you try these typical Flash fixes?
    (1) Disable hardware graphics acceleration in Firefox and in Flash
    (A) In Firefox, un-check the box here and restart:
    orange Firefox button or classic Tools menu > Options > Advanced > General > "Use hardware acceleration when available"
    (B) In Flash, see this support article from Adobe: http://helpx.adobe.com/flash-player/kb/video-playback-issues.html#main_Solve_video_playback_issues
    (2) Disable protected mode (Win Vista & Win 7 & maybe Win 8)
    See this support article from Adobe under the heading "Last Resort": Adobe Forums: https://forums.adobe.com/message/4468493#TemporaryWorkaround
    Hope it helps.
    </blockquote>
    I did both of these but it still didn't work. I tried using another browser and found out that the problem only occurs in firefox.

  • N73: restore doesn't work after firmware update

    Hello!
    I just made a firmware update to my N73 with NSU, and the procedure completed with no errors.
    Just before the update I made a backup with the application in the phone menu; the app wrote a backup.arc file in the MMC.
    After the update I tried to restore the backup via the same app.
    Here's the problem: the app seems to work (but the "restore" lasts just 1-2 seconds), the phone reboots, but nothing is restored.
    Googleing aroung I found a solution: buy the Noki 1.7 software, extract SMS, contacts and files from the backup.arc, and put everything back on the phone...
    Is there another solution that doesn't involve buying this 3rd party software?
    TIA

    The phone is working well...
    I have been searching in internet, and there'a a lot of people with the same problem. Everybody tells to use PC Suite to backup... if I only knew before.

  • PlayBook doesn't charge after OS update

    I have a serious problem with my BlackBerry PlayBook. It is not getting charged even though I connect it to the power for hours. I believe the problem started after the recent OS update. I tried both USB charging as well as using power cable, but there wasn't any change.
    I can turn on PlayBook and use it while the power cable is connected. The charging icon is also shown. But it is always showing 0% and the PlayBook get turned off soon after I disconnect power. There isn't any physical damages to PlayBook and power cable. Also it hadn't completely drained out before this problem occurred. After OS update even though I tried charging PlayBook while it has around 20% charge it didn't get charged.
     I read some other posts about holding down the power and volume up and down buttons. But it didn't work. Anyone know what might be wrong?
    Thanks in advance!

    Same problem here.

  • Fit the window with mouse doesn't work after new update 10.9.2

    Hi, I could fit a windows using my mouse wheel or two finger(on trackpad), doesn't work after I set up new Mavericks update(10.9.2) I'm using Haswell rMBP. Can anyone help me please? Thanks a lot. (Also, minimize with mouse wheel doesn't work too.)

    Doesn't anyone having this issue?

Maybe you are looking for

  • 1st generation IPOD Replacement waiting on shipping container never arrived???

    Back on Nov 13th I contact Apple to get my 1st Generation IPOD Nano replaced because there is a Recall on same. I provide all the required information and I was informed online that Apple would be sending me a packaging and instructions on how to ret

  • Using Fortran Funcrions in Java

    Hi, In my project I need to call some subroutine, made in fortran, into my java program but I don't know how to do it... My fortran subroutine is called: SUBROUTINE LETQUE(BUF,QUE,SIZE,BYPASS) What should i do to include in my java??? Thank, BV

  • Bean:write and complex types

    I have a Java object like that: public class OBJ1 { String name; String id; OBJ2 [] Array_OBJ2; // getters and setters methods for name,id and Array_OBJ2 OBJ2 is an an object like this: public class OBJ2 { String surname; OBJ3 [] Array_OBJ3; // gette

  • Batch process (set of Procedures) & schedule  a package

    Hi OTN Members, Need to schedule and do a batch process for a package in Sun server environment on oracle 8.1.7. The process is like this.... 1. In a package separate procedures for each tables to upload datas,reading file.dat from a directory using

  • Import TAB

    HI, How to bring the import tab in PO header level. murugan