LSI1030 scsi adapter does not work under solaris 10 on t5240 sparc server

hi all,
i have following LSI1030 scsi pci-x card in t5240 server with solaris 10u8 ..
## prtpicl -v ## director's cut
                         LSILogic,scsi (scsi-2, ad0000061e)
                          :DeviceID      0x8
                          :UnitAddress   8
                          :vendor-id     0x1000
                          :device-id     0x30
                          :revision-id   0xc1
                          :subsystem-vendor-id   0x103c
                          :subsystem-id  0x322a
                          :class-code    0x10000
                          :cache-line-size       0x10
                          :interrupts    00  00  00  01
                          :min-grant     0x10
                          :max-latency   0x6
                          :latency-timer         0x40
                          :devsel-speed  0x1
                          :66mhz-capable
                          :fcode-rom-offset      0xa800
                          :device_type   scsi-2
                          :wide  0x10
                          :version       1.00.38
                          :reg
00  07  40  00  00  00  00  00  00  00  00  00  00  00  00  00  00  00  00  00
01  07  40  10  00  00  00  00  00  00  00  00  00  00  00  00  00  00  01  00
03  07  40  14  00  00  00  00  00  00  00  00  00  00  00  00  00  02  00  00
03  07  40  1c  00  00  00  00  00  00  00  00  00  00  00  00  00  02  00  00
02  07  40  30  00  00  00  00  00  00  00  00  00  00  00  00  00  10  00  00
                          :model         LSI,1030
                          :compatible    pci103c,30
                          :assigned-addresses
81  07  40  10  00  00  00  00  00  00  10  00  00  00  00  00  00  00  01  00
82  07  40  14  00  00  00  00  05  20  00  00  00  00  00  00  00  02  00  00
82  07  40  1c  00  00  00  00  05  22  00  00  00  00  00  00  00  02  00  00
82  07  40  30  00  00  00  00  05  30  00  00  00  00  00  00  00  10  00  00
                          :mpt-version   1.02
                          :firmware-version      1.03.39.00
                          :devfs-path    /pci@500/pci@0/pci@c/pci@0/LSILogic,scsi
                          :binding-name  LSILogic,scsi
                          :instance      -1
                          :_class        scsi-2
                          :name  LSILogic,scsi
## prtdiag -v # director's cut
MB                lsilOGICLSILogic,scsi                     LSI,1030
                        /pci@500/pci@0/pci@c/pci@0/LSILogic,scsi
## prtconf -v # director's cut
                    LSILogic,scsi (driver not attached)
                        tape (driver not attached)
                        disk (driver not attached)
{0} ok probe-scsi-all
/pci@500/pci@0/pci@c/pci@0/LSILogic,scsi@8
MPT Version 1.02, Firmware Version 1.03.39.00
Initiator ID is 7
Target 3
  Unit 0   Removable Tape     HP      Ultrium 2-SCSI  S63Di am unable to run this controller under solaris 10, is it even possible ??
regards, daniel
ps. i did reconfigure reboot and tried to tweak a mpt driver by hand, i also checked a patches for mpt driver ..

# prtconf -v | grep LSI
                    LSILogic,scsi, instance #0
                                dev_path=/pci@500/pci@0/pci@c/pci@0/LSILogic,scsi@8:devctl
                                dev_path=/pci@500/pci@0/pci@c/pci@0/LSILogic,scsi@8:scsi
# cfgadm -lv c2
Ap_Id                          Receptacle   Occupant     Condition  Information
When         Type         Busy     Phys_Id
c2                             connected    unconfigured unknown
unavailable  scsi-bus     n        /devices/pci@500/pci@0/pci@c/pci@0/LSILogic,scsi@8:scsi
# iostat -En ## cut
rmt/0            Soft Errors: 0 Hard Errors: 0 Transport Errors: 0
Vendor: HP       Product: Ultrium 2-SCSI   Revision: S63D Serial No:thanks, resolved .. i added this device (mpt "pci103c,30") in /etc/driver_aliases
regards

Similar Messages

  • Gpib-enet v1.3 does not work under Solaris 8

    Recently I have updated my Sparc-workstation from solaris 7 to Solaris 8. I have installed GPIB-ENET version 1.3. Wenn I started ibic->ibfind gpib1, an error ENEB appeared. The gpib even did not respond to ping. After reset the gpib, it can respond to ping, but the ibic did not work.

    Referring to http://www.ni.com/support/gpib/versions.htm#sun you need the driver version 1.4

  • D-Link 562M modem does not works in Solaris 10 (?)

    I use D-Link 562M external USB 56K modem. Modem works in Windows but does not works in Solaris 10 (?). Help me!

    pat.gibbons wrote:
    Not supported yet but will be in a future Solaris Express release.Many USB modems are not really modems but the entire signal processing is done by the host computer. Such "winmodems" require signal processing software which is quite complex. I do not think that such modems are supported in the following versions of Solaris.
    If the 562M is NOT such a modem (but a "real" one) it should be quite easy to adapt a driver to work with this modem.
    Martin

  • Swedish chars ��� not working under Solaris

    Hi All,
    I created the following little code and it is not working under Solaris 7, JDK1.4.1_01. (also tested some other but does not work)
    public class HelloSweden
    public static void main(String [] args)
    String newName="���";
    String charsetName = "iso-8859-2";
    byte [] s = {(byte)229, (byte)228, (byte)246};
    try
    newName = new String(s, 0, s.length, charsetName);
    catch ( java.io.UnsupportedEncodingException e )
    System.err.println(e.getMessage());
    e.printStackTrace();
    System.out.println("new name is: "+newName);
    for(int i=0; i<newName.getBytes().length; i++)
    System.out.println(i+"."+":"+newName.getBytes());
    The problem is that on Solaris 7 the output is:
    new name is: ???
    0.:63
    1.:63
    2.:63
    Whereas on Linux it works fine:
    new name is: ���
    0.:-27
    1.:-28
    2.:-10
    I also tried the "javac -encoding iso8859-1" option but no use.
    Could anybody help?
    Thnx,
    GF

    I also tried the "javac -encoding iso8859-1" option
    but no use.
    Was the output exactly the same or were the numbers correct, at least?
    You may need to compile with:
    javac -encoding ISO-8859-1 ClassName.java
    and then run with:
    java -Dfile.encoding=ISO-8859-1 ClassName
    You can set the character encoding explicitely like that. The character encoding depends on locale settings; if you set LC_ALL to a Swedish locale ("sv_SE"?) javac and java should start using the correct encodings automatically.

  • Flash player does not work under one user account.

    Flash player does not work under one of my user accounts.
    My system: I work with a mac mini with Mac OS X 10.6.8.
    What I have done:
    I installed the flash player maybe one year ago under my "first" user account. At that time this user account had had administrator authorization. In the meantime I had to change this "first" user account in an account without administrator authorization and created an administrator user with which I installed different programms. Lately, the message came up that it would be necessary to update the flash player. I did it; under the "first" user account, but of course with the administrator's password for installing. The installation had been "successful" - so I was told. But it did not run. I tried it again and again. Each time with "deinstallation" first. No way; it did not work.
    After asking Adobe for the reason of the problem, they suggested to install the programm directly under the administrator user. I did that (of course after deinstalling under the "first" user account) with the result, that flash player runs under my administrator and my "second" user account, but not under the first user account. There I am always told to update my flash player.
    With this result, I talked to Adobe. So they told me to contact the producer of the operating software, since this would be a mistake of the operating software.
    And here I am - full of hope to get help from you.
    Thanks for reading. And thanks in advance for helping me.
    Nanny FS

    Any update to provide at all here guys?  Again, in my situation, it's very much rights-related as a standard user doesn't even report that the flash player exists when testing it on the Adobe Flash Version Detection website (despite it showing up in Control Panel and under Add/Remove Programs).  I've already tried giving the C:\Windows\System32\Macromed and files/subfolders appropriate permissions for the standard user and still nothing.  If I either give the user in question full local admin rights or logon as the domain admin, then the Adobe Flash Version Detection website says Flash is installed and Flash works fine.
    Thoughts???

  • Apple av adapter does not work after updating ios 5,01

    apple av adapter does not work after ios 5,01. no video on vga monitor. sound goes out on iphone 4 also.

    Thank you for your interest. Last night i tried again. It worked. there is still problem, so i could find out it that monitor is going to power saving mode then voice goes out and no view on monitor. I changed the power saving settings. And worked well. Thnx again.

  • Nautilus-open-terminal does NOT work under x86_64

    I found the latest nautilus-open-terminal v0.9-1
    http://aur.archlinux.org/packages.php?ID=5224
    does NOT work under x86_64!
    There was no open-terminal menu item in the context menu

    shaohao wrote:I found the latest nautilus-open-terminal v0.9-1
    http://aur.archlinux.org/packages.php?ID=5224
    does NOT work under x86_64!
    There was no open-terminal menu item in the context menu
    I've recompiled almost 40 days ago and i've had no problem at all.
    Have you tried logging out before trying?

  • JCombox does not work under linux (fedora) could you help me???

    Hi All,
    I am implementing a GUI for a linux application. This GUI works fine under windows system. But the JCombobox does not work under Linux system. Would you help me to solve it? Thank you very much!..
    The problem is that I cannot select any other item except the first item in the dropdown box of JCombobox. There is no event generated when I click the combobox, while events are generated for other Buttons.
    This problem exists for the following code when I maximize the window. When the window is minimize to some extend in my problem, it is OK.
    Here is the simplify code:
    import java.awt.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.io.Serializable;
    import java.util.Vector;
    import javax.swing.ComboBoxModel;
    import javax.swing.JComboBox;
    import javax.swing.JFrame;
    import javax.swing.event.ListDataEvent;
    import javax.swing.event.PopupMenuEvent;
    import javax.swing.event.PopupMenuListener;
    import java.awt.event.*;
    import javax.swing.*;
    //carmen
    import javax.swing.filechooser.*;
    import javax.swing.event.*;
    import javax.swing.Box;
    import javax.swing.BoxLayout;
    import javax.swing.border.*;
    //import AlwaysSelectableComboBoxDemo.AlwaysSelectableComboBox;
    //import AlwaysSelectableComboBoxDemo.AlwaysSelectableComboBox;
    import java.io.*;
    import java.util.*;
    import java.lang.String.*;
    public class Test extends JFrame
         private JComboBox jComboBox1;
         private JComboBox jComboBox2;
         private JPanel contentPane;
         private JTabbedPane jTabbedPane1;
         //Main Tab
         private JPanel Main;
         private JPanel OutputSimSet;
         private JPanel Test;
         private JPanel ScriptGenTab;
         private JPanel ResultTab;
    //Result Tab
    private JPanel SimResult;
         public Test()
              super();
              //initializeComponent();
              contentPane = (JPanel)this.getContentPane();
              jTabbedPane1 = new JTabbedPane();
              Main = new JPanel();
              OutputSimSet = new JPanel();
              Test = new JPanel();
              ScriptGenTab = new JPanel();
              ResultTab = new JPanel();
              SimResult = new JPanel();
         jComboBox1 = new JComboBox(
                        new String[]{"Item 1","Item 2", "Item 3"});
                        jComboBox1.addActionListener(new ActionListener() {
                        public void actionPerformed(ActionEvent ae) {
                        System.out.println("Yeah");
         jComboBox2 = new JComboBox(
                                  new String[]{"Item 1","Item 2", "Item 3"});
                                  jComboBox2.addActionListener(new ActionListener() {
                                  public void actionPerformed(ActionEvent ae) {
                                  System.out.println("Yeah");
              // jTabbedPane1
              jTabbedPane1.addTab("Main", Main);
              jTabbedPane1.addTab("ScriptGenerator", ScriptGenTab);
              jTabbedPane1.addTab("Simulation Result", ResultTab);
              jTabbedPane1.addChangeListener(new ChangeListener() {
                   public void stateChanged(ChangeEvent e)
                        jTabbedPane1_stateChanged(e);
              // contentPane
              contentPane.setLayout(new BorderLayout(0, 0));
              contentPane.add(jTabbedPane1, BorderLayout.CENTER);
              // Main
              //Main.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
              Main.setLayout(new BorderLayout(0, 0));
              Main.add(OutputSimSet,BorderLayout.NORTH);
              OutputSimSet.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
              OutputSimSet.add(Test, 0);
              Test.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
              Test.add(jComboBox1,0);
              //ResultTab
              ResultTab.setLayout(new BorderLayout(0, 0));
              ResultTab.setBorder(new TitledBorder(""));
              ResultTab.add(SimResult, BorderLayout.NORTH);
              SimResult.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
              SimResult.add(jComboBox2,0);
              // Test
              this.setTitle("Test");
              this.setLocation(new Point(0, 0));
              this.setSize(new Dimension(600, 500));
              this.setVisible(true);
         public void initializeComponent()
         /** Add Component Without a Layout Manager (Absolute Positioning) */
         private void addComponent(Container container,Component c,int x,int y,int width,int height)
              c.setBounds(x,y,width,height);
              container.add(c);
         // TODO: Add any appropriate code in the following Event Handling Methods
         private void jTabbedPane1_stateChanged(ChangeEvent e)
              System.out.println("\njTabbedPane1_stateChanged(ChangeEvent e) called.");
              // TODO: Add any handling code here
         // TODO: Add any method code to meet your needs in the following area
         // TODO: Add any appropriate code in the following Event Handling Methods
         private void jComboBox1_actionPerformed(ActionEvent e)
              System.out.println("\njComboBox1_actionPerformed(ActionEvent e) called.");
              Object o = jComboBox1.getSelectedItem();
              System.out.println(">>" + ((o==null)? "null" : o.toString()) + " is selected.");
              // TODO: Add any handling code here for the particular object being selected
    * Create the GUI and show it. For thread safety,
    * this method should be invoked from the
    * event-dispatching thread.
    private static void createAndShowGUI() {
    //Create and set up the window.
    Test frame = new Test();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.pack();
    frame.setVisible(true);
    public static void main(String[] args) {
    //Schedule a job for the event-dispatching thread:
    //creating and showing this application's GUI.
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    createAndShowGUI();
    }

    package oct03_JCBox;
    import java.awt.BorderLayout;
    import java.awt.Component;
    import java.awt.Container;
    import java.awt.Dimension;
    import java.awt.FlowLayout;
    import java.awt.Point;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JComboBox;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JTabbedPane;
    import javax.swing.event.ChangeEvent;
    import javax.swing.event.ChangeListener;
    public class Test extends JFrame
    private JComboBox jComboBox1;
    private JComboBox jComboBox2;
    private JPanel contentPane;
    private JTabbedPane jTabbedPane1;
    //Main Tab
    private JPanel Main;
    //private JPanel OutputSimSet;
    //private JPanel Test;
    private JPanel ScriptGenTab;
    private JPanel ResultTab;
    //Result Tab
    //private JPanel SimResult;
    public Test()
         super();
         //initializeComponent();
         contentPane = (JPanel)this.getContentPane();
         jTabbedPane1 = new JTabbedPane();
         Main = new JPanel();
         ScriptGenTab = new JPanel();
         ResultTab = new JPanel();
    //     OutputSimSet = new JPanel();
    //     Test = new JPanel();
    //     SimResult = new JPanel();
         jComboBox1 = new JComboBox(
         new String[]{"Item 1","Item 2", "Item 3"});
         jComboBox1.addActionListener(new ActionListener() {
         public void actionPerformed(ActionEvent ae) {
              System.out.println("Yeah");
         jComboBox2 = new JComboBox(
         new String[]{"Item 1","Item 2", "Item 3"});
         jComboBox2.addActionListener(new ActionListener() {
              public void actionPerformed(ActionEvent ae) {
                   System.out.println("Yeah");
         // Main
         //Main.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
         Main.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
         Main.add(jComboBox1);
         //ResultTab  -----     
         ResultTab.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
         ResultTab.add(jComboBox2);
        //      jTabbedPane1
         jTabbedPane1.addTab("Main", Main);
         jTabbedPane1.addTab("ScriptGenerator", ScriptGenTab);
         jTabbedPane1.addTab("Simulation Result", ResultTab);
         jTabbedPane1.addChangeListener(new ChangeListener() {
              public void stateChanged(ChangeEvent e)
                   jTabbedPane1_stateChanged(e);
         // contentPane
         contentPane.setLayout(new BorderLayout(0, 0));
         contentPane.add(jTabbedPane1, BorderLayout.CENTER);
         // Test
         this.setTitle("Test");
         this.setLocation(new Point(0, 0));
         this.setSize(new Dimension(600, 500));
         this.setVisible(true);
         public void initializeComponent()
    //     /** Add Component Without a Layout Manager (Absolute Positioning) */
    //     private void addComponent(Container container,Component c,int x,int y,int width,int height)
    //     c.setBounds(x,y,width,height);
    //     container.add(c);
         // TODO: Add any appropriate code in the following Event Handling Methods
         private void jTabbedPane1_stateChanged(ChangeEvent e)
         System.out.println("\njTabbedPane1_stateChanged(ChangeEvent e) called.");
         // TODO: Add any handling code here
         // TODO: Add any method code to meet your needs in the following area
         // TODO: Add any appropriate code in the following Event Handling Methods
    //     private void jComboBox1_actionPerformed(ActionEvent e)
    //     System.out.println("\njComboBox1_actionPerformed(ActionEvent e) called.");
    //     Object o = jComboBox1.getSelectedItem();
    //     System.out.println(">>" + ((o==null)? "null" : o.toString()) + " is selected.");
    //     // TODO: Add any handling code here for the particular object being selected
         * Create the GUI and show it. For thread safety,
         * this method should be invoked from the
         * event-dispatching thread.
         private static void createAndShowGUI() {
         //Create and set up the window.
         Test frame = new Test();
         frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         frame.pack();
         frame.setVisible(true);
    public static void main(String[] args) {
         //Schedule a job for the event-dispatching thread:
         //creating and showing this application's GUI.
         javax.swing.SwingUtilities.invokeLater(new Runnable() {
         public void run() {
         createAndShowGUI();
    } Try this - you use too many unnecessary JPanels.
    Which way you prefer with actionPerformed should work either way.
    I think your problem was too many unnecessary Panels and set all attributes before it is added, perhaps,
    not add the panel first and then try to set attributes like layout, color, etc...

  • [svn:cairngorm3:] 21174: Landmark does not work under complex situations

    Revision: 21174
    Revision: 21174
    Author:   [email protected]
    Date:     2011-04-29 11:21:00 -0700 (Fri, 29 Apr 2011)
    Log Message:
    Landmark does not work under complex situations
    https://bugs.adobe.com/jira/browse/CGM-39
    Ticket Links:
        http://bugs.adobe.com/jira/browse/CGM-39
    Modified Paths:
        cairngorm3/trunk/libraries/Navigation/src/com/adobe/cairngorm/navigation/core/EnterAndExi tInvoker.as
        cairngorm3/trunk/libraries/Navigation/src/com/adobe/cairngorm/navigation/waypoint/Waypoin tHandler.as

    Hi John,
    1) I like that the new model adds parameterization. It's cleaner than pulling in parameters from pre-set variables. However, the given example didn't actually make much use of it. The only non-constant parameter multiply-used in the example is the "table" variable. Seems like a lot of work for not a lot of gain, at least in this case?
    2) I am cautious that this new template/model condenses the paradigm sooo much, that it is no longer clear where XPath is involved vs straight constant tag names. Yes, Adobe's example is overly-expanded but that's common in code meant to be a demonstration.
    3) I also am cautious that the example intermingles direct node creation into the XPath search/processing chain. I've learned to be VERY careful with this. It only can work when the changes made do not interfere with the rule processing. In my model, I simply avoid it completely (by not making node-position or node-add/remove/move changes until after tree parsing is complete.) This will always be a safe model.
    Bottom line: while I very much appreciate the parameterization and lintability (is that a word? Sure makes sense to me )... I think I would still define each rule separately rather than bring them all together as an inline array in the rule processing call. To me it seems sooo condensed that the XPath meaning can become lost. (Would someone recognize that //para/section-head is actually an XPath statement that could (in another situation) be //para/* or //para/following-siblings::* ... while some of the other strings are exact-match tag names?)
    I realize this is all a matter of style... my preference: clarity for the future reader, particularly when the future reader is me a year later who forgot what all those parameters and embedded methods were all about ...
    Blessings,
    Pete

  • Canon ScanLide 20 does not work under Snowleopard

    I have a Canon ScanLide 20 USB and on the official Canon web site, the driver are not available for Mac OS X 10.6. I finished the complete passage to mac last month with an iMac 21,5" following a Macbook 13,1 unibody, now I am a fully Apple, but now I have some problem with this scanner, the problem with HP laserjet solved reading this forum.
    please help me, I download the driver dor MAC OS X 10.4 and canon scantool box run but not perfectly, and the plug in does not work.
    How can I solve this problem? who have some ideas?
    Thanks in advance for support!
    Stè

    Hello
    My first guess is that an undocumented yet siginifcant change made in 10.6 betrayed your code in open handler.
    Try replacing your open handler with this :
    on open my_files
    repeat with f in my_files
    set f's contents to f as alias
    end repeat
    -- orginal code in open handler here
    end open
    *Replacement code has three-line repeat block at the beginning of open handler to gurantee the received list - my_files - to be an alias list.
    If this change fix the problem, it should be Apple's fault to have let your script fail under new OS.
    (Under every Mac OS prior to 10.6, open handler receives a list of alias object(s) from droplet mechanism, whereas under 10.6, it receives a list of some «class bmrk» object(s) of which details have not been documented (as far as I know). And in certain aspects, «class bmrk» object and alias object behave differently, which can break existing script's functionality.)
    cf.
    Topic : Leopard to Snow Leopard problem
    http://discussions.apple.com/thread.jspa?threadID=2204130
    Good luck,
    H

  • html:link action="" input type="button"... does not work under IE browser

    Greeting,
    I have the following codes in struts1.3.5. It works fine under Firefox, but it does not work at all under Internet Explore (IT) at all. Any clues why under IE it does not work?
    <html:link action="/private/search">
    <input
    type="button"
    value="Search"
    class="search-button">
    </html:link>
    Thanks a lot!

    This would probably generate a HTML in which there will be a button inside anchor tag.
    This is not a standard HTML feature and no wonder this is not supported by IE. I copied the generated html codes into test.html to try on IE, the button does not work at all.
    Firefox is probably lenient here. True. test.html works in Firefox.
    You might want to just have a link or do a form submission on button click.The action designed does not need an actionForm. I updated my code to :<html:button onclick="location.href='processSearch'"
    property ="Search"
    value ="Search">
    </html:button>
    And now both Firefox & IE works fine.
    Thanks a lot!

  • Russell Brown " Image Processor Pro " does not work under CC

    I just switched from Photoshop CS 6 to CC and use Russell Brown "Image Processor Pro". Unfortunately does not work that under CC. I also want to install the fix but we probably only applied to CS6.
    Does anyone have a solution to the problem.
    Here the German error message: https://dl.dropboxusercontent.com/u/12684660/CC_IPP.jpg
    Post translated with google Translater from the German.

    I installed Image Processor Pro quite some time ago. I extracted the extension package and just copied the two files "Image Processor Pro.xml" and "Image Processor Pro.jsx" into Photoshop's versions Presets\Scripts. I normally install things I add to Photoshop into my own folders outside any Adobe installation folder.   Image Processor Pro  is an exception because I did not want to modify X's code.  Image Processor Pro is coded in a way to find which version of Photoshop is being run from and looks for its default xml file in that version Presets\scripts\ folder.
    The script may save your modficaions to its defalt xml file into you user ID application data areas. And you can save you own Image Processor Pro presets configurations.
    I run Windows not Mac though.

  • MailInfo does not work under Y-OS X

    Under the new Yosemite, MailInfo (to see new mail, etc), does not work. Does not open.
    Any free substitute to do the same job?
    Thanks for your help.
    Cheers.

    Thank You!
    In my case (SFR- ALCATELL modem X220D)
    http://www.alcatel-mobilephones.com/global/content/view/full/21572
    Installation of new 64 bit driver helped.
    See documentation rared width for istruction.

  • Getting input from mouse-wheel: does not work under windows/IE

    Hi
    I have built an applet that extends JApplet. To it I have added a class that extends JPanel implements MouseListener, MouseWheelListener, MouseMotionListener.
    I collect input using the method
    public void mouseWheelMoved(MouseWheelEvent e){
    do stuff...
    I have build this on a mac and tested it in firefox and it works fine. But on xp/vista internet explorer, the applet does not respond to mousewheel input. On mac osx /safari it does not work either.
    Is there any solution to this problem?
    Best regards, Carlis.

    Just for luck, try setting the JPanel focusable.panel.setFocusable(true);If that doesn't make a difference, you need to post a [_Short, Self Contained, Compilable and Executable, Example Program (SSCCE)_|http://mindprod.com/jgloss/sscce.html] that clearly demonstrates your problem.
    db

  • Java.io.File renameTo does not work on Solaris

    Hi Experts,
    I have a code-piece which tries to move files from one directory to another on the SAME FILE SYSTEM using java.io.File.renameTo method.
    It works fine when there less no. of files in the source directory. But the renameTo does not work as expected when there are very huge no. of files(~40K) present in the source directory.
    I am aware that there is a known issue when one tries to use this method to move files across file systems OR if the file exists at the destination directory.
    But in my case the file system is the same and the there is no such file in the destination directory.
    I suspect some inode related issues. But not sure what it is exactly.
    Is there any limitations of renameTo?
    Please help.

    OK, we all now understand you have a problem in doing this, but without the specifics of the problem that you are experiencing, then it is fairly difficult to give you anything other than a guess. If you would like some specific and relevent answers, please supply specifics about how exactly the operation differs from your expected results. You should also post example code as it is almost always asked for eventually.

Maybe you are looking for