Applet works fine with JNLP... but not on my web page

I can create a seperate JNLP for my applet, and it works fine. However, when I try to insert it into a web page, it does not work. I was wondering if this was a common newbie issue, and how I would go about fixing it. I compiled it using the newest J2EE JDK and the newest JSE (downloaded and installed a couple of weeks ago).
Any help would be greatly appreciated... thank you.

If you want to insert an applet in a web page you use java plug-in, not java web start. You can use Java Web Start to deploy an applet outside of a browser, but plug-in is still the primary applet deployment method, and the only one that can show an applet in a web page.
/Andy

Similar Messages

  • Apple TV working fine with Wireless, but not on Ethernet

    I just got an Apple tv for my B-day and I can't get the Ethernet port to work.
    It works fine on wireless but if i plug in the cable to my 5 port switch that then goes to my router it will not login to the store, or sync or fine youtube. It has and ip and everything. I tried opening that port 38 something. And no go? Does anyone have any ideas?
    I have a 2wire router, and one 5 port switch, the PS3, Wii and Xbox all work on the switch just fine.
    I even upgrade to firmware 2.01

    Thanks for your help guys
    I have tried another ethernet cable but no go. I'm going to get a new one at the store today. As for the IP. the first time I plugged it in the IP was way diffrent from the one on my router so i manually added the new ip and subnet mask etc etc. And still no go. It is seen in itunes but tells me it can't sync. And if i go to the Apple TV it will not open any of the web enabled features. No you tube, no store, no nadda.

  • Device works fine with MAx but not with Labview visa serial

    I have a Monarch rpm sensor hooked up to Monarch tachometer , it gives error while coding in labview and works fine in Max if the sensor doesn't read 0. I have written simple RS-232 programs never had an error but this one is giving errors ..not ablt to fix it..please help
    Solved!
    Go to Solution.

    No device can actually measure a speed of zero.  It can only specify that the speed is less than some minimum, which depends on how long you are willing to wait for an answer.
    I do not know anything about your instrument, but I would guess that you are getting an error which is the equivalent of "The instrument has waited the maximum permissible amount of time and did not detect any measurable motion."  This is the instrument's way of saying that the speed may be zero, or very slow, or something is broken so that it cannot make a measurement but it cannot detect the problem.
    Look at the manual for you instrument to see how it responds to the zero speed condition.  This error may be normal.  If so, you need to capture the particular error code and handle it however you think is appropriate.
    Lynn 

  • Works fine with Safari but not with Internet Explorer

    Hi, I just created a website using iWeb, and it looks great in Safari in my Mac and iphone, but when I try to open it in Vaio using Internet Explorer, I get some problems. Sometimes the page just don't open, and when it opens, the fonts are not the same, and things are moved around. What can be the problem and how can I fix it? By the way, I use mobile me for hosting, and my site is www.ogucuo.com
    Thanks!

    When you use a font that is not "Web Safe" the computer that downloads your page may not have that font installed. It substitutes another one and this causes the text box to expand and push the other stuff around.
    If you enter some text into a box on an iWeb page and then change the font you will see how the text box expands to accommodate a bigger font.
    If you really want to use a special font, sparingly, convert it to an image by typing it into a shape or putting a slight shadow on it in the "Graphic" inspector. The iWeb help menu will tell you about this.
    If you turn on "Show text imaging indicator" in iWeb preferences you will get a visual indication of the text being converted to an image.
    I say sparingly because each image increases your page file size and download time.

  • Hi! I am having a problem with my dictation. It works fine with Greek but it does not work at all with English. Anyone knows why?

    hi! I am having a problem with my dictation. It works fine with Greek but it does not work at all with English. Anyone knows why?

    Have you changed the system voice to an English one in system preferences?

  • I am transmitting data over internet and WiFi ,it's working fine with internet but when I choose WiFi for data transmission data is not being transmitted. What may be the possible issues of data transmission failure over WiFi?  Please help me.

    I am transmitting data over internet and WiFi ,it's working fine with Internet but when I choose WiFi for data transmission data is not being transmitted. What may be the possible issues of data transmission failure over WiFi?     Please help me....
    Thanks in Advance.
    Neeraj@iDev

    After a week's worth of debugging, I found the issue.
    The Java type returned from the call was defined as ArrayList.  Changing it to List resolved the problem.
    I'm not sure why ArrayList isn't a valid return type, I've been looking at the Adobe docs, and still can't see why this isn't valid.  And, why it works in Debug mode and not in Release build is even stranger.  Maybe someone can shed some light on the logic here to me.

  • I own the 4s and my BT Planttronics Pro works fine with calls but does not work to listen to music? Any ideas on how to correct this?

    I own the 4s and my BT Planttronics Pro works fine with calls but does not work to listen to music?
    Any ideas on how to correct this?
    Thanks-Vitaleyes

    I don't know what they call it, but my plantronics voyager pro, and my wifes plantronics voyager pro+ will not let you hear music through the headset.  My Blueant T1 does support it and plays the music through the deadset.

  • My applet works in the appletviewer but not in the navigator

    My applet works in the appletviewer but not in the navigator
    exceptions problem1 and problem2 are throwed
    this is my code
    import java.applet.*;
    import java.net.*;
    import java.io.*;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class ValiderHtml extends Applet implements ActionListener {
    JButton send =new JButton("Connexion");
    JScrollPane jscrollpane= new JScrollPane();
    DefaultListModel lignes=new DefaultListModel();
    JList lstURL = new JList(lignes);
    BufferedReader reader = null;
    String ligne;
    URL url;
    URLConnection conn;
       public void init(){   
       this.setSize(900,400);
       setLayout( new GridLayout(2,1));
       jscrollpane.setBounds(new Rectangle(19,53,160,73));
       jscrollpane.getViewport().add(lstURL,null);
       send.addActionListener(this);
            this.add(send);
       this.add(jscrollpane);
        public void actionPerformed(ActionEvent evt) {
             Send();
       public void Send(){
            try {
       url=new URL("http://www.developpez.com");
       conn = url.openConnection();
       reader = new BufferedReader(new InputStreamReader(conn.getInputStream()));
    while ((ligne = reader.readLine()) != null) {
                     lignes.addElement(ligne);
        }//fin bloc try
       catch (Exception e) {
                   lignes.addElement("probleme1");     
                finally{
                   try{reader.close();}catch(Exception e){ lignes.addElement("probleme2");}
       }// fin Send
          public void paint(Graphics g) {
                super.paint(g);
    }// fin Applet

    As for tracking the source of your problem your applet sucks.
    Try e.printStackTrace() on a cought exception and check the (full) trace.
    url=new URL("http://www.developpez.com");
    Unless yor applet is on www.developpez.com this will throw an exception in an unsigned
    applet without special policies.
    Signing applets:
    http://forum.java.sun.com/thread.jsp?forum=63&thread=524815
    second post and last post for the java class file
    http://forum.java.sun.com/thread.jsp?forum=63&thread=409341
    4th post explaining how to set up your own policy with your own keystore

  • Fixed headers while scrolling works fine in bids but not when deployed to reportserver

    Hi, I am using SQL Server 2008 R2 & deploying a report to reportserver with fixed headers while scrolling, this works fine in bids but not when deployed to reportserver. We are IE 9.
    Thanks in advance...............
    Ione

    Hi ione721,
    Since you have identified the 2 xml files are identical, according to my knowledge, there maybe a compatibility issue with IE 9 and SSRS 2008 R2, so I suggest that you could run the report in compatibility mode. Please make sure you have turned on Compatibility
    View in Internet Explorer 9 by following steps:
    When Internet Explorer recognizes that a webpage is not compatible, you will see the Compatibility View button on the Address bar. Try clicking it.
    When Compatibility View is turned on, the button changes from an outline to a solid color when you view the page.
    The following screenshots are for your reference:
    If you have any questions, please feel free to let me know.
    Best Regards,
    Wendy Fu

  • Works fine on macs but when i load the page on p.c i get 404 media not foun

    works fine on macs but when i load the page on p.c i get 404 media not found. Which is odd since it works on any mac i've tried on the same network, does anyone have any ideas?

    I too am having the 404 media not found on my blogs, but its on both my mac and pcs. I am wondering if your macs can see it because of them being bound to the server?? Just an idea, which doesn't help me at all. So if you find a way to fix it please please post it.
    Kcam1999

  • PDF Report with chinese work fine in 9iDS but not in 9iAS

    I use oc4j in oracle 9iDS,it can display chinese no problem through set pdf font subset.
    However,when i deploy it to oracle 9i AS ,and i have set 9ias Report services according to oracle 9i DS's setting,it don't work fine with chinese in pdf report.
    it's urgent ,i must deploy my application soon.who can help me?Thanks in advance!

    David,
    it don't work fine with chinese in pdf report.Not sure whether you are able to generate the PDF or it has the charactres crumbled?
    For me. it is definitely seems to be a configuration issue.
    It is hard to help, as you haven't given enough information on your environment.
    Please check your setup for the entries for uifont.ali and your fonts in REPORTS_PATH.
    Please go through the PDF whitepaper in OTN.
    http://otn.oracle.com/products/reports/htdocs/getstart/whitepapers/pdfenh.htm
    You can mention your e-mail id so that I can contact you to understand and help
    Thanks
    The Oracle Reports Team

  • Hotmail has an EMOTIONS tab which works fine with IE but does not work with Firefox. Is there a fix?

    I cannot use the emotions tab in the latest Hotmail. Nothing appears. It works fine with IE. Is there a fix?

    Works fine here on Linux. Make sure that you do not block [[JavaScript]].
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • Can't FLIP a quick RENDER! Works fine in SHAKE but not to flip or Disk!

    Learning with Lynda.com!
    Part 1 has you rendering two files, one is a still image, the other a quicktime movie, I don't have the money for premium so I got my own clouds movie (.mov) and added a still plane.
    I key framed 1 - 100 and playing it back its fine in shake, but not on FLIP or DISK, its nothing but a still image. Have done it 5 times making sure that all the right buttons are on, or not, and as I said, it works INSIDE of shake but won't RENDER to FLIPBOOK!
    I don't suppose anyone wants to send me the exercise files? (on knees begging LOL) I am a member, just can't afford $300 for one pop and this is really the only program I need to learn.
    Thanks!

    Sorry if I'm pointing out something obvious that you already know. Have you checked the time range in the render dialog? Shake does not fill in the values for you automatically, and defaults to "1" so only renders the 1st frame. It needs to be set to eg "1-100".

  • Applets work under older compilers, but not newest

    The applets I compile using the latest release of javac (with the JDK 1.4 package) work in the appletviewer but not in IE 6.0. However, if I use an older version of javac from a couple years ago (not sure the version), the applets work in IE suddenly. Is there something I need to install in IE to make it compatible with the Sun 1.4 javac compiler? Should I just reinstall the JRE? Has anyone heard of this before? Thanks!!

    You could try installing the Java 1.4 plugin.
    http://java.sun.com/getjava/

  • ITunes/Apple Mobile Device works fine w/iPod but not iPad

    Hi. I'm getting stuck on this and would like some help to solving this problem. Basically I'm trying to sync my iPad; however, whenever I connect it, this meesage pops up: "this iPad cannot be used because the Apple Mobile Device is not started." The problem is that when I try to plug in an iPod using the same wire, it works fine, no problem, but the iPad just won't connect. I have since uninstall and reinstall all Apple components (iTunes, AMD, QuickTime, etc) and it's still the same thing...iTunes connects fine w/ the iPod, but not the iPad. What to do? Thnx in advance.
    EDIT:
    Btw, I've tried to connect the iPad while the iPod is connected, and the "Apple Mobile Device is not started" error message pops up too, which is weird, because the iPod is connected and syncing at that time...which means the Apple Mobile Device thing IS started. >.>

    The iOS devices use Apple Mobile Device Service, while older iPods use the iPod Service.
    Checkout this Apple document -> How to restart the Apple Mobile Device Service (AMDS) on Windows
    Are you able to restart the service after following the steps in that article?

Maybe you are looking for

  • Error while creating the USER in UME

    Hi Experts, I'm having NW 7.1 SP05 JAVA Engine and SAP MII 12.1 is running on NW. I'm having the Super Admin Role and trying to create the new user in UME,but I'm getting the error while doing so. The complete error trace is as below: "Error Creating

  • Flip4Mac and 10.4.8

    Does anyone know of any issues between the latest version of Flip4Mac and 10.4.8? ive updated osx and now cant view wmv files in safari, ive reinstalled flip, with no joy. Any suggestions? thanks in advance -james

  • Get the type of collecion elements

    Hi, I would like to get the type of the elements of a collection when I give the name the collection. Does anybody suggest anything about the SQL code? For example CREATE OR REPLACE TYPE CourseList AS TABLE OF VARCHAR2(64); CREATE TABLE department (

  • Master Detail Auto Insert

    Hi: I have a SQL report from which I use a link on the ID. When user click's on the ID a Master Detail form shows all the Master and Detail Rows. Working Fine. Problem: I need to create new Master detail records. My Approach: I have created a menu it

  • Hi there can i update my mac 10.04.11 thanks dez69

    Hi There can i update my mac 10.4.11 thanks dez69