Signed applet working in Netscape 6 but not in IE 5.5

I have an applet that reads a file from a server and tries to write it to a client machine. To this i self signed the jar file containing the applet using the keytool and jarsigner. So now I had a self signed applet. I tried to run this in IE. It gave the same error message that i used to get when I tried to run it the applet as unsigned. What am I missing here? Is self signing not enough to run the applet in IE? The same applet works in Netscape 6 and successfully downloads the file to the local machine. Please help me. I have added the certificate to the IE security panel as trusted.

Netscape 6 has Java VM 1.3. if you use MSIE, you should try JavaPlugin.
If interested in an appli that helps in signing process, you may download XLRSecTool for
free at:
. Windows:
http://www.xlreader.com/download/stl10ea/InstData/Windows/NoVM/istl10ea.exe
. Unix and Linux:
http://www.xlreader.com/download/stl10ea/InstData/Unix/Others/istl10ea.bin
. Other Java-enabled OS
http://www.xlreader.com/download/stl10ea/InstData/Java/install.zip
Requires Java VM 1.3.1
Screenshot:
http://www.xlreader.com/images/sshot_s673x548.gif
-- Robert
=====
[email protected]
XL-Reader Project - Secured online documentation solutions
www.xlreader.com
=====

Similar Messages

  • 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

  • Applet work with JRE 7_51 but NOT with JRE 7_45

    Hello,
    My major problem is, that my Applet signed with COMODO certificate DOES NOT WORK with JRE 7_45.
    The SAME applet works fine with JRE 7_45, if I sign this applet WITH A SELFMADE UNTRUSTED certificate.
    WHY the comodo signed applet doesn't run in JRE 7_45 ???
    If i launch the comodo signed applet with JRE 7_51 it works perfect !!!
    But in our company we got JRE 7_45 and I have to deal with JRE 7_45. That’s my problem.
    Could you please tell me a solution what I have to do that the comodo signed applet works also in JRE 7_45.
    Thank you!
    Philipp

    Thanks gimbal2.
    I agree the problem may be in the proxy or in the firewall but I don' to know how to prove it as if i call the servlet url from browser I dont have problems .
    The version im using is 6.45 but im sure the same problem occurs also with other versions of JRE6 .
    ... and the problem disappear with JRE7 ...
    trouble is my company want people to use JRE6
    any idea ?
    Gio

  • 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/

  • Applet works under 1.4, but not with 1.3

    i have a correct signed applet, which works with java 1.4.2 plug-in (means, the security dialog comes up, the user hits yes and the applet runs and can read/write files on local disk etc.)
    a fresh installation of win2k with java 1.3.1_11 does not accept the certification at all.
    it shows a FilePersmission while reading the .jar file itself.
    the jar is on the local hard disk and is being access via a local html file. (no webserver at all in the moment)
    is it possible that 1.3.1 does not check for certificates on local jar files or something?

    Try it with a webserver and see if it works. I am having a problem getting an applet to work locally under certain versions of the plugin.

  • Applet works in MS JVM but not in JDK1.4 !

    Running IE 6 SP1 with windows 2000. Everything works well until
    I installed JDK 1.4 recently.
    I have an ancient (JDK 1.1?) applet that refuses to work with JDK 1.4
    But when i disable JDK 1.4 under internet options , it works!
    This is the error
    "java.lang.NoClassDefFoundError; Symantec/tools/awt/multiList"
    If the class is really missing, why was it able to work without JDK 1.4?
    Also note, that Symantec.jar is on the local machine and not on the server. Symantec.jar is a selected compilation of Visual Cafe classes
    that the applet needed.

    It will be better to have Symantec.jar on the server at the same level with your caller applet package. For example
    + Some folder
    |
    + --- yor applet package
    |
    + --- Symantec.jar

  • Applet Working in MS-DOS, but Not in my Browser

    Hello!
    The applet builds a String that is displayed in the MS-DOS
    console window; but when I use my browser, I see no Java console.
    I am using J2SDK1.4.0_02. Do I need something else for my applet
    to work properly in my browser?
    Please, help. Thanks.
    Alex

    There's 2 ways to fix this.
    Assuming you're using an up-to-date version of Internet Explorer and Sun's VM, you need to go to Start--> Settings--> Control Panel-->
    and double-click Java Plug-in 1.4.0.
    Click Browser and make sure that the Microsoft Internet Explorer box
    is checked.
    This will use Sun's Java Plug-in all the time which may not be what you
    want (as this can break other stuff).
    The other way to fix it is to add some tags to the HTML file (which may also fix the problem if you are using Microsoft's VM).
    Use "OBJECT" instead of "APPLET".
    And make sure you have the following tags defined: "CLASSID", "CODE", and "TYPE". Your value for CLASSID could be different.
    Something like:
    <HTML>
    <HEAD>
    <TITLE>Jumbo's First Class</TITLE>
    </HEAD>
    <BODY>
    <H1>Brenda Pads Her Keys</H1>
    "Drat!" exclaimed Jumbo. "This stupid machine."<BR>
    Brenda rolled her eyes, as if to say "What now?" and inquired
    in her most soothing, customer-service voice, "Problem, J.G.?"<P>
    Jumbo, perhaps a tad unresonably, bit back. "I don;t have a problem.
    It's this moronic prototype. Why does it let me type in letters if all
    it can use is numbers? Who designed this anyhow?"<BR>
    Brenda, stifling her impulse to reply, "You did," reached over Jumbo's shoulder and pressed a key on his keyboard. "I know just what you need," she said. "Look at this."
    <HR>
    <OBJECT CLASSID = "clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" HEIGHT=150 WIDTH=200>
    <PARAM NAME = CODE VALUE = keypad1.class>
    <PARAM NAME = TYPE VALUE = "application/x-java-applet;version=1.2;>
    </OBJECT>
    </BODY>
    </HTML>

  • JavaMail applet working on local machine - but NOT on my webpage

    Hi.
    My code works on my machine as an applet run through my Eclipse IDE.
    I have the Applet deployed on my website, which is the same server as the email server itself.
    public void postMail(String to, String subject,
                                String message , String from) throws MessagingException
        boolean debug = false;
         //Set the host smtp address
         Properties props = new Properties();
         props.put("mail.smtp.host", "mail.completemusician.net");
         props.put("mail.smtp.port", "2626");
         props.put("mail.smtp.auth", "true");
        Authenticator auth = new SMTPAuthenticator();
        Session session = Session.getDefaultInstance(props, auth);
        session.setDebug(debug);
        // create a message
        Message msg = new MimeMessage(session);
        // set the from and to address
        InternetAddress addressFrom = new InternetAddress(from);
        msg.setFrom(addressFrom);
        InternetAddress addressTo = new InternetAddress(to);
        msg.setRecipient(Message.RecipientType.TO, addressTo);
        // Setting the Subject and Content Type
        msg.setSubject(subject);
        msg.setContent(message, "text/plain");
        Transport.send(msg);
    }1) I know my code works on my local machine - so it's not related to a code bug.
    2) I know that all class files are uploaded correctly and working in a single JAR file. The other 3 classes I use work fine in this applet.
    3) I receive no errors of any kind - it just appears that my constructor may not be called, or the instant java mail API is mentioned, the applet just refuses to work.
    v.setMessage("Attempting to send..");This line never is used in my class constructor - which is troubling.
    public SendMailUsingAuthentication(String from, String to, String subject,
              String text, ValidationDialog vd) {
           v = vd;
           v.setMessage("Attempting to send..");
           boolean succeed = true;
           try {
              postMail(to, subject, text, from);
         } catch (Exception e) {
              // TODO Auto-generated catch block
              v.setMessage("Email delivery has failed. " +
                         "Please check your email address provided and try again." +
                         "\n\n" + e.getMessage());
              e.printStackTrace();
              succeed = false;
         if(succeed)
               v.setMessage("Your request has been submitted successfully.\n\n" +
                         "You may safely navigate away from this page.");
               v.setBlue();
         // TODO Auto-generated constructor stub
    }Feel free to reply - I would appreciate your help. Just keep in mind:
    1) Don't tell me to use javascript. I refuse.
    2) Don't tell me I need a server application. It's supposed to work according to documentation, without it.

    Is your applet signed properly? Note that you have to sign all the jars for the applet -- including the JavaMail jar and the activation jar -- using the same signer.

  • Cloudfront signed url works with "setup page", but not local copy

    I generated a signed url so I could do rtmp streaming through cloudfront from a S3 bucket.
    When I put this url as the "src" of the player found here: http://osmf.org/dev/2.0gm/setup.html, I can see my video, however, it doesn't work on my local copy of Strobe Media Player.
    I went and grabbed the latest available versions from source forge (2.0 of OSMF and 1.6 of SMP), compiled them, and tried to play the file, but it wouldn't work on my compiled copy.
    My player works fine with normal videos, only when using signed urls from cloudfromt do I get ths error
    It uses a signed url like this:
    rtmp://s161ki0ys7euuz.cloudfront.net/cfx/st/vid_cdntest001?Signature=RSS0PV4RCq6lsF7gKE202 sHJw0lxCE9zwJbISVuovaBnARQFCVZ2e6SSejHXN4uIT5uotDBT8iYZVvfUC3rq0A571CWVETsnlJ4jhEir1JE5w-p jC-cx~CjxkcVQSj8EC07zozoNCypiBggLy0w2Id8TUxTuX9KrIDlN~BImwBjN1cnuZMpms9dpfuw-MLFefHtTDwfZZ Yh00LSUAEqA0BwqhA6NECHbrkaXQjUM7r5TRSP3ZH5uFIWhUWLMH3WWYLyz5bQab3FQxZhI4BhdFPJm6Z0m6HVVnuz eMqibMWDGybtoepjkTUYJqeTaYQUpIHrp1-0-dDVhhCx7BxCOlA__&Key-Pair-Id=APKAJSRQXYNPUENHF6HQ&Exp ires=1387398525
    And it requires a flashvar "urlIncludesFMSApplicationInstance" to be set to true. The flashvar is set in my local copy of the player.
    I set "verbose" to true, and I get "Playback failed. Failed to play(stream ID: 1)"
    The AWS people were able to play the file on their debug player, so it isn't a problem with the video. It's just something about my copy of the player or the environment I'm on.

    I'm initlaizing the player using swfObject like this:
    $(document).ready(function(){
            callPlayer("rtmp://s161ki0ys7euuz.cloudfront.net/cfx/st/vid_cdntest001?Signature=EYvGzU2I4CRLE4h8pD8fec3A6fwfIqadzuAtVBQcsDeh0zU9rexKJqq-5GVNG~PdNlV~nbdSlUl4FAJ6rCuOTAh7BrXkieg26z4y3uMgzLm3I3p8GSjTyUBe5rIbZhnxUulSFfHoOWFDV-keORil3~zG91OVDKxvsbIrZv6-IsYTJQzYA7w6R2jy6SiJEJwfqNvD5xdiv2w87GuR472kELQ79yvI6twgeDnZOkN~w9khQSVLcqqmAkkTHQxxkBR8hs954VaUEAKZO~ejwZ3ju8xTUAeuuQu3y06r6SHNGwhLdQh00qV1PUHSMdPdHp3SzZdCxwAepV6xUx2~TR2idw__&Key-Pair-Id=APKAJSRQXYNPUENHF6HQ&Expires=1387466710");
        function callPlayer(x){
        $("#PlayerHolder").html("<span id='PlayerDiv'></span>");
            var flashvars = {};
            flashvars.verbose=true;
            flashvars.src=x;
            var parameters = {};
            parameters.urlIncludesFMSApplicationInstance=true;
            var attributes = {};
            attributes.name="player";
            attributes.id="player";
            swfobject.embedSWF("StrobeMediaPlayback.swf?ID="+Math.random()*100,"PlayerDiv","470","320","11.2","scripts/expressInstall.swf", flashvars, parameters, attributes);

  • Adobe ID Sign in worked on 1 computer but not another

    I installed Photoshop CS6 beta on my Windows 8 Tablet PC, signed in with the same Adobe ID that I am using now... everything worked fine.  I do the same on a Windows 7 x64 workstation connected to an Active Directory domain and signing in with the same Adobe ID does not work.  It says that my Adobe ID does not match the password.  So the only option is to create a new Adobe ID on this Windows 7 workstation.  I do that using the exact same email address and password that I was attempting to log in with, AND THAT WORKS!  Did I just create a copy of my Adobe ID?  Or did it realize I already have an Adobe ID and used that to activate Photoshop CS6? 

    Actually, on the Windows 8 tablet I typed only the username not the email address and that worked! (My Adobe ID is from before they used email addresses, so that might have something to do with it.)  On the Windows 7 machine I tried all variations of [email protected] and my user all with caps off. Somehow clicking the create new Adobe ID button and entering the same info worked and now PS CS6 is just fine. Weird.

  • Signed.applets.codebase_principal_support is set true but I always get error

    signed.applets.codebase_principal_support is set true but I always get error like Error: A script from «https://127.0.0.1:8080 <https://127.0.0.1:8080/> » was denied UniversalXPConnect privileges.
    On linux it works well.
    May be I need to change something else ?

    Possibly the consequence of this bug fix.
    *[https://bugzilla.mozilla.org/show_bug.cgi?id=546848 bug 546848] - Remove support for enablePrivilege
    <i>([https://bugzilla.mozilla.org/page.cgi?id=etiquette.html please do not comment in bug reports])</i>

  • G4 iBook works in Safe Mode, but not in regular mode (stuck on blue screen)

    14" iBook G4 1.2GHz with 1 gig of RAM.
    I recently had an issue with this machine in that the image on the screen would freeze but the cursor would be able to move around. This was narrowed down to an issue with the logic board. I wanted something a little more permanent than a shim, so I sent the board in to have it reballed.
    After installing the maching back into my iBook, it seemed to work fine until I applied a software update to the machine.
    It was then that I got to experience the first of many kernel panics.
    Restarting at different times always brought me to the dialog box which states that the machine needed to be restarted in multiple languages.
    Running the Apple Hardware Test off my install disks yielded this error code: 2ATI/2/4:113-xxxxx-125
    I have no idea what that means. I do know that just before I got the results of the test, the screen changed to all kinds of colors. It was only for a few seconds and then the results (with the error code) were displayed.
    Still, not sure what to do next, I tried resetting the PRAM. I also tried resetting the NVRAM.
    I also tried booting up into Safe Mode which actually worked. There were no issues with the machine and everything seemed to be working fine.
    When I tried to restart the machine in regular mode, I'm taken to the infamous blue screen and the machine just stays there. When I let the machine stay off overnight, it booted up normal, but after applying the software update, the machine was in kernel panic again.
    I've tried running fsck, but nothing changes.
    I'm still not sure why it seems to work in Safe Mode but not in regular mode.
    I'd appreciate any suggestions or ideas.

    Hi,
    A couple of the things that are disabled in safe mode are AirPort and non Apple startup items. The easiest thing for you to test is the AirPort card. Shut down and remove the AE card under the keyboard. See if it starts. If it does your AE card is bad. If not, start in safe mode and go to System Preferences>Accounts>youraccount and disable all non Apple startup (LOgin) items by clicking on them and then the minus sign. Restart normally and see if it will start.
    John

  • HT4528 Why won't my apple id and password work on my iPhone?  It is working on my Macbook but not the iPhone?

    Why won't my apple id and password work on my iPhone?  It is working on my Macbook but not the iPhone?

    there might be something different on the mac you can try appleid.apple.com and reset your password i would also check the mac to see which appleid is signed you may have multiple apple ids and not know

  • Html link to pdf works ok on mac but not on ipad. adobe reader for ipad downloaded.

    HTML link to pdf works ok on Mac but not on ipad. Adobe Reader for ipad downloaded. What's wrong?

    Hi pwillener,
    Thank for reply. The pdf’s are in a subfolder “PDF” of the folder holding the web page. The web page itself uses
    . This works in full size computer browsers but not in an iPad.
    My excursion through the search engine has produced the idea of adding #page = requesting page to the URL but I have not had time to try it perhaps without the = sign.
    Bryan

  • My apple tv will not authenticate my nba league pass login--I am in the United States and the same login/pw works for my iPad, but not for apple tv.

    My NBA League Pass login cannot be authenticated -- I am in the United States and the same league pass name and password are working for my iPad, but not for my apple tv.

    I have this same issue and am becoming quite upset. NBA has absolutely no contact information to call and resolve this issue. I just spent $139.99 and cannot connect to Apple TV, while the same login works just fine on my iMac and iPad. When I signed up, the information provided indicated that I could view live games on Apple TV. What the ****?

Maybe you are looking for

  • Problem with Adobe Content Viewer for ipad

    Hello, I created an application from folio bulider 1.350 gigabytes. Once downloaded using Adobe  Content Viewer on Ipad i can display it without any problems, but when I turn off the Ipad or delete Adobe Content Viewer by applications running in the

  • Need some advice on how to approach a problem

    Hi, I have a Jpanel, in which i use paintComponent() to draw a lot of things.... I pretty much have a large grid...and within this grid, i have lines, which are connected by points....The lines are moved around by dragging the points. To check if a p

  • Viewing iMovie events using Front Row looks stretched

    I imported some standard def footage (4:3) using iMovie. When viewing the resulting "dv" files in the "iMovie Events" folder, they look a bit stretched horizontally. Anyone know why this is? They look good playing them full screen in iMovie. They pla

  • Using firestarter, dhcp..very slow

    help, I have one internet connection that I am wanted to share with a second computer. I am now using firestarter to do this. The second computer connects via dhcp, and it almost works, only, the connection is very slow; it can connect to google, for

  • Is there a way to get elements to reference a file/photo instead of making a copy of the file/photo???

    So I have a MBP with a 512GB SSD and my photo library is about 100GB. My music library is about 250GB. Videos make up another 70GB. I just installed Elements 11 photoshop and premiere and I don't have the space for it to duplicate everything. Is ther