Applet works in Windows Server and not in Unix server

My friends,
I have a signed applet working fine in a windows server and a client with win98. When a put this applet in a AIX/Unix server in same win98 client did not work.
The applet call a program in the client by Runtime.exec and a give "error=0".
Someone can help me ?

Show the code with the runtimeexec line.
Windows file system is different than UNix.
Windows eg. Runtime.exec (c:/fileToRun.exe)
*ix eg.          Runtime.exec (fileToRun)                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • HT3986 I installed windows 7 to my macbook pro, but my mousepad does not work in windows 7 and also i can not connect my windows 7 to projector, but i can use my macbook's mouse pad and i can connect my mac to projector,so please help me for windows 7 pro

    I installed windows 7 to my macbook pro, but my mousepad does not work in windows 7 and also i can not connect my windows 7 to projector, but i can use my macbook's mouse pad and i can connect my mac to projector,so please help me for windows 7 problem

    i try to download now, do you think when i download and install the windows support software, can i fix the problem?

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

  • 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

  • Ipod works on Windows 2000 but not on XP

    I have an empty Ipod click wheel unit . My Itunes library (about 1200 songs) is safely stored on cd's. I have Windows 2000 in the office and Windows XP at home. If I take the cd's and the Ipod to the office, I can get it to run perfectly. I restore the cd's to Itunes and upload them to my Ipod with no problems at all. When I bring the unit home, and plug it into my XP home system, it seems to have great difficulity recognizint the Ipod at all. The Ipod image pops on and off the my computer screen. If I fiddle with the Ipod for a while,just randomly selecting menu items, sometimes I can get it stabilized, at which point I get a message that it is sync ed to another computer. I try to resync it - sometimes it stays up and sometimes it drops out. If it stays on line, the Ipod sync window appears on the screen, and I get an immediate message "upload complete" from my empty Itunes library. I then load a cd to put something in the library to actually sync with, and it loads perhaps 10 or 15 items then I get a message "The Ipod - Patricia's Ipod can not be updated - The required file can not be found" It stops and nothing else will happen. I have tried different plugs, changing drive letter assignments, reloading firmware, complete restore, 5R's, everything I could find, but still I have no luck. My husband has a new Ipod video which operates perfectly with the same XP computer. So, why does it work perfectly with Windows 2000 and not at all with Windows XP?

    Check your firewire connection and/or Windows firewire driver. This is done in Device Manager.

  • 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

  • Outlook 2011 works on 1 network and not on the other

    Hello guys,
    I just purchased a Macbook Air and MS Office 2011 for Mac. I setup the computer while I was at work (using a wireless network) and was able to get all my emails in perfect order.
    However, once I got home (on my home wireless network) when I hit Send/Receive, I get the "Authentication Failed Error 17900" message.
    I must add that I have 5 different accounts setup, 4 are my personal domains and one is Gmail. Gmail works fine on outlook both from my office and home.
    I tried changing many settings in Outlook, but nothing seems to work. I'm not really good with these things, but my logic tells me that if everything works in the office and not at home, it must have something to do with my router at home! Could this be the case? Can anyone help me please? My office is an hour away and I hate to go there just to check or send emails.
    Thanks in advance for your help.

    Hi,
    Thanks for taking the time to help me out.
    What I did was, I connected my other laptop directly to the internet cable, and everything seemed to be working fine (I had the same issue on my windows laptop)
    So, I jumped to the local Apple Store and picked up an aiport extreme and voila! everything runs smooth now
    Thanks again, I appreciate your help.

  • Code works with Dreamweaver CS6 and not with CC

    <p><a href="javascript:void(0)" onclick="window.open('http://www.anything.comt', '', 'top=20,left=20,toolbar=0,statusbar=1,scrollbars=1,resizable=1')" title="title">name</a></p> works with Dreamweaver CS6 and not with CC
    [Edited Title and moved to Dreamweaver- JTS]

    I'm not quite sure I understand your point.
    I have just tested the Open Browser Window behavior in Dreamweaver CC. It creates slightly different code from Dreamweaver CS6, but it works correctly. This is what is created in the HTML:
    <p>my <a href="#" onClick="MM_openBrWindow('http://www.adobe.com/','mywindow','toolbar=yes,location=yes,status=yes,menubar=yes,scrollb ars=yes,resizable=yes')">link</a>
    </p>
    Dreamweaver CC also adds the following code to the <head> of the page:
    <script type="text/javascript">
    function MM_openBrWindow(theURL,winName,features) { //v2.0
      window.open(theURL,winName,features);
    </script>
    The definition of the MM_openBrWindow() function is needed in the <head> for the code to work. But it definitely works OK.
    With regard to _self and _blank not working, I can't find any problem with the way Dreamweaver CC handles them.
    However, if you feel happier working with Dreamweaver CS6, you can download it from the following page:
    https://creative.adobe.com/products/dreamweaver
    Open the drop-down menu under "In this version", and select Dreamweaver CS6 as shown in the following screenshot:
    With Dreamweaver CS6 selected, click the large Download button at the top-right of the page. You can then download CS6, and install it alongside Dreamweaver CC.

  • Does Planning work in Windows 7 and IE8?

    Hi,
    Does Planning work in Windows 7 and IE8?
    I saw John Booth's bug fix for IE8, so I guess IE8 works with Planning, workplace, HSS, FR websites.
    Thanks in advance.

    thanks John.
    from Knowledge Base (not doc)
    When Will Hyperion EPM Support Windows 7 and Internet Explorer 8 (IE 8)?
    Oracle/Hyperion plans support for these platform components with the following releases:
    •     Release 11.1.2, new install only.
    •     Release 9.3.1.5, which is a patchset for release 9.3.1.
    •     Release 11.1.1.4, which is a patchset for release 11.1.1.3.
    Existing customers on releases 9.3.1 and 11.1.1.3 may apply the specified patch set. No major upgrade is required.
    Tech support thinks that April is when they will release patch of Planning to work in Windows 7 and IE8.
    Since 9.3.1, Smartview works with Office 2007
    Oh, BTW, I filed a bug:
    In planning 11.1.1.3, a user that is not provisioned to run HBR can still run HBR in Planning form.
    Also, this bug: hidden rows in Planning forms will show in Smartview.
    Edited by: Essbase Fan on Mar 3, 2010 3:31 PM
    Edited by: Essbase Fan on Mar 3, 2010 3:34 PM

  • Escrow the recovery key in DB server and not in AD when removable drive is encrypted.

    Is there any way to escrow the recovery key in the database server and not in AD when removable drive (USB drive) is encrypted via manage-bde command line? The data recovery agent is not enabled in our organization. 
    "Choose how bitlocker protected removable Drives can be recovered" for removable drives is disabled in our Group policy also.
    Please advise. Thank you.

    As far as I am concerned, you cannot do that when you are using the command line "Manage-bde".
    The reason is because, the manage-bde command line parameters doesn't support saving recovery keys to databases. Also there is not any group policy defined for it.
    I you want an option to save recovery keys in a database rather than the AD, I would recommend to use MBAM (Microsoft Bitlocker Administration and Monitoring).
    Gaurav Ranjan

  • When silverlight will work in windows 8 and windows 10

    when silverlight will work in windows 8 and windows 10?

    Hi,
    I'm using windows 8.1,silverlight 5 works fine on my machine.
    If you want to know if silverlight can works on windows 10 , you should wait for microsoft's offical statement.
    Learn more about silverlight comaptible system,please check link below:
    http://www.microsoft.com/getsilverlight/get-started/install/default.aspx?reason=unsupportedplatform  
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Auto To working for one material and not working for other material

    Hi,
    Hope everybody is doing fine.
    I have configured the auto TO. Its working fine for one material and not working for the other material. I checked the material master and wm 1,2 views have the same fileds / values. What could be wrong?
    I didn't setup the back ground processing job. Is that is affecting it?
    thanks for any help.
    regrads,
    KHAN

    Thnaks,
    You are right but then what could be wrong? Its working for one material and not working for otehr material? Any clue?
    Appreciate your time charlie

  • Iphone work on air print and not ipad

    iphone work on air print and not the ipad?  any suggestion?
    This question was solved.
    View Solution.

    Hi,
    Please use instructions from the following link to check and fix:
       iPad: http://www.apple.com/support/ipad/assistant/airpri​nt/
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Does the 932C HP printer with 2 sided printing accessory work with window 7 and office word 2010?

    (model#C6463A-double side, printing accessory), for the HP 923C printer?  Is it real slow printing?  Does it flip by itself or do I have to flip it? Also will the printer with the accessory work with windows 7 and office word 2010 to type 4 pages per sheet, like a book? Thanks and please help me!

    Hi @Happyforhelp 
    I suspect your question would be better answered in the HP Enterprise Business Community, as your HP Printer is a commercial model.
    My technical expertise is with consumer products and software, I am sure the commercial folks would be happy to help if you re-post your question for them to answer. The HP Enterprise Business Community is an HP Forum designed for the Commercial and Enterprise customers to help one another. I am sure you will find some HP folks there to help too.
    Click here to view the Printing and Digital Imaging. When the page opens you will see the option to 'Log in' or 'Register Now' on the right. The commercial forums are separate from the consumer boards, thus you will need to register if you don't already have a commercial account.
    You may find the HP Deskjet 930/932c Printer series page helpful while you wait for somebody in the commercial Forum to respond to your inquiry.
    Best of luck.
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • Does airplay mirror only work with the ipad2 and not ipad1

    does airplay mirror only work with the ipad2 and not ipad1

    But can it still stream video wirelessly?
    For example, with the Digital AV Adapter I can watch video on my TV, but obviously it's wired.
    I'd like a wireless option.

Maybe you are looking for