WL 5.1/SP11 mod_wl_ssl.so doesn't work on Linux 7.1

          Did anyone experience WL 5.1/SP11 mod_wl_ssl.so working on Apache 1.3.22 or 1.3.19
          on Linux 7.1? The same environment setup works with sp8 mod_wl_ssl.so.
          Brian
          

          Did anyone experience WL 5.1/SP11 mod_wl_ssl.so working on Apache 1.3.22 or 1.3.19
          on Linux 7.1? The same environment setup works with sp8 mod_wl_ssl.so.
          Brian
          

Similar Messages

  • Triggers doesn't work on Linux

    Does anybody know why triggers doesn't work on Linux machine? Forms are developed in WIN2k and triggers works there fine. When the forms are transferred to linux triggers doesn't work anymore.
    I use Oracle 9i database and Forms 9i and Linux Redhat Advanced Server.

    Forms are compiled on Linux either by opening them in the builder and hitting compile or by using the compiler from the command line:
    Use the script $ORACLE_HOME/bin/f90genm.sh (or f60genm.sh if this is 6i).
    So if you are developing on Windows and running in Linux, you woudl FTP the FMB, MMB and PLL files to the Linux box and compile using f90genm.

  • Satellite M40-129: PCMCIA Card doesn't work with Linux

    I have D-Link DWL-G650 with Atheros Chipset which is good supported under linux (madwifi). But if I boot Linux the card is not found. I tested the card with an Fujitsu Siemens Notebook and it worked out of the box!
    Any idea why it doesn't work with my M40-129 ?

    Hi
    Like you know Toshiba doesnt support the Linux and there are no Toshiba drivers for the Linux OS but I was able to find this useful Toshiba page about the notebook configuration with Linux:
    http://newsletter.toshiba-tro.de/main/
    You should check the OS machine compatibility and the other areas.
    Im sure you will find many useful tips.
    Good luck

  • [SOLVED] pm-suspend doesn't work since Linux 3.7.6-1

    Hi,
    I have 8 GB RAM and no swap partition and use thus pm-suspend, but since Linux 3.7.6-1-ARCH, it doesn't work properly anymore.
    Suspending works fine, but if I want to resume, my external monitor stays black (my laptop monitor is always deactivated by me, when I am working with an external monitor).
    Any ideas where this comes from?
    Regards
    Steffo
    Last edited by Steffo (2013-02-12 15:22:07)

    1. Check your journalctl logs for any errors
    2. Try and figure out if your machine is actually locked up, or if the backlight is just off. You could ssh in, or try tying commands blindly into a terminal (like reboot or something with a known result)
    3. Try Ctrl-Alt-Fx to switch away from your X session VT and then back again. This is what I have to do right now, as I also get a black screen on resume from suspend.
    4. Try 'systemctl suspend' instead of pm-suspend.
    Good luck!
    Scott

  • Certification authentication doesn't work on linux version of Firefox

    I have web page on IIS6 which need windows authentication. I enabled certificate mapping on certain user so when I install the proper certificate on firefox installed on Windows-based PC (I login with local user) and set network.automatic-ntlm-auth.trusted-uris variable, I can access this site without typing username and password. I tried to configure in same way firefox on my linux station, but it doesn't work - the web site access attempt finishes with authentication request windows

    I didn't

  • My applet doesn't work on Linux

    I've heard from some people working on Linux platform that my applet http://astro.ia.uz.zgora.pl/~nirgal/psren.htm doesn't work even if they have proper JRE plugin installed. The same people can run other applets on other web sites. The applet works good on Windows platform browsers.
    Dear Linux users, do you have any ideas about this issue?

    Ok, I hope the code of the main applet class will help to solve the problem. Surely there is some bug (because other applets work). But I'm curious why it runs well on Windows at the same time?
    package main;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.border.*;
    import java.awt.*;
    import java.awt.event.*;
    import pulsarek.*;
    * Created on 28-Mar-2005
    * @author Nirgal
    public class PSRSim extends JApplet {
         private static Napisy napisy = new NapisyEng();
         private Maszyna mach = new Maszyna2();
         private PanelSredni averageP = new PanelSredni(napisy);
         private PanelSingli singleP = new PanelSingli(napisy);
         private Profil prof = new Profil(mach,averageP,singleP,null);
         private JTabbedPane tp = new JTabbedPane();
         private JButton spb = new JButton(napisy.getStartpauza());
         private JButton sb = new JButton("STOP");
         private JSlider speed = new JSlider(JSlider.HORIZONTAL,0,5,Maszyna.POS);
         private JProgressBar prog = mach.getBar();
         private EtchedBorder eb = new EtchedBorder();
         private Capanel polarCap = new Capanel(mach,napisy);
         //private static Logger loger = Logger.getLogger("PSRSim");
         public PSRSim() throws Exception{
              //loger.addHandler(new ConsoleHandler());
              //loger.setLevel(Level.OFF);
         public void init(){
              spb.addActionListener(new ActionListener(){
                   public void actionPerformed(ActionEvent e){
                        if(mach.getStan()==0){     //stopped
                             mach.setStart();
                        }else     
                        if(mach.getStan()==2)     //paused
                             mach.setStart();
                        else
                             if(mach.getStan()==1)     //running
                                  mach.setPause();
              sb.addActionListener(new ActionListener(){
                   public void actionPerformed(ActionEvent e){
                        mach.setStop();
              speed.addChangeListener(new ChangeListener(){
                   public void stateChanged(ChangeEvent e){
                        int pulsy = (int)Math.pow(2,((JSlider)e.getSource()).getValue());
                        mach.setDelay((int)Math.round(1000/pulsy));
                        //loger.info("Sleep time: "+(1000/((JSlider)e.getSource()).getValue()));
              Container cp = getContentPane();
              cp.setLayout(null);          
              tp.add(napisy.getParamogolne(),new MainParams(mach,napisy));
              tp.add(napisy.getCzapa(),new CapParams(mach,napisy));
              tp.add(napisy.getObliczenia(),new Obliczenia(mach,napisy));
                   tp.reshape(5,0,300,250);
                   prog.reshape(190,255,120,40);
                   speed.reshape(190,315,120,50);
                   speed.setSnapToTicks(true);
                   speed.setMinorTickSpacing(1);
                   speed.setPaintTicks(true);
                   spb.reshape(190,375,120,25);
                   sb.reshape(190,410,120,25);
                   averageP.reshape(315,1,310,150);
                   singleP.reshape(315,150,310,295);
                   polarCap.reshape(5,255,181,191);
                   TitledBorder polarCapB = BorderFactory.createTitledBorder(eb,napisy.getCzapapolarna());
                   polarCap.setBorder(polarCapB);
                   speed.setBorder(new TitledBorder(napisy.getPredkoscsymulacji()));
                   prog.setBorder(new TitledBorder(napisy.getPostep()));
              cp.add(prog);     
              cp.add(speed);     
              cp.add(tp);
              cp.add(spb);
              cp.add(sb);
              cp.add(averageP);
              cp.add(singleP);
              cp.add(polarCap);
              class MojListener implements ComponentListener{
                   public void componentMoved(ComponentEvent e){
                        e.getComponent().repaint();
                        singleP.repaint();
                        e.getComponent().hide();
                   public void componentShown(ComponentEvent e){
                   public void componentHidden(ComponentEvent e){
                   public void componentResized(ComponentEvent e){
              addComponentListener(new MojListener());
         public static void main(String[] args) throws Exception{
              JApplet applet = new PSRSim();
              JFrame frame = new JFrame("PSR Simulator");
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.getContentPane().add(applet);
              frame.setSize(640,480);
              applet.init();
              applet.start();
              frame.setVisible(true);
    }

  • Seems RTL8192EE wireless card doesn't work with Linux 3.19

    Hi all, I just fresh installed ArchLinux on my new Thinkpad T450s. The installation has been smooth enough. I can use wifi-menu on ArchISO image (which is based on kernel 3.18.6) to get my wifi connected. Everything works great. But when I reboot into the new hard disk installation, the WiFi connection always fails.
    I have tried to connect manually via wpa_supplicant and dhcpcd. It didn't show any error information like driver issue or so. The problem I can see is the link is really slow: too slow to get authenticated by router. At a small chance I can connect to the WiFi but then failed to get dhcpcd work. And at a really really small chance I can get an IP from the router but the ping latency to gateway is about seconds, so I cannot visit any service via this network.
    This issue happens to Linux 3.19. I have tested on 3.19.2 in core and 3.19.3 in testing.
    Is there any of you have the same issue, and is there a solution for this currently?
    EDIT: typo
    Last edited by sunng (2015-04-02 07:16:12)

    fabiopicchi wrote:
    For those using kernel 4.0, the problem is partially gone. The wireless connection doesn't randomly drops and you can always connect correctly but you can get really slow speed, and sometimes all packages are lost.
    Installing this new version of the driver solves the problem:
    sudo git clone http://github.com/lwfinger/rtlwifi_new.git
    cd ./rtlwifi_new
    sudo make
    sudo make install
    sudo modprobe -v rtl8192ee
    Yes, rtlwifi_new works for me. I do hope this can be merged into mainline some day.

  • Logitech wireless mouse doesn't work with Linux 3.10

    When I rebooted after updating to the 3.10 kernel my mouse stopped working. The cursor is displayed but it doesn't move. I downgraded back to 3.9.9-1 and it works fine again. As far as I could see it was detecting it in the dmesg output, so I'm not sure of the cause (maybe just a regression in the driver). I've never had any problems with this mouse before.
    The mouse is a Logitech M515 connected wirelessly with a Logitech Unifying receiver.
    This is the dmesg line (on 3.9.9):
    logitech-djreceiver 0003:046D:C52B.0003: hiddev0,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-2/input2
    Last edited by shaurz (2013-07-25 19:20:53)

    Mine works fine with Logitech Anywhere MX, never noticed any problems. Is this still an issue?
    According to the bug report, Logitech Anywhere MX should be broken I guess. If you need any info dumped to figure out why it's working for some, tell me what you need.
    Kernel:
    Linux xarch 3.10.3-1-ARCH #1 SMP PREEMPT Fri Jul 26 11:26:59 CEST 2013 x86_64 GNU/Linux
    lsusb:
    Bus 007 Device 002: ID 046d:c52b Logitech, Inc. Unifying Receiver
    dmesg:
    [ 3.332661] logitech-djreceiver 0003:046D:C52B.0003: hiddev0,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:13.0-1/input2
    ( I have a keyboard attached to the same unifying receiver. Paired them up using a windows laptop. Maybe that's the difference? I guess pairing hardware to the receiver using logitech software could theoretically mess with... uhm... magical internal mapping stuff that I have no idea how it works? Ok, I'll stop guessing making things up now ,  good luck with the bug :3 )
    Last edited by whoops (2013-07-29 10:54:39)

  • Wli 9.2 task plan editor doesn't work on linux?

    Hi there,
    When I attempt to create a task plan on linux (ubuntu 6.10), the task plan editor does not display.
    A look at the eclipse log reveals that it can't find a 'cairo' graphics library (see log extract below).
    The task plan can still be viewed in XML format but not in the task plan editor.
    Anyone know how to resolve this?
    hopefully the task plan editor doesn't only work on windows?!
    !ENTRY org.eclipse.ui 4 0 2007-09-15 01:23:48.513
    !MESSAGE Unable to load graphics library [Cairo is required] (java.lang.NoClassDefFoundError)
    !STACK 0
    org.eclipse.swt.SWTException: Unable to load graphics library [Cairo is required] (java.lang.NoClassDefFoundError)
    at org.eclipse.swt.SWT.error(SWT.java:2942)
    at org.eclipse.swt.graphics.Device.checkCairo(Device.java:154)
    at org.eclipse.swt.graphics.GC.initCairo(GC.java:2268)
    at org.eclipse.swt.graphics.GC.setAntialias(GC.java:2475)
    at org.eclipse.draw2d.SWTGraphics.reconcileHints(SWTGraphics.java:795)

    the permissions for your Library folder are defective.
    Lauch OSX "Disk Utility"  and repair the permissions, reboot and it should work again.

  • How do I get the Linux version of Firefox to allow me to download mp3 files instead of playing them in Firefox (the windoze solution doesn't work for Linux)?

    I've tried to modify a couple of "media" settings in about:config, but it still plays mp3s instead of allowing me to save them. In applications, mp3 audio is set to "Always ask".

    Did this behavior change after an update, or has it continued for several Firefox versions?
    Is there a visible player? If so, can you right-click it and see whether you get a plugin menu or a standard Firefox context menu?
    For some plugins, there is a separate configuration dialog to indicate which kinds of content they will handle (I recall QuickTime having such a dialog).

  • Process.exec() doesn't work on linux

    I am running an executable on linux machine using
    Runtime rt = Runtime.getRuntime();
    p = rt.exec(comm);
    where cmd is as below:
    local cmd:"/home/spolavar/Lmeasure/LM.exe" "/home/spolavar/Lmeasure/Lmin.txt"
    but i get the following error. why should there be an IOException?
    the path is correct and the executable is very much in that location.
    If i run the command directly on the terminal i get the result without any problem.
    i am not understanding where is the problem?
    however, it use to work fine before.
    java.io.IOException: java.io.IOException: "/home/spolavar/Lmeasure/LM.exe": not found
    at java.lang.UNIXProcess.<init>(UNIXProcess.java:143)
    at java.lang.Runtime.execInternal(Native Method)
    at java.lang.Runtime.exec(Runtime.java:566)
    at java.lang.Runtime.exec(Runtime.java:428)
    at java.lang.Runtime.exec(Runtime.java:364)
    at java.lang.Runtime.exec(Runtime.java:326)
    at Lmeasure.gui.ExecuteLocalLMImpl.execLM(ExecuteLocalLMImpl.java:264)
    at Lmeasure.gui.ExecuteLocalLMImpl.run(ExecuteLocalLMImpl.java:167)
    at Lmeasure.gui.LMManagerImpl.run(LMManagerImpl.java:36)
    Thanks
    Sri

    FYI this works fine on windows...
    my code is below if anyone is interested:
    import java.lang.Runtime;
    import java.lang.Process;
    import java.io.*;
    public class ExecuteFile{
            public static void main (String []  args){
                    String [] arg1 = {"/usr/bin/mysql -ppassword -e 'source /root/misc_applications/temp.sql'"};
                    cmd(arg1);
            public static void cmd (String [] args){
                    for(int i=0; i<args.length; i++){
                            try{
                                    Runtime rdb = Runtime.getRuntime();
                                    Process pdb = rdb.exec(args);
    System.out.println(args[i]);
    BufferedReader in = new BufferedReader(new InputStreamReader(pdb.getInputStream()));
    String output = null;
    while((output = in.readLine())!= null)
    System.out.println(output);
    BufferedReader errin = new BufferedReader(new InputStreamReader(pdb.getErrorStream()));
    String errtext = null;
    output = null;
    while((output = in.readLine())!= null)
    errtext += output;
    if(errtext != null)
    throw new IOException(errtext);
    }catch(IOException ioe){ioe.printStackTrace();}

  • Oracle JDBC OCI doesn't work on Linux

    Hi,
    I'm using Oracle on Linux(RH6, kernel 2.2.13)
    Oracle works fine.
    JDBC Thin driver -OK!
    But java receives SIGSEV when I'm using JDBC OCI. More specific, it seems to be a problem with the so library associated to this driver, cause this SIGSEV happens in a native method.
    Help?

    Have you posted this question to the JDBC/SQLJ Users group on Technet.
    This is a JSP users group.

  • Fullscreen application doesn't work in linux

    hi all
    i have written an full screen application which is working fine in windows, nut it is not working in Linux
    thanks

    You can't depend on full screen exclusive mode in java. They state quite clearly that its avail could be thwarted by something as variable as the video card not supporting it. which means that it may not work under windows even.
    Sean

  • DnD + Applet + Mozilla doesn't work on Linux

    hello!
    I have a Java Applet which use DnD.
    When i run it in Internet Explorer it runs fine....
    But when i try it in Mozilla (Linux), the DnD refuse to work... :(
    Help anyone???

    more info:
    OS: RedHat LInux ver. 9.0
    WM: Gnome 2.2.0
    Mozilla: 1.7.2
    java version 1.4.1 blackdown-linux
    the exception we (sometimes) get when trying to drag is "InvalidDnDOperationException: Drag and Drop in progress" (once again, the same code works perfectly in windows).

  • Error while creating my first  project on SP15 and why Help doesn't work?

    Hello sdnrs,
    I have a fresh SP15 installtion.
    I have 2 problems creating my first webdynpro project.
    1.When I go to file-new-project-webdynpro->(enter name)->next ,  I have windows poped up with the following error:
    Plug in name: Web Dynpro Archive Builder
    Plug in id: com.sap.ide.webdynpro.archivebuilder
    class: com.sap.ide.webdynpro.archivebuilder.project.WebDynproStandaloneProjectWizard
    Method: createJavaProject(IProject, IProgressMonitor)
    Message: Problems encountered while setting project description.
    Exeption: org.eclipse.core.runtime.CoreException: Problems encountered while setting project description.
    I am frustrated cause I can't do any step futher...! Is there any special settings on the SDK, Window-Preferences, etc?
    2.My Help doesn't work at all - it used to be (with SP11 slim) when i go - 'Help-SAP was docum-SAP webdynpro appl ' and I had my help window poped up.Now I dont have anything!
    Thank you much in advance!
    Bob

    For your information there's another solution if you don't wanna reinstall your NDS or if the reinstallaion doesn't work.
    The error is in the resources so you have to replace some plugin resources to correct the error. Because of that you need access to the resources from somewhere else.
    1. Go to c:\Documents and Settings\"username"\Documents\SAP\workspace\.metadata\.plugins and replace org.eclipse.core.resources with a "working" resource
    2. Go to C:\Program Files\SAP\JDT\eclipse\plugins and replace org.eclipse.core.resources.win32_2.1.0 and org.eclipse.core.resources_2.1.1 with a "working" resource.
    Restart NDS and it ought to work
    Best regards,
    Ole Mose

Maybe you are looking for

  • Restore old iMessage chat contents after OS X reinstall?

    Last night I had to do a wipe of my MacBook Pro running Mountain Lion. At the end of the installer I chose to migrate all my old apps/data/settings back onto the machine from a recent Time Machine backup. Everything transferred over correctly with th

  • Javac won't work

    Hi, I downloaded the jdk 1.5.0-05. This is the developers kit. I was under the impression that this kit has javac from compiling. However, whenever I type javac I get this message: 'javac' is not recognized as an internal or external command, operabl

  • PO no check in a Sales Order

    Hello All, I've a Sales Order, for the doc type, I've activated the PO check/duplicate PO check in VOV8. However, does the sys check this PO no we enter in the SO, against something? Does it have to do anything about the Sold to Party we use while cr

  • How do I delete an audiobook so that I can have to space to download another book?

    How do I delete an audiobook so that I can have the space to download another book?

  • HT5449 Enhanced Dictation Error: Capitalizes word after a comma.

    Enhanced dictation is not as accurate as dictation.  The MOST annoying issue for me, is that it often capitalizes the word after a comma!  I do not know how this is possible since this is a simple grammatical rule.  Sentences do not end with commas.