@Interceptors annotations don't work in method defined in generic classes

Hello,
I try to port a JBoss application to Weblogic 10.3 but I have a problem:
I have a generic dao which is inherited in a hundred of EJB3 session stateless.
@Interceptors defined in methods in this abstract class are not called while it works very well under jboss.
This is an example:
public abstract class GenericDAO<T extends BaseEntity> implements GenericDAO<T>
     @PersistenceContext(unitName = "OntomanticsMetierPU")
     protected EntityManager     em;
     @Interceptors( { VOCachePersistInterceptor.class }) // FIXME: NOT called with weblogic
     public void makePersistent(final T entity)
          this.em.persist(entity);
Have you any ideas?

Maybe you must implement your annotations in other way
[http://edocs.bea.com/wls/docs103/ejb30/annotations.html#wp1428539]

Similar Messages

  • How to call methods defined in another class ? is it possible?

    Hi all,
    I am new to using JNI, was wondering if this is possible and how I might be able to do this. I'm trying to call some set/get functions defined in a class that is not part of the class where I have my native code defined and called...
    Let me explain a bit, I have a class JobElement (singular Job) that stores all the data associated with a Job, such as job name, job id, etc.
    Another class JobsElement (plural Jobs) contains all the Jobs that are currently running.
    The code is set up something like this...
    class JobElement {
         String jobID;
         String jobName;
         public void setJobId(String newJobID) { jobID = newJobID; }
         public void setJobName(String newJobName) { jobName = newJobName; }
    class JobsElement {
         Date timeDateStamp;
         JobElement job;
    class AppRoot {
         JobsElement allJobs = null;
         JobElement _currentJob = null;
         public native getAllJobs();
    }In my native method, getAllJobs(), I essentially want to call the set functions that are defined for JobElement when filling in the information of the Job. (then finally add the JobElement to the JobsElement list)
    In summary, I basically want to know if it's possible to call the equivilent of this java code from the native code??
         _currentJob.setJobName(newJob)
    In the native code I tried to find the setJobID method but got a NoSuchMethodError. (which is what I expected)
    Thanks in advance.

    Hi,
    In your getAllJobs(), the JNI Equiv would be JNIEnv_ClassName_getAllJobs(JNIEnv** anEnv, jobject jAppRootobj)
    Since you are calling the AppRoot object's method, the jobj in the native method call will be jAppRootobj-AppRoot's instance.
    What you can do is
    Get the field id of _currentJob.
    Get the <jobject-value of currentJob> of JobElement i.e. currentJob.
    Then get the method ids of setJobID and setJobName.
    Call these non-static methods on <jobject-value of _currentJob> to set the values.
    I hope I made a try to help you. Please correct me if I am wrong.

  • Why calendar don't work ?!!

    i start learning java last week , so any one can help and tell me why this program don't work
    import java.util.*;
    public class Calendar
    public static void main(String[] args)
         GregorianCalendar d= new GregorianCalendar();
         int today = d.get(Calendar.DAY_OF_MONTH);
         int month = d.get(Calendar.MONTH);
         d.set(Calendar.DAY_OF_MONTH, 1);
         int weekday = d.get(Calendar.DAY_OF_WEEK);     
         System.out.println("Sun Mon Tue Wed Thu Fri Sat");
         for (int i=Calendar.SUNDAY; i<weekday; i++)
         System.out.print(" ");
         do
         int day = d.get(Calendar.DAY_OF_MONTH);
         if (day<10) System.out.print(" ");
         System.out.print(day);
         if (day==today)
              System.out.print("* ");
         else
              System.out.print(" ");
         if (weekday==Calendar.SATURDAY) System.out.println();
         d.add(Calendar.DAY_OF_MONTH, 1);
         weekday = d.get(Calender.DAY_OF_WEEK);
         while (d.get(Calendar.MONTH)==month);
    }

    The class name "Calendar" is already used by Java.
    Rename your class "MyCalendar" or something else and it almost all works.
    Near the end of your code, you misspelled "Calendar" (you typed "Calender").
    After making those two changes, your code compiled and ran for me.
    Good luck!

  • I have installed both Audition 3 and Photoshop CS3 on a laptop with no Internet connection. How may they be activated? The methods documented in the software don't work.

    I have installed both Audition 3 and Photoshop CS3 on a laptop with no Internet connection. How may they be activated? The methods documented in the software don't work.

    Ned, thanks for responding. Internet access is not the problem, I will have a tower computer connected to Comcast.
    Isolating the laptop  from the internet is the issue.
          From: Ned Murphy <[email protected]>
    To: Mordecai benHerschel <[email protected]>
    Sent: Wednesday, March 18, 2015 7:27 PM
    Subject:  I have installed both Audition 3 and Photoshop CS3 on a laptop with no Internet connection. How may they be activated? The methods documented in the software don't work.
    I have installed both Audition 3 and Photoshop CS3 on a laptop with no Internet connection. How may they be activated? The methods documented in the software don't work.
    created by Ned Murphy in Downloading, Installing, Setting Up - View the full discussionSince it is a portable machine, couldn't you go somewhere that has wifi available and use that as a temporary internet connection? If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7314414#7314414 and clicking ‘Correct’ below the answer Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7314414#7314414 To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"  Start a new discussion in Downloading, Installing, Setting Up by email or at Adobe Community For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • Vector Methods Don't Work After Deserialization

    I was able to add JavaBeans that encapsulate information about films to a Vector, then serialize the Vector. I then deserialized the Vector and extracted the the details of each film. However when I go to use methods of the Vector class on the deserialized Vector, they don't work. I would like to be able to remove any film title in the Vector.
        try {
          FileInputStream file = new FileInputStream("FilmVector.ser");
          ObjectInputStream obInputStream = new ObjectInputStream(file);
          container = (Vector)obInputStream.readObject();
            NUM_FILMS = container.size();
              Iterator it = container.iterator();
              while(it.hasNext()) {
                FilmBean film = (FilmBean)it.next();
                  String name = (String)film.getName();
                   String genre = (String)film.getGenre();
                   int year = (int)film.getYear();
                   String year2 = String.valueOf(year);
                   int length = (int)film.getLength();
                   String length2 = String.valueOf(length);
                   double audio = (double)film.getAudio();
                   String audio2 = String.valueOf(audio); 
                   String actorname = film.getActorName();
                   nameLabel.setText("Titre du film: " + name);
                   genreLabel.setText("Cat�gorie: " + genre);
                   actorLabel.setText("Acteur: " + actorname); 
                   yearLabel.setText("Ann�e: " + year2);
                   lengthLabel.setText("Dur�e: " + length +" Minutes");
                   audioLabel.setText("Audio: " + audio2);
                   System.out.println(name +  " | "  + genre + ",   " + actorname + ",  Ann�e: " + year2 + ",  Dur�e: " +  length2  + "  Minutes,"  + "   "  + "Audio: " + audio2);
                   System.out.println("Nombre de films:  " + NUM_FILMS);       
         } catch (Exception ioex) { }
      init:
    deps-jar:
    compile-single:
    run-single:
    Monde Infernal | Horreur, Beckinsale, Kate, Ann�e: 2003, Dur�e: 121 Minutes, Audio: 5.1
    Vol du Phoenix | Aventure, Quaid, Dennis, Ann�e: 2004, Dur�e: 105 Minutes, Audio: 2.0
    Apocalypse Now | Drame, Brando, Marlon, Ann�e: 1979, Dur�e: 147 Minutes, Audio: 2.0
    Truman Show, The | Com�die, Jim Carrey, Ann�e: 1999, Dur�e: 103 Minutes, Audio: 2.0
    Assault On Precinct 13 | Action, Fishburne, Lawrence, Ann�e: 2005, Dur�e: 109 Minutes, Audio: 5.1
    Alexandre | Drame, Hopkins, Anthony, Ann�e: 2004, Dur�e: 82 Minutes, Audio: 5.1
    Punisher, The | Action, Travolta, John, Ann�e: 2004, Dur�e: 123 Minutes, Audio: 2.0
    Predator 2 | Science Fiction, Hall, Kevin Peter, Ann�e: 1990, Dur�e: 108 Minutes, Audio: 2.0
    G�n�ration Chucky | Horreur, Tilly, Jennifer, Ann�e: 2004, Dur�e: 87 Minutes, Audio: 5.1
    Control | Science Fiction, Liotta, Ray, Ann�e: 2004, Dur�e: 99 Minutes, Audio: 5.1
    I Know What You Did Last Summer | Horreur, Hewitt, Jennifer Love, Ann�e: 1997, Dur�e: 101 Minutes, Audio: 2.0
    Garfield, The Movie | Com�die, Hewitt, Jennifer Love, Ann�e: 2004, Dur�e: 80 Minutes, Audio: 2.0
    Blade 2 | Action, Snipes, Wesley, Ann�e: 2002, Dur�e: 117 Minutes, Audio: 2.0
    Blade 1 | Action, Snipes, Wesley, Ann�e: 1998, Dur�e: 120 Minutes, Audio: 2.0
    Village, Le | Drame, Walker, Ivy, Ann�e: 2004, Dur�e: 108 Minutes, Audio: 5.1
    XXX - L'�tat de L'union | Action, Ice Cube, Ann�e: 2005, Dur�e: 101 Minutes, Audio: 2.0
    XXX | Action, Diesel, Vin, Ann�e: 2002, Dur�e: 124 Minutes, Audio: 5.1
    Frankenstein, Mary Shelley's | Horreur, De Niro, Robert, Ann�e: 1994, Dur�e: 123 Minutes, Audio: 2.0
    Blues Brothers, The | Com�die, Belushi, John, Ann�e: 1980, Dur�e: 133 Minutes, Audio: 2.0
    Austin Powers: TheSpy Who Shagged Me | Com�die, Myers, Mike, Ann�e: 1999, Dur�e: 95 Minutes, Audio: 2.0
    Tomorrow Never Dies | Action, Brosnan, Pierce, Ann�e: 1997, Dur�e: 119 Minutes, Audio: 2.0
    Vaisseau Fant�me, Le | Horreur, Byrne, Gabriel, Ann�e: 2002, Dur�e: 90 Minutes, Audio: 5.1
    Tequila Sunrise | Action, Gibson, Mel, Ann�e: 1988, Dur�e: 115 Minutes, Audio: 2.0
    Terminator 3 | Action, Schwarzenegger, Arnold, Ann�e: 2003, Dur�e: 109 Minutes, Audio: 5.1
    Titanic | Drame, Di Caprio, Leonardo, Ann�e: 1997, Dur�e: 185 Minutes, Audio: 2.0
    Star Wars 2: Attack of The Clones | Science Fiction, McGregor, Ewan, Ann�e: 2002, Dur�e: 142 Minutes, Audio: 2.0
    Star Wars 4: A New Hope | Science Fiction, Hamill, Mark, Ann�e: 2004, Dur�e: 124 Minutes, Audio: 2.0
    Star Wars 5: The Empire Strikes Back | Science Fiction, Hamill, Mark, Ann�e: 1980, Dur�e: 127 Minutes, Audio: 2.0
    Star Wars 6: Return of The Jedi | Science Fiction, Hamill, Mark, Ann�e: 1983, Dur�e: 135 Minutes, Audio: 2.0
    S.W.A.T. | Action, Jackson, Samuel L., Ann�e: 2003, Dur�e: 117 Minutes, Audio: 5.1
    Street Fighter | Action, Van Damme, Jean-Claude, Ann�e: 1994, Dur�e: 101 Minutes, Audio: 2.0
    Sudden Death | Action, Van Damme, Jean-Claude, Ann�e: 1995, Dur�e: 110 Minutes, Audio: 2.0
    Sum of All Fears, The | Action, Afflek, Ben, Ann�e: 2002, Dur�e: 123 Minutes, Audio: 2.0
    Sur Le Seuil | Drame, Huard, Patrick, Ann�e: 2003, Dur�e: 99 Minutes, Audio: 5.1
    Kill Bill 1 | Action, Thurman, Uma, Ann�e: 2003, Dur�e: 110 Minutes, Audio: 5.1
    Private Parts | Com�die, Stern, Howard, Ann�e: 1997, Dur�e: 109 Minutes, Audio: 2.0
    Voix des Vents, La | Guerre, Cage, Nicholas, Ann�e: 2002, Dur�e: 134 Minutes, Audio: 2.0
    Voie de Perdition, La | Drame, Hanks, Tom, Ann�e: 2002, Dur�e: 117 Minutes, Audio: 5.1
    Valentine | Horreur, Boreanez, David, Ann�e: 2001, Dur�e: 96 Minutes, Audio: 5.1
    Clockwork Orange | Drame, McDowell, Malcom, Ann�e: 0, Dur�e: 136 Minutes, Audio: 5.1
    Clockwork Orange | Drame, McDowell, Malcom, Ann�e: 0, Dur�e: 136 Minutes, Audio: 5.1
    Clockwork Orange | Drame, McDowell, Malcom, Ann�e: 0, Dur�e: 136 Minutes, Audio: 5.1
    Clockwork Orange | Drame, McDowell, Malcom, Ann�e: 1971, Dur�e: 136 Minutes, Audio: 5.1
    Clockwork Orange | Drame, McDowell, Malcom, Ann�e: 1971, Dur�e: 136 Minutes, Audio: 5.1
    Nombre de films: 44
    BUILD SUCCESSFUL (total time: 3 seconds)

    Strike notice
    A number of the regular posters here are striking in protest at the poor
    management of these fora. Although it is our unpaid efforts which make the
    fora function, the Sun employees responsible for them seem to regard us as
    contemptible. We hope that this strike will enable them to see the value
    which we provide to Sun. Apologies to unsuspecting innocents caught up in
    the cross-fire.

  • Returned array from a method don't work properly over my Servlet

    Hi folks,
    I show you my code and then explain ;).
            double particle_sys[] = new double[100*5];
         double particle[];
      try {
             for(i = 0; i < 10; i++)
              particle_sys[i*5] = 1;
              particle_sys[i*5 + 1] = 0;
              particle_sys[i*5 + 2] = 1;
              particle_sys[i*5 + 3] = 0;
              particle_sys[i*5 + 4] = 0;     
         class call = new class();
         particle = call.MyFailingMethod(particle_sys);Now the code for the class which owns the method I call
    public class Jfjni
         static
                 System.loadLibrary("nativelibrary");
         public native void .........
         public double[] MyFailingMethod(double particle_sys[])
               double particle[] = new double[100*5];
               .... A call to a the native library to recibe the new data of particle_sys ....
             for(int i = 0; i < 10; i++)
              particle[i*5] = particle_sys[i*5];
              particle[i*5 + 1] = particle_sys[i*5 + 1];
              particle[i*5 + 2] = particle_sys[i*5 + 2];
              particle[i*5 + 3] = particle_sys[i*5 + 3];
              particle[i*5 + 4] = particle_sys[i*5 + 4];     
              return particle; 
    }A function in the native code changes the "particle_sys" array, but the returning value stills the same as the original passed to the function.
    Because of this, I have tested returning the array, dont works. I have tested also returning a copy of the array in "particle", dont works.
    Over standalone app and applet it runs correctly in all different ways, when I try it over a servlet the values of the array stand the same as before the method call.
    Please suggestions!
    Edited by: bifiado on Jan 15, 2008 10:27 AM
    Edited by: bifiado on Jan 15, 2008 10:28 AM

    I have partially solutioned this mistake but I have collateral ones. Looks like I forgot to put in web.xml the definition of the class I was calling from the principal servlet class. In other words, I have two classes, one is the extension of Httpservlet and the other (the class that make mistakes) is a class I call to do the JNI work.
    Now, I added in web.xml the definition of the JNI class (before I forgot) and looks the mistakes with arrays works, but know the there's a new problem and get an IOexception on the applet that call the servlet. When I coment the JNI calls the exception dissapears and all works ok, but I am not getting any exception report on the tomcat ".out".
    Please suggestions.

  • Method Find() don't work with Dot (.)

    Hi,
    I wrote code like this:
    Code:
    vGroupWise := CreateOleObject('NovellGroupWareSession');
    vGroupWise.Login;
    vRootAccount := vGroupWise.RootAccount;
    vAddressBooks := vRootAccount.AddressBooks;
    vSystemAddressBook := vRootAccount.SystemAddressBook;
    vMailBoxFolder := vRootAccount.MailBox;
    condition := '(<E-Mail Address> MATCHES "' + mail +'")';
    vAddress := vSystemAddressBook.AddressBookEntries.Find(condition);
    Mail have format <[email protected]>, I use GW client 8.0.1
    It works fine, but if I switch GW client to "Caching mode" it don't work for SystemAddressBook (for PersonalAddressBooks continues to work correct).

    Hey Vladimir86,
    This may be a question that MOTU could answer. It says on their website their devices are compatible with GarageBand. Here is link to their support page:
    http://www.motu.com/techsupport
    Here is also a link to the mac setup guide:
    http://cdn-data.motu.com/manuals/firewire-usb-audio/Audio_Express_User_Guide_Mac .pdf
    Hope this helps

  • EJB 3 Interceptor @AroundInvoke does not work on session bean superclass

    JDeveloper 10.1.3.0.4 Build 3673 running Embedded OC4J (jdk1.5.0_02).
    I have a stateless session bean that subclasses another session bean. The superclass has an @AroundInvoke defined on it. However, just defining the @AroundInvoke on the superclass doesn't trigger the interceptor to run. But if I add the superclass as an @Interceptor on the subclass, it works. But that shouldn't be required according to the EJB 3.0 core spec (pg. 269):
    After the interceptor methods defined on interceptor classes have been invoked, then:
    If a bean class has superclasses, any AroundInvoke methods defined on those
    superclasses are invoked, most general superclass first.
    Anyway, the interceptor implementation doesn't appear to properly implement the spec on this point, AFAICT.

    Check your ejb-jar.xml and see if it has the version of "2.1" there...
    If the application was depending upon EJB 3.0 annotations but it had a ejb-jar.xml that had version set to "2.1" and there was no oracle specific descriptor (orion-ejb-jar.xml) to designate it use the resource adapter; It would expect JMS destination and connection factory that is required for a JMS-MDB set in the ejb-jar.xml. So try to change the ejb-jar.xml to update the version to "3.0", OC4J would have parsed the annotation and combined the metadata with ejb-jar.xml and it would work.
    -Frances

  • Signed applet don't work on XP

    Hi,
    I'am currently working on a point-of-sale (POS) using windows XP/Firefox and a linux apache/jboss server.
    I have developed a dynamic windows library in order to use an industrial printer connected to the POS to perform some printing without confirmation of the customer.
    The POS is under Windows XP SP2 and use Firefox 2.0.0.11/JRE 1.5.0.14.
    This dll is used by a signed applet located on the apache/jboss server.
    The applet is correctly downloaded by the client, but normally i have to wait for the certicat authentification windows appearing and for confirming that i want execute the applet. And instead i have a java exception :
    security: La v�rification du certificat � l'aide des certificats AC racine a �chou�
    security: Aucune information d'horodatage disponible
    java.lang.NullPointerException
         at com.sun.deploy.ui.UIFactory.showSecurityDialog(Unknown Source)
         at com.sun.deploy.security.TrustDeciderDialog.showDialog(Unknown Source)
         at com.sun.deploy.security.TrustDecider.isAllPermissionGranted(Unknown Source)
         at com.sun.deploy.security.TrustDecider.isAllPermissionGranted(Unknown Source)
         at sun.plugin.security.PluginClassLoader.getPermissions(Unknown Source)
         at java.security.SecureClassLoader.getProtectionDomain(Unknown Source)
         at java.security.SecureClassLoader.defineClass(Unknown Source)
         at java.net.URLClassLoader.defineClass(Unknown Source)
         at java.net.URLClassLoader.access$100(Unknown Source)
         at java.net.URLClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(Unknown Source)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    security: L'utilisateur a refus� les droits d'acc�s au code
    basic: Taille de cache du chargeur de classes courant : 1
    basic: Termin�...
    basic: Jonction du thread d'applet...
    basic: Destruction de l'applet...
    basic: Elimination de l'applet...
    basic: Sortie de l'applet...
    java.lang.ExceptionInInitializerError
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at java.lang.Class.newInstance0(Unknown Source)
         at java.lang.Class.newInstance(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.security.AccessControlException: access denied (java.lang.RuntimePermission loadLibrary.C:\Program Files\BICImpression\impression_api.dll)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkLink(Unknown Source)
         at java.lang.Runtime.load0(Unknown Source)
         at java.lang.System.load(Unknown Source)
         at applets.impression.Impression.<clinit>(Impression.java:38)
         ... 11 moreand then the certicat authentification windows appears but it's too late, the applet won't never execute ...
    the apache/jboss server is accessed via some gateway, firewal, ... tha t i can't control
    the apache jboss/server on my own PC is accessed directly :
    What is amazing, is that work fine with my own professionnal PC on W2000 SP4, with JRE1.5.0.14 and Firefox 2.0.0.11 :
    when I look in the java console, the java freeze until i have answered this java security window (certicat authentification windows). And when i answered "run" no problem the applet makes her own job.
    here is the code when it works :
    security: La v�rification du certificat � l'aide des certificats AC racine a �chou�
    security: Aucune information d'horodatage disponible
    basic: Plugin modality.pushed
    basic: Modalit� empil�e
    basic: push javax.swing.JDialog[dialog0,379,296,519x323,layout=java.awt.BorderLayout,modal,title=Avertissement - S�curit�,defaultCloseOperation=HIDE_ON_CLOSE,rootPane=javax.swing.JRootPane[,3,22,513x298,layout=javax.swing.JRootPane$RootLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=16777673,maximumSize=,minimumSize=,preferredSize=],rootPaneCheckingEnabled=true]
    basic: Chargement arr�t�...
    basic: Arr�t de l'applet...Conclusion
    POS : Win XP SP2, JRE1.5.0.14 (i tried 1.5.0.6 and 1.6.3 the latest), Firefox 2.0.0.11 (I tried 2.0.0.0 and 3 beta2 don't work anyway)
    my own server/client : W2000 SP4, JRE1.5.0.14, Firefox 2.0.0.11
    Linux server : RHEL4
    It works with IE on the POS with the linux sever but it's not the selected browser.
    It works with IE on the POS with my own server.
    It works with Firefox on the POS with my own server.
    It works with IE on my own server with the linux sever but it's not the selected browser.
    It works with IE on my own server with my own server.
    It works with Firefox on my own server with the linux sever.
    It works with Firefox on my own server with my own server.
    If you have some idea to make it work i'm you're buyer !!
    Thank a lot for reading this, and i apologize for my poor english ...
    greetings,
    Benoit
    Edited by: bendur on Feb 29, 2008 3:49 AM

    Ok I have found my problem :
    On every web pages, we have defined some inactivity timeouts.
    On my own server I have disabled these timeouts but not on the distant timeout.
    And it seems that the timeout (defined in javascript ont he web pages : 3s) has a very bad influence on the launching of my applet ... only with firefox (with IE and Opera no problem)
    My problem is anwsered but the problem keep alive for firefox ...

  • Adobe Flash & Javascript don't work even though Enabled

    Ever since what I think was either a Firefox upgrade (I don't know which one) or installation of Quicktime, my Adobe Flash Plugin is perpetually crashed and I cannot play any Flash content on any website. All that displays in place of the video is a gray screen with the sad-face Lego icon and the message: “The Adobe Flash Plugin has crashed. Please reload the page to try again.” (See attached image.) But it will not resolve when reloaded.
    No Flash videos on any sites work. HTML5 videos work on YouTube when tested, but non-HTML5 videos won't work.
    Also, my Javascript does not seem to be working since at least some displays requiring javascript don't work. Sometimes the display just doesn't work, and sometimes I get a message that javascript is disabled and must be enabled, but it is already enabled (set to “true” in about:config).
    I have spent days scouring every help forum entry I can find on troubleshooting Flash Player and Javascript. Everything on my end seems to be in order and I cannot find or fix either problem. I think it is possible the issue could have its roots in the fact that Javascript seems to not be working which may be preventing Flash Player content from working...??
    Also, Flash content does work in I.E. but not in Firefox (I do not have Chrome installed so did not test in Chrome). I have too many window tabs open in Firefox and can't switch to I.E. (nor do I like to use I.E.).
    PLEASE HELP as this is crippling for very important work deadlines I have.
    This is what else I know and have tried:
    I have a Toshiba Satellite C75D-A Laptop;
    Processor: AMD A6-5200 APU with Radeon HD Graphics; x64; 2.00 Ghz;
    RAM: 8 MB;
    OS: 64-bit system; Windows 8.1 (but some auto-check utilities detect it as 8.0 because it was upgraded.);
    Graphics Card: “Desktop Graphics” System – AMD Radeon HD 8400 (0x9830);
    Installed Graphics Driver Version: AMD 13.352.1004.1007 (Driver Date: 4/22/2014)
    My Device Manager graphics driver updater states: “driver software is up to date.”
    From the AMD website: the graphics driver auto-detect utility recommended the AMD Catalyst Driver (amd-catalyst-omega-14.12-without-dotnet45-win8.1-64bit.exe) I tried installing this driver, but it won't install. After trying to install, I got a message stating: “We are unable to find a driver for your system.” But Device Manager states I have a current driver, and my graphics card & driver seem to be working fine, so I do not believe this is part of the issue.
    I am using Latest Firefox version 35.0.1; and
    Using Latest Flash Player: 32-bit NPAPI Plug-in Version: 16.0.0.296; designated: “always activate” (Downloaded new update several times, including fresh install after uninstall; system & web address icons indicate Flash is enabled).
    I turned off hardware acceleration in FF Tools>Options>Advanced>General
    I disabled WebGL as explained here: https://support.mozilla.org/en-US/kb/upgrade-graphics-drivers-use-hardware-acceleration
    I am using Ad-Block Plus which has never affected things in the past. I have not tried starting FF in Safe Mode because I believe I will lose all open tabs and not be able to recover them (I may have over 200 open). But disabling add-ons has no effect (I disabled all except for Sessions Manager in case of a crash). (My No-Script has been disabled for at least six months.)
    I have Windows Media Player and Quicktime installed.
    Quicktime is most recent upgrade (7.7.6) so should not be a problem according to:
    “QuickTime plugin takes over Flash” at:
    http://kb.mozillazine.org/Flash#Disabling_Protected_Mode_in_Flash_11.3
    (note underscores in place of spaces in string; underscores not insertable here)
    Disabling Quicktime had no effect in the prior version of FF (ver. 35.0), but in latest FF ver. 35.0.1, Flash videos only display a plain (blank) gray screen instead of the sad-faced icon and crash message.
    (I tried to uninstall Quicktime altogether, but was not able to due to Error codes 2502 & 2503. I tried troubleshooting that as well with no luck using methods successful for other programs, including here:
    http://www.fixkb.com/2014/01/error-2503-and-2502-when-uninstalling-on-windows-8.html;
    & here:
    http://answers.microsoft.com/en-us/windows/forum/windows_8-winapps/re-internal-error-codes-2502-and-2503-for/ba5f2145-aa6e-4cc0-81a7-e4346f43b698.)
    Disabling my FF theme and using the default brought back the sad-faced icon and crash message in the place of videos on some YouTube pages, but not other YouTube pages (where video was still blank gray screen). It also enabled a still Flash image (an ad) to display on a different website page that previously had a Flash Plugin crash message. I have been using this same theme for a couple of years without previous issue. While turning it off did generate an effect on some still imagery, it didn't fix the video problem.
    I tried Disabling Protected Mode in Flash 11.3 as explained here:
    http://kb.mozillazine.org/Flash#Disabling_Protected_Mode_in_Flash_11.3
    (note underscores in place of spaces in string; underscores not insertable here).
    It did not solve the issue.
    I also deleted all storage & data in Flash Player as advised. This had no effect either.
    I've tried all solutions I've been able to find and am at a loss for what to try next. Please help and advise ASAP. Thank you!!

    ''guigs2 [[#answer-684038|said]]''
    <blockquote>
    I truely admire the efforts that have been made to make this work.
    "“We are unable to find a driver for your system.” "
    For it not installing, you need to follow these instructions to install them: see the comments: [http://answers.microsoft.com/en-us/insider/forum/insider_wintp-insider_devices/windows-10-atiamd-display-drivers/50944d10-dde3-4e08-8244-d54eb2b1e7de] --> take warning though it looks like it has caused issues for others as well.
    Since it was working for some youtube videos and not others, there might be an issue with a particular video codec. DO you have OpenH264 Video Codec provided by Cisco Systems, Inc. plugin?
    Is it possible to try Safe Mode after saving your session with [https://addons.mozilla.org/en-US/firefox/addon/session-manager/ Session Manager Addon]? IT would test hardware acceleration in Firefox.
    </blockquote>
    Thank you, guigs2! Sorry for my delayed reply...I didn't realize I hadn't gotten back to you. Update is that I did try a whole slew of other troubleshooting steps including starting FF in safe mode, to no avail. However, I was FINALLY (after months) able to solve this problem just today by pure chance!
    The problem was that hardware acceleration was enabled in the Flash settings. I had not been able to turn it off because I didn't have access to the Flash Player settings as long as the crash error message was visible, which was all the time! Today, by a sheer fluke, I saw a static picture in place of the crash message on a Flash video. I snagged the opportunity to call up the settings and turn off hardware acceleration, and it fixed the problem for my whole browser! This has been a frustrating issue because I did not have access to the settings utility as long as I had the crash message, which was always, so my Flash was crippled without the ability for me to fix it until pure luck gave me this window of opportunity.
    Does anyone know another way to access the settings utility if this ever happens again in the future? I could not find a way. (Incidentally, I had tried disabling hardware acceleration via my graphics driver settings, but it didn't fix the problem.) We need Adobe to allow some other way to access the Flash Player settings utility when this problem arises since they aren't accessible when there is a static crash message.
    Thanks again!

  • I spilled water on my laptop and my "i", "j" and "k" letters don't work on my laptop. However my main problem is that my password contains an "i" so i am locked out of my computer. Any ideas how I can get around the password and login.

    I spilled water on my laptop and my "i", "j" and "k" letters don't work on my laptop. However my main problem is that my password contains an "i" so i am locked out of my computer. Any ideas how I can get around the password and login. I tried the method where you go into single user mode and type in commands, however that method uses some of the letters that are not working on my laptop.

    You didn't mention which version of OS X your running but there are password reset utilities provided OS X: Changing or resetting an account password (Snow Leopard and earlier) - Apple Support  or  OS X: Changing or resetting an account password - Apple Support
    Alternately you can use an external keyboard to log in and change the password. Make a backup if you don't have one, it's likely that your problems aren't over. If that water continues to migrate downward and fries the logic board your macbook will be toast.

  • XORG: Keyboard don't work right

    Hi,
    after the last System update my keyboard (under xorg) is totally messed up! The arrow keys,the del key the Pos1 key, the End key.....  all don't work. All characters numbers and special characters like(!"§$%&/....) work though. Even the German "Umlauts" are working!
    Here my xorg.conf:
    # File generated by xorgconfig.
    # Copyright 2004 The X.Org Foundation
    # Permission is hereby granted, free of charge, to any person obtaining a
    # copy of this software and associated documentation files (the "Software"),
    # to deal in the Software without restriction, including without limitation
    # the rights to use, copy, modify, merge, publish, distribute, sublicense,
    # and/or sell copies of the Software, and to permit persons to whom the
    # Software is furnished to do so, subject to the following conditions:
    # The above copyright notice and this permission notice shall be included in
    # all copies or substantial portions of the Software.
    # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
    # The X.Org Foundation BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
    # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
    # OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    # SOFTWARE.
    # Except as contained in this notice, the name of The X.Org Foundation shall
    # not be used in advertising or otherwise to promote the sale, use or other
    # dealings in this Software without prior written authorization from
    # The X.Org Foundation.
    # Refer to the xorg.conf(5) man page for details about the format of
    # this file.
    # Module section -- this  section  is used to specify
    # which dynamically loadable modules to load.
    Section "Module"
    # This loads the DBE extension module.
        Load        "dbe"   # Double buffer extension
    # This loads the miscellaneous extensions module, and disables
    # initialisation of the XFree86-DGA extension within that module.
        SubSection  "extmod"
          Option    "omit xfree86-dga"   # don't initialise the DGA extension
        EndSubSection
    # This loads the font modules
    #    Load        "type1"
        Load        "freetype"
    #    Load        "xtt"
    # This loads the GLX module
    #    Load       "glx"
    # This loads the DRI module
    #    Load       "dri"
    EndSection
    # Files section.  This allows default font and rgb paths to be set
    Section "Files"
    # Multiple FontPath entries are allowed (which are concatenated together),
    # as well as specifying multiple comma-separated entries in one FontPath
    # command (or a combination of both methods)
        FontPath   "/usr/share/fonts/misc"
        FontPath   "/usr/share/fonts/100dpi:unscaled"
        FontPath   "/usr/share/fonts/75dpi:unscaled"
        FontPath   "/usr/share/fonts/TTF"
        FontPath   "/usr/share/fonts/Type1"
    #    FontPath   "/usr/lib/X11/fonts/local/"
    #    FontPath   "/usr/lib/X11/fonts/misc/"
    #    FontPath   "/usr/lib/X11/fonts/75dpi/:unscaled"
    #    FontPath   "/usr/lib/X11/fonts/100dpi/:unscaled"
    #    FontPath   "/usr/lib/X11/fonts/Type1/"
    #    FontPath   "/usr/lib/X11/fonts/TrueType/"
    #    FontPath   "/usr/lib/X11/fonts/freefont/"
    #    FontPath   "/usr/lib/X11/fonts/75dpi/"
    #    FontPath   "/usr/lib/X11/fonts/100dpi/"
    # The module search path.  The default path is shown here.
    #    ModulePath "/usr/lib/modules"
    EndSection
    # Server flags section.
    Section "ServerFlags"
    # Uncomment this to cause a core dump at the spot where a signal is
    # received.  This may leave the console in an unusable state, but may
    # provide a better stack trace in the core dump to aid in debugging
    #    Option "NoTrapSignals"
    # Uncomment this to disable the <Ctrl><Alt><Fn> VT switch sequence
    # (where n is 1 through 12).  This allows clients to receive these key
    # events.
    #    Option "DontVTSwitch"
    # Uncomment this to disable the <Ctrl><Alt><BS> server abort sequence
    # This allows clients to receive this key event.
    #    Option "DontZap"
    # Uncomment this to disable the <Ctrl><Alt><KP_+>/<KP_-> mode switching
    # sequences.  This allows clients to receive these key events.
    #    Option "Dont Zoom"
    # Uncomment this to disable tuning with the xvidtune client. With
    # it the client can still run and fetch card and monitor attributes,
    # but it will not be allowed to change them. If it tries it will
    # receive a protocol error.
    #    Option "DisableVidModeExtension"
    # Uncomment this to enable the use of a non-local xvidtune client.
    #    Option "AllowNonLocalXvidtune"
    # Uncomment this to disable dynamically modifying the input device
    # (mouse and keyboard) settings.
    #    Option "DisableModInDev"
    # Uncomment this to enable the use of a non-local client to
    # change the keyboard or mouse settings (currently only xset).
    #    Option "AllowNonLocalModInDev"
    EndSection
    # Input devices
    # Core keyboard's InputDevice section
    Section "InputDevice"
        Identifier  "Keyboard1"
        Driver      "kbd"
        Option "AutoRepeat" "500 30"
    # Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
    #    Option     "Xleds"      "1 2 3"
    #    Option "LeftAlt"     "Meta"
    #    Option "RightAlt"    "ModeShift"
    # To customise the XKB settings to suit your keyboard, modify the
    # lines below (which are the defaults).  For example, for a non-U.S.
    # keyboard, you will probably want to use:
    #    Option "XkbModel"    "pc105"
    # If you have a US Microsoft Natural keyboard, you can use:
    #    Option "XkbModel"    "microsoft"
    # Then to change the language, change the Layout setting.
    # For example, a german layout can be obtained with:
    #    Option "XkbLayout"   "de"
    # or:
    #    Option "XkbLayout"   "de"
    #    Option "XkbVariant"  "nodeadkeys"
    # If you'd like to switch the positions of your capslock and
    # control keys, use:
    #    Option "XkbOptions"  "ctrl:swapcaps"
    # These are the default XKB settings for Xorg
    #    Option "XkbRules"    "xorg"
    #    Option "XkbModel"    "pc105"
    #    Option "XkbLayout"   "us"
    #    Option "XkbVariant"  ""
    #    Option "XkbOptions"  ""
    #    Option "XkbDisable"
        Option "XkbRules"   "xorg"
        Option "XkbModel"   "pc105"
        Option "XkbLayout"  "de"
    EndSection
    # Core Pointer's InputDevice section
    Section "InputDevice"
    # Identifier and driver
        Identifier  "Mouse1"
        Driver      "mouse"
        Option "Protocol"    "Auto" # Auto detect
        Option "Device"      "/dev/input/mice"
    # Mouse-speed setting for PS/2 mouse.
    #    Option "Resolution"        "256"
    # Baudrate and SampleRate are only for some Logitech mice. In
    # almost every case these lines should be omitted.
    #    Option "BaudRate"  "9600"
    #    Option "SampleRate"        "150"
    # Mouse wheel mapping.  Default is to map vertical wheel to buttons 4 & 5,
    # horizontal wheel to buttons 6 & 7.   Change if your mouse has more than
    # 3 buttons and you need to map the wheel to different button ids to avoid
    # conflicts.
        Option "ZAxisMapping"   "4 5 6 7"
    # Emulate3Buttons is an option for 2-button mice
    # Emulate3Timeout is the timeout in milliseconds (default is 50ms)
        Option "Emulate3Buttons"
    #    Option "Emulate3Timeout"    "50"
    # ChordMiddle is an option for some 3-button Logitech mice
    #    Option "ChordMiddle"
    EndSection
    # Other input device sections
    # this is optional and is required only if you
    # are using extended input devices.  This is for example only.  Refer
    # to the xorg.conf man page for a description of the options.
    # Section "InputDevice"
    #    Identifier  "Mouse2"
    #    Driver      "mouse"
    #    Option      "Protocol"      "MouseMan"
    #    Option      "Device"        "/dev/mouse2"
    # EndSection
    # Section "InputDevice"
    #    Identifier "spaceball"
    #    Driver     "magellan"
    #    Option     "Device"        "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    #    Identifier "spaceball2"
    #    Driver     "spaceorb"
    #    Option     "Device"        "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    #    Identifier "touchscreen0"
    #    Driver     "microtouch"
    #    Option     "Device"        "/dev/ttyS0"
    #    Option     "MinX"          "1412"
    #    Option     "MaxX"          "15184"
    #    Option     "MinY"          "15372"
    #    Option     "MaxY"          "1230"
    #    Option     "ScreenNumber"  "0"
    #    Option     "ReportingMode" "Scaled"
    #    Option     "ButtonNumber"  "1"
    #    Option     "SendCoreEvents"
    # EndSection
    # Section "InputDevice"
    #    Identifier "touchscreen1"
    #    Driver     "elo2300"
    #    Option     "Device"        "/dev/ttyS0"
    #    Option     "MinX"          "231"
    #    Option     "MaxX"          "3868"
    #    Option     "MinY"          "3858"
    #    Option     "MaxY"          "272"
    #    Option     "ScreenNumber"  "0"
    #    Option     "ReportingMode" "Scaled"
    #    Option     "ButtonThreshold"       "17"
    #    Option     "ButtonNumber"  "1"
    #    Option     "SendCoreEvents"
    # EndSection
    # Monitor section
    # Any number of monitor sections may be present
    Section "Monitor"
        Identifier  "My Monitor"
    # HorizSync is in kHz unless units are specified.
    # HorizSync may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY.  REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
        HorizSync   31.5 - 64.3
    #    HorizSync  30-64         # multisync
    #    HorizSync  31.5, 35.2    # multiple fixed sync frequencies
    #    HorizSync  15-25, 30-50  # multiple ranges of sync frequencies
    # VertRefresh is in Hz unless units are specified.
    # VertRefresh may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY.  REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
        VertRefresh 50-100
    EndSection
    # Graphics device section
    # Any number of graphics device sections may be present
    # Standard VGA Device:
    Section "Device"
        Identifier  "Standard VGA"
        VendorName  "Unknown"
        BoardName   "Unknown"
    # The chipset line is optional in most cases.  It can be used to override
    # the driver's chipset detection, and should not normally be specified.
    #    Chipset    "generic"
    # The Driver line must be present.  When using run-time loadable driver
    # modules, this line instructs the server to load the specified driver
    # module.  Even when not using loadable driver modules, this line
    # indicates which driver should interpret the information in this section.
        Driver     "vga"
    # The BusID line is used to specify which of possibly multiple devices
    # this section is intended for.  When this line isn't present, a device
    # section can only match up with the primary video device.  For PCI
    # devices a line like the following could be used.  This line should not
    # normally be included unless there is more than one video device
    # intalled.
    #    BusID      "PCI:0:10:0"
    #    VideoRam   256
    #    Clocks     25.2 28.3
    EndSection
    # Device configured by xorgconfig:
    Section "Device"
        Identifier  "** ATI Radeon (generic)               [radeon]"
        Driver      "radeon"
        #VideoRam    262144
        # Insert Clocks lines here if appropriate
    EndSection
    # Screen sections
    # Any number of screen sections may be present.  Each describes
    # the configuration of a single screen.  A single specific screen section
    # may be specified from the X server command line with the "-screen"
    # option.
    Section "Screen"
        Identifier  "Screen 1"
        Device      "** ATI Radeon (generic)               [radeon]"
        Monitor     "My Monitor"
        DefaultDepth 24
        Subsection "Display"
            Depth       8
            Modes       "1280x1024" "1024x768" "800x600" "640x480"
            ViewPort    0 0
        EndSubsection
        Subsection "Display"
            Depth       16
            Modes       "1280x1024" "1024x768" "800x600" "640x480"
            ViewPort    0 0
        EndSubsection
        Subsection "Display"
            Depth       24
            Modes       "1400x1050" "1280x1024" "1024x768"
            ViewPort    0 0
        EndSubsection
    EndSection
    # ServerLayout sections.
    # Any number of ServerLayout sections may be present.  Each describes
    # the way multiple screens are organised.  A specific ServerLayout
    # section may be specified from the X server command line with the
    # "-layout" option.  In the absence of this, the first section is used.
    # When now ServerLayout section is present, the first Screen section
    # is used alone.
    Section "ServerLayout"
    # The Identifier line must be present
        Identifier  "Simple Layout"
    # Each Screen line specifies a Screen section name, and optionally
    # the relative position of other screens.  The four names after
    # primary screen name are the screens to the top, bottom, left and right
    # of the primary screen.  In this example, screen 2 is located to the
    # right of screen 1.
        Screen "Screen 1"
    # Each InputDevice line specifies an InputDevice section name and
    # optionally some options to specify the way the device is to be
    # used.  Those options include "CorePointer", "CoreKeyboard" and
    # "SendCoreEvents".
        InputDevice "Mouse1" "CorePointer"
        InputDevice "Keyboard1" "CoreKeyboard"
    EndSection
    # Section "DRI"
    #    Mode 0666
    # EndSection
    and the corresponding log:
    X.Org X Server 1.5.3
    Release Date: 5 November 2008
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.27-ARCH i686
    Current Operating System: Linux stella 2.6.27-ARCH #1 SMP PREEMPT Fri Nov 28 10:56:24 UTC 2008 i686
    Build Date: 05 December 2008  09:10:55PM
            Before reporting problems, check http://wiki.x.org
            to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
            (++) from command line, (!!) notice, (II) informational,
            (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Tue Dec  9 17:03:13 2008
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "Simple Layout"
    (**) |-->Screen "Screen 1" (0)
    (**) |   |-->Monitor "My Monitor"
    (**) |   |-->Device "** ATI Radeon (generic)               [radeon]"
    (**) |-->Input Device "Mouse1"
    (**) |-->Input Device "Keyboard1"
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (==) Including the default font path /usr/share/fonts/misc,/usr/share/fonts/100dpi:unscaled,/usr/share/fonts/75dpi:unscaled,/usr/share/fonts/TTF,/usr/share/fonts/Type1.
    (**) FontPath set to:
            /usr/share/fonts/misc,
            /usr/share/fonts/100dpi:unscaled,
            /usr/share/fonts/75dpi:unscaled,
            /usr/share/fonts/TTF,
            /usr/share/fonts/Type1,
            /usr/share/fonts/misc,
            /usr/share/fonts/100dpi:unscaled,
            /usr/share/fonts/75dpi:unscaled,
            /usr/share/fonts/TTF,
            /usr/share/fonts/Type1
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (WW) AllowEmptyInput is on, devices using drivers 'kbd' or 'mouse' will be disabled.
    (WW) Disabling Mouse1
    (WW) Disabling Keyboard1
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) Loader magic: 0x81d5900
    (II) Module ABI versions:
            X.Org ANSI C Emulation: 0.4
            X.Org Video Driver: 4.1
            X.Org XInput driver : 2.1
            X.Org Server Extension : 1.1
            X.Org Font Renderer : 0.6
    (II) Loader running on linux
    (++) using VT number 7
    (--) PCI:*(0@1:0:0) ATI Technologies Inc RV350 [Mobility Radeon 9600 M10] rev 0, Mem @ 0xa8000000/0, 0xe0010000/0, I/O @ 0x0000c100/0, BIOS @ 0x????????/131072
    (II) System resource ranges:
            [0] -1  0       0xffffffff - 0xffffffff (0x1) MX[b]
            [1] -1  0       0x000f0000 - 0x000fffff (0x10000) MX[b]
            [2] -1  0       0x000c0000 - 0x000effff (0x30000) MX[b]
            [3] -1  0       0x00000000 - 0x0009ffff (0xa0000) MX[b]
            [4] -1  0       0x0000ffff - 0x0000ffff (0x1) IX[b]
            [5] -1  0       0x00000000 - 0x00000000 (0x1) IX[b]
    (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    (II) "glx" will be loaded by default.
    (II) "freetype" will be loaded. This was enabled by default and also specified in the config file.
    (II) "dri" will be loaded by default.
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
            compiled for 1.5.3, module version = 1.0.0
            Module class: X.Org Server Extension
            ABI class: X.Org Server Extension, version 1.1
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
            compiled for 1.5.3, module version = 1.0.0
            Module class: X.Org Server Extension
            ABI class: X.Org Server Extension, version 1.1
    (II) Loading extension SHAPE
    (II) Loading extension MIT-SUNDRY-NONSTANDARD
    (II) Loading extension BIG-REQUESTS
    (II) Loading extension SYNC
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XC-MISC
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-Misc
    (II) Loading extension DPMS
    (II) Loading extension TOG-CUP
    (II) Loading extension Extended-Visual-Information
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "freetype"
    (II) Loading /usr/lib/xorg/modules/fonts//libfreetype.so
    (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
            compiled for 1.5.3, module version = 2.1.0
            Module class: X.Org Font Renderer
            ABI class: X.Org Font Renderer, version 0.6
    (II) Loading font FreeType
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="X.Org Foundation"
            compiled for 1.5.3, module version = 1.0.0
            ABI class: X.Org Server Extension, version 1.1
    (==) AIGLX enabled
    (==) Exporting typical set of GLX visuals
    (II) Loading extension GLX
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
            compiled for 1.5.3, module version = 1.0.0
            ABI class: X.Org Server Extension, version 1.1
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "radeon"
    (II) Loading /usr/lib/xorg/modules/drivers//radeon_drv.so
    (II) Module radeon: vendor="X.Org Foundation"
            compiled for 1.5.2, module version = 6.9.0
            Module class: X.Org Video Driver
            ABI class: X.Org Video Driver, version 4.1
    (II) RADEON: Driver for ATI Radeon chipsets:
            ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
            ATI Radeon Mobility X300 (M24) 3152 (PCIE),
            ATI FireGL M24 GL 3154 (PCIE), ATI Radeon X600 (RV380) 3E50 (PCIE),
            ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
            ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
            ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
            ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
            ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
            ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
            ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
            ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
            ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
            ATI Radeon 8500 AIW BB (AGP), ATI Radeon 8500 AIW BC (AGP),
            ATI Radeon IGP320M (U1) 4336, ATI Radeon IGP330M/340M/350M (U2) 4337,
            ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
            ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
            ATI Radeon X800PRO (R420) JI (AGP),
            ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
            ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
            ATI Radeon Mobility 9800 (M18) JN (AGP),
            ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
            ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
            ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
            ATI Radeon Mobility M7 LW (AGP),
            ATI Mobility FireGL 7800 M7 LX (AGP),
            ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
            ATI FireGL Mobility 9000 (M9) Ld (AGP),
            ATI Radeon Mobility 9000 (M9) Lf (AGP),
            ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI Radeon 9700 Pro ND (AGP),
            ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9600TX NF (AGP),
            ATI FireGL X1 NG (AGP), ATI Radeon 9800PRO NH (AGP),
            ATI Radeon 9800 NI (AGP), ATI FireGL X2 NK (AGP),
            ATI Radeon 9800XT NJ (AGP),
            ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
            ATI Radeon Mobility 9600 (M10) NQ (AGP),
            ATI Radeon Mobility 9600 (M11) NR (AGP),
            ATI Radeon Mobility 9600 (M10) NS (AGP),
            ATI FireGL Mobility T2 (M10) NT (AGP),
            ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
            ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
            ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
            ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
            ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
            ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
            ATI Radeon Mobility X300 (M22) 5460 (PCIE),
            ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
            ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
            ATI Radeon X800PRO (R423) UI (PCIE),
            ATI Radeon X800LE (R423) UJ (PCIE),
            ATI Radeon X800SE (R423) UK (PCIE),
            ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
            ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
            ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
            ATI FireGL unknown (R423) UR (PCIE),
            ATI FireGL unknown (R423) UT (PCIE),
            ATI Mobility FireGL V5000 (M26) (PCIE),
            ATI Mobility FireGL V5000 (M26) (PCIE),
            ATI Mobility Radeon X700 XL (M26) (PCIE),
            ATI Mobility Radeon X700 (M26) (PCIE),
            ATI Mobility Radeon X700 (M26) (PCIE),
            ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
            ATI Radeon Mobility 9100 IGP (U3) 5835,
            ATI Radeon XPRESS 200 5954 (PCIE),
            ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
            ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
            ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
            ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
            ATI Radeon XPRESS 200M 5975 (PCIE),
            ATI Radeon XPRESS 200 5A41 (PCIE),
            ATI Radeon XPRESS 200M 5A42 (PCIE),
            ATI Radeon XPRESS 200 5A61 (PCIE),
            ATI Radeon XPRESS 200M 5A62 (PCIE),
            ATI Radeon X300 (RV370) 5B60 (PCIE),
            ATI Radeon X600 (RV370) 5B62 (PCIE),
            ATI Radeon X550 (RV370) 5B63 (PCIE),
            ATI FireGL V3100 (RV370) 5B64 (PCIE),
            ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
            ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
            ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
            ATI Mobility Radeon X800 XT (M28) (PCIE),
            ATI Mobility FireGL V5100 (M28) (PCIE),
            ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
            ATI Radeon X850 XT PE (R480) (PCIE),
            ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
            ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
            ATI Radeon X850 XT (R480) (PCIE),
            ATI Radeon X800XT (R423) 5D57 (PCIE),
            ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
            ATI Radeon X700 PRO (RV410) (PCIE),
            ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
            ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
            ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
            ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
            ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
            ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
            ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
            ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
            ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
            ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
            ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
            ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
            ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
            ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
            ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
            ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
            ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
            ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
            ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
            ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
            ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
            ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
            ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
            ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
            ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
            ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
            ATI Mobility Radeon X1700, ATI Radeon X2300HD,
            ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
            ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
            ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
            ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
            ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
            ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
            ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
            ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI ATI FireGL V7400,
            ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
            ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
            ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
            ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
            ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
            ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
            ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
            ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
            ATI Radeon 4800 Series, ATI RV610, ATI Radeon HD 2400 XT,
            ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
            ATI RV610, ATI ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
            ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610, ATI RV670,
            ATI Radeon HD3870, ATI Radeon HD3850, ATI RV670,
            ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850, ATI RV630,
            ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
            ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
            ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
            ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
            ATI FireGL V3600, ATI Radeon HD 2600 LE, ATI Radeon HD 3470,
            ATI Radeon HD 3450, ATI Radeon HD 3430, ATI Mobility Radeon HD 3430,
            ATI Mobility Radeon HD 3400 Series, ATI FireMV 2450, ATI FireMV 2260,
            ATI FireMV 2260, ATI ATI Radeon HD 3600 Series,
            ATI ATI Radeon HD 3650 AGP, ATI ATI Radeon HD 3600 PRO,
            ATI ATI Radeon HD 3600 XT, ATI ATI Radeon HD 3600 PRO,
            ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
            ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
            ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics
    (II) Primary Device is: PCI 01@00:00:0
    (II) resource ranges after xf86ClaimFixedResources() call:
            [0] -1  0       0xffffffff - 0xffffffff (0x1) MX[b]
            [1] -1  0       0x000f0000 - 0x000fffff (0x10000) MX[b]
            [2] -1  0       0x000c0000 - 0x000effff (0x30000) MX[b]
            [3] -1  0       0x00000000 - 0x0009ffff (0xa0000) MX[b]
            [4] -1  0       0x0000ffff - 0x0000ffff (0x1) IX[b]
            [5] -1  0       0x00000000 - 0x00000000 (0x1) IX[b]
    (II) resource ranges after probing:
            [0] -1  0       0xffffffff - 0xffffffff (0x1) MX[b]
            [1] -1  0       0x000f0000 - 0x000fffff (0x10000) MX[b]
            [2] -1  0       0x000c0000 - 0x000effff (0x30000) MX[b]
            [3] -1  0       0x00000000 - 0x0009ffff (0xa0000) MX[b]
            [4] 0   0       0x000a0000 - 0x000affff (0x10000) MS[b]
            [5] 0   0       0x000b0000 - 0x000b7fff (0x8000) MS[b]
            [6] 0   0       0x000b8000 - 0x000bffff (0x8000) MS[b]
            [7] -1  0       0x0000ffff - 0x0000ffff (0x1) IX[b]
            [8] -1  0       0x00000000 - 0x00000000 (0x1) IX[b]
            [9] 0   0       0x000003b0 - 0x000003bb (0xc) IS[b]
            [10] 0  0       0x000003c0 - 0x000003df (0x20) IS[b]
    (II) Setting vga for screen 0.
    (II) RADEON(0): MMIO registers at 0x00000000e0010000: size 64KB
    (II) RADEON(0): PCI bus 1 card 0 func 0
    (**) RADEON(0): Depth 24, (--) framebuffer bpp 32
    (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    (==) RADEON(0): Default visual is TrueColor
    (II) Loading sub module "vgahw"
    (II) LoadModule: "vgahw"
    (II) Loading /usr/lib/xorg/modules//libvgahw.so
    (II) Module vgahw: vendor="X.Org Foundation"
            compiled for 1.5.3, module version = 0.1.0
            ABI class: X.Org Video Driver, version 4.1
    (II) RADEON(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
    (==) RADEON(0): RGB weight 888
    (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    (--) RADEON(0): Chipset: "ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP)" (ChipID = 0x4e50)
    (--) RADEON(0): Linear framebuffer at 0x00000000a8000000
    (II) RADEON(0): AGP card detected
    (II) Loading sub module "int10"
    (II) LoadModule: "int10"
    (II) Loading /usr/lib/xorg/modules//libint10.so
    (II) Module int10: vendor="X.Org Foundation"
            compiled for 1.5.3, module version = 1.0.0
            ABI class: X.Org Video Driver, version 4.1
    (II) RADEON(0): initializing int10
    (II) RADEON(0): Primary V_BIOS segment is: 0xc000
    (II) RADEON(0): Legacy BIOS detected
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 9, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:01:00.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 9, (OK)
    drmOpenByBusid: drmOpenMinor returns 9
    drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
    (II) RADEON(0): [dri] Found DRI library version 1.3.0 and kernel module version 1.29.0
    (==) RADEON(0): Page Flipping disabled
    (II) RADEON(0): Will try to use DMA for Xv image transfers
    (II) RADEON(0): Generation 2 PCI interface, using max accessible memory
    (II) RADEON(0): Detected total video RAM=65536K, accessible=131072K (PCI BAR=131072K)
    (--) RADEON(0): Mapped VideoRAM: 65536 kByte (128 bit DDR SDRAM)
    (II) RADEON(0): Color tiling enabled by default
    (II) RADEON(0): Max desktop size set to 2560x1200
    (II) RADEON(0): For a larger or smaller max desktop size, add a Virtual line to your xorg.conf
    (II) RADEON(0): If you are having trouble with 3D, reduce the desktop size by adjusting the Virtual line to your xorg.conf
    (II) Loading sub module "ddc"
    (II) LoadModule: "ddc"
    (II) Module "ddc" already built-in
    (II) Loading sub module "i2c"
    (II) LoadModule: "i2c"
    (II) Module "i2c" already built-in
    (II) RADEON(0): ref_freq: 2700, min_out_pll: 20000, max_out_pll: 35000, min_in_pll: 40, max_in_pll: 3000, xclk: 20000, sclk: 200.000000, mclk: 390.000000
    (II) RADEON(0): PLL parameters: rf=2700 rd=6 min=20000 max=35000; xclk=20000
    (II) RADEON(0): Bios Connector table:
    (II) RADEON(0): Port0: DDCType-0x60, DACType-1, TMDSType-1, ConnectorType-1
    (II) RADEON(0): Port4: DDCType-0x0, DACType-0, TMDSType-0, ConnectorType-7
    (II) RADEON(0): Port5: DDCType-0x0, DACType-2, TMDSType-0, ConnectorType-5
    (II) RADEON(0): Output VGA-0 using monitor section My Monitor
    (II) RADEON(0): I2C bus "VGA-0" initialized.
    (II) RADEON(0): Output LVDS has no monitor section
    (II) RADEON(0): Panel ID string: AUO                     
    (II) RADEON(0): Panel Size from BIOS: 1400x1050
    (II) RADEON(0): BIOS provided dividers will be used.
    (WW) RADEON(0): LVDS Info:
    XRes: 1400, YRes: 1050, DotClock: 108000
    HBlank: 240, HOverPlus: 48, HSyncWidth: 112
    VBlank: 15, VOverPlus: 1, VSyncWidth: 3
    (II) RADEON(0): Output S-video has no monitor section
    (II) RADEON(0): Default TV standard: NTSC
    (II) RADEON(0): TV standards supported by chip: NTSC PAL
    (II) RADEON(0): Port0:
    Monitor   -- AUTO
    Connector -- VGA
    DAC Type  -- Primary
    TMDS Type -- None
    DDC Type  -- 0x60
    (II) RADEON(0): Port1:
    Monitor   -- AUTO
    Connector -- LVDS
    DAC Type  -- None
    TMDS Type -- None
    DDC Type  -- 0x0
    (II) RADEON(0): Port2:
    Monitor   -- AUTO
    Connector -- STV
    DAC Type  -- TVDAC/ExtDAC
    TMDS Type -- None
    DDC Type  -- 0x0
    (II) RADEON(0): I2C device "VGA-0:ddc2" registered at address 0xA0.
    (II) RADEON(0): I2C device "VGA-0:ddc2" removed.
    (II) RADEON(0): Output: VGA-0, Detected Monitor Type: 0
    finished output detect: 0
    (II) RADEON(0): Output: LVDS, Detected Monitor Type: 0
    finished output detect: 1
    (II) RADEON(0): Output: S-video, Detected Monitor Type: 0
    finished output detect: 2
    finished all detect
    before xf86InitialConfiguration
    (II) RADEON(0): I2C device "VGA-0:ddc2" registered at address 0xA0.
    (II) RADEON(0): I2C device "VGA-0:ddc2" removed.
    (II) RADEON(0): Output: VGA-0, Detected Monitor Type: 0
    (II) RADEON(0): Output: LVDS, Detected Monitor Type: 0
    in RADEONProbeOutputModes
    (II) RADEON(0): Added native panel mode: 1400x1050
    (II) RADEON(0): Adding Screen mode: 1280x1024
    (II) RADEON(0): Adding Screen mode: 1024x768
    (II) RADEON(0): Total number of valid Screen mode(s) added: 2
    (II) RADEON(0): Output: S-video, Detected Monitor Type: 0
    (II) RADEON(0): Output VGA-0 disconnected
    (II) RADEON(0): Output LVDS connected
    (II) RADEON(0): Output S-video disconnected
    (II) RADEON(0): Using user preference for initial modes
    (II) RADEON(0): Output LVDS using initial mode 1400x1050
    after xf86InitialConfiguration
    (==) RADEON(0): DPI set to (96, 96)
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
            compiled for 1.5.3, module version = 1.0.0
            ABI class: X.Org ANSI C Emulation, version 0.4
    (==) RADEON(0): Using gamma correction (1.0, 1.0, 1.0)
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Module "ramdac" already built-in
    (==) RADEON(0): Using XAA acceleration architecture
    (II) Loading sub module "xaa"
    (II) LoadModule: "xaa"
    (II) Loading /usr/lib/xorg/modules//libxaa.so
    (II) Module xaa: vendor="X.Org Foundation"
            compiled for 1.5.3, module version = 1.2.0
            ABI class: X.Org Video Driver, version 4.1
    (==) RADEON(0): Assuming overlay scaler buffer width is 1920
    (II) RADEON(0): No MM_TABLE found - assuming CARD is not TV-in capable.
    (!!) RADEON(0): For information on using the multimedia capabilities
            of this adapter, please see http://gatos.sf.net.
    (!!) RADEON(0): MergedFB support has been removed and replaced with xrandr 1.2 support
    (--) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC?  No, I don't.
    (II) resource ranges after preInit:
            [0] -1  0       0xffffffff - 0xffffffff (0x1) MX[b]
            [1] -1  0       0x000f0000 - 0x000fffff (0x10000) MX[b]
            [2] -1  0       0x000c0000 - 0x000effff (0x30000) MX[b]
            [3] -1  0       0x00000000 - 0x0009ffff (0xa0000) MX[b]
            [4] 0   0       0x000a0000 - 0x000affff (0x10000) MS[b](OprU)
            [5] 0   0       0x000b0000 - 0x000b7fff (0x8000) MS[b](OprU)
            [6] 0   0       0x000b8000 - 0x000bffff (0x8000) MS[b](OprU)
            [7] -1  0       0x0000ffff - 0x0000ffff (0x1) IX[b]
            [8] -1  0       0x00000000 - 0x00000000 (0x1) IX[b]
            [9] 0   0       0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
            [10] 0  0       0x000003c0 - 0x000003df (0x20) IS[b](OprU)
    (II) RADEON(0): RADEONScreenInit a8000000 0 0
    Entering TV Save
    Save TV timing tables
    saveTimingTables: reading timing tables
    TV Save done
    (II) RADEON(0): Dynamic Clock Scaling Disabled
    (==) RADEON(0): Using 24 bit depth buffer
    (II) RADEON(0): RADEONInitMemoryMap() :
    (II) RADEON(0):   mem_size         : 0x04000000
    (II) RADEON(0):   MC_FB_LOCATION   : 0xabffa800
    (II) RADEON(0):   MC_AGP_LOCATION  : 0xffffffc0
    (II) RADEON(0): Depth moves disabled by default
    (II) RADEON(0): Using 32 MB GART aperture
    (II) RADEON(0): Using 1 MB for the ring buffer
    (II) RADEON(0): Using 2 MB for vertex/indirect buffers
    (II) RADEON(0): Using 29 MB for GART textures
    (II) RADEON(0): Memory manager initialized to (0,0) (1408,8191)
    (II) RADEON(0): Reserved area from (0,1200) to (1408,1202)
    (II) RADEON(0): Largest offscreen area available: 1408 x 6989
    (II) RADEON(0): Will use front buffer at offset 0x0
    (II) RADEON(0): Will use back buffer at offset 0xd10000
    (II) RADEON(0): Will use depth buffer at offset 0x1382000
    (II) RADEON(0): Will use 38912 kb for textures at offset 0x19f4000
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 10, (OK)
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 10, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:01:00.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 10, (OK)
    drmOpenByBusid: drmOpenMinor returns 10
    drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
    (II) [drm] DRM interface version 1.3
    (II) [drm] DRM open master succeeded.
    (II) RADEON(0): [drm] Using the DRM lock SAREA also for drawables.
    (II) RADEON(0): [drm] framebuffer handle = 0xa8000000
    (II) RADEON(0): [drm] added 1 reserved context for kernel
    (II) RADEON(0): X context handle = 0x1
    (II) RADEON(0): [drm] installed DRM signal handler
    (==) RADEON(0): Using AGP 4x
    (II) RADEON(0): [agp] Mode 0x1f000207 [AGP 0x8086/0x3340; Card 0x1002/0x4e50]
    (II) RADEON(0): [agp] 32768 kB allocated with handle 0x00000001
    (II) RADEON(0): [agp] ring handle = 0xb0000000
    (II) RADEON(0): [agp] Ring mapped at 0xb37a2000
    (II) RADEON(0): [agp] ring read ptr handle = 0xb0101000
    (II) RADEON(0): [agp] Ring read ptr mapped at 0xb7f7a000
    (II) RADEON(0): [agp] vertex/indirect buffers handle = 0xb0102000
    (II) RADEON(0): [agp] Vertex/indirect buffers mapped at 0xb35a2000
    (II) RADEON(0): [agp] GART texture map handle = 0xb0302000
    (II) RADEON(0): [agp] GART Texture map mapped at 0xb1922000
    (II) RADEON(0): [drm] register handle = 0xe0010000
    (II) RADEON(0): [dri] Visual configs initialized
    (II) RADEON(0): RADEONRestoreMemMapRegisters() :
    (II) RADEON(0):   MC_FB_LOCATION   : 0xabffa800 0x1fff0000
    (II) RADEON(0):   MC_AGP_LOCATION  : 0xffffffc0
    (==) RADEON(0): Backing store disabled
    (II) RADEON(0): [DRI] installation complete
    (II) RADEON(0): [drm] Added 32 65536 byte vertex/indirect buffers
    (II) RADEON(0): [drm] Mapped 32 vertex/indirect buffers
    (II) RADEON(0): [drm] dma control initialized, using IRQ 10
    (II) RADEON(0): [drm] Initialized kernel GART heap manager, 29884416
    (WW) RADEON(0): DRI init changed memory map, adjusting ...
    (WW) RADEON(0):   MC_FB_LOCATION  was: 0xabffa800 is: 0xabffa800
    (WW) RADEON(0):   MC_AGP_LOCATION was: 0xffffffc0 is: 0xb1ffb000
    (II) RADEON(0): RADEONRestoreMemMapRegisters() :
    (II) RADEON(0):   MC_FB_LOCATION   : 0xabffa800 0xabffa800
    (II) RADEON(0):   MC_AGP_LOCATION  : 0xb1ffb000
    (II) RADEON(0): Direct rendering enabled
    (II) RADEON(0): XAA Render acceleration unsupported on Radeon 9500/9700 and newer. Please use EXA instead.
    (II) RADEON(0): Render acceleration disabled
    (II) RADEON(0): num quad-pipes is 1
    (II) RADEON(0): Using XFree86 Acceleration Architecture (XAA)
            Screen to screen bit blits
            Solid filled rectangles
            8x8 mono pattern filled rectangles
            Indirect CPU to Screen color expansion
            Solid Lines
            Scanline Image Writes
            Setting up tile and stipple cache:
                    32 128x128 slots
                    32 256x256 slots
                    16 512x512 slots
    (II) RADEON(0): Acceleration enabled
    (II) RADEON(0): DPMS enabled
    (==) RADEON(0): Silken mouse enabled
    (II) RADEON(0): Will use 32 kb for hardware cursor 0 at offset 0x00674c00
    (II) RADEON(0): Will use 32 kb for hardware cursor 1 at offset 0x00678e00
    (II) RADEON(0): Largest offscreen area available: 1408 x 6983
    (II) RADEON(0): No video input capabilities detected and no information is provided - disabling multimedia i2c
    (II) Loading sub module "theatre_detect"
    (II) LoadModule: "theatre_detect"
    (II) Loading /usr/lib/xorg/modules/multimedia//theatre_detect_drv.so
    (II) Module theatre_detect: vendor="X.Org Foundation"
            compiled for 1.5.2, module version = 1.0.0
            ABI class: X.Org Video Driver, version 4.1
    (II) RADEON(0): no multimedia table present, disabling Rage Theatre.
    (II) RADEON(0): Set up overlay video
    (II) RADEON(0): Set up textured video
    init memmap
    init common
    init crtc1
    init pll1
    restore memmap
    (II) RADEON(0): RADEONRestoreMemMapRegisters() :
    (II) RADEON(0):   MC_FB_LOCATION   : 0xabffa800 0xabffa800
    (II) RADEON(0):   MC_AGP_LOCATION  : 0xb1ffb000
    restore common
    restore crtc1
    restore pll1
    finished PLL1
    restore LVDS
    (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    (--) RandR disabled
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-APPGROUP
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) Initializing built-in extension XEVIE
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:01:00.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 11, (OK)
    drmOpenByBusid: drmOpenMinor returns 11
    drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
    (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    (II) AIGLX: enabled GLX_texture_from_pixmap with driver support
    (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/r300_dri.so
    (II) GLX: Initialized DRI GL provider for screen 0
    (II) RADEON(0): Setting screen physical size to 370 x 277
    (II) config/hal: Adding input device SynPS/2 Synaptics TouchPad
    (II) LoadModule: "synaptics"
    (II) Loading /usr/lib/xorg/modules/input//synaptics_drv.so
    (II) Module synaptics: vendor="X.Org Foundation"
            compiled for 1.5.3, module version = 0.99.1
            Module class: X.Org XInput Driver
            ABI class: X.Org XInput driver, version 2.1
    (II) Synaptics touchpad driver version 0.99.1
    (**) Option "Device" "/dev/input/event8"
    (II) SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5472
    (II) SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4448
    (II) SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    (II) SynPS/2 Synaptics TouchPad: finger width range 0 - 0
    (II) SynPS/2 Synaptics TouchPad: buttons: left right middle double triple
    (--) SynPS/2 Synaptics TouchPad touchpad found
    (**) SynPS/2 Synaptics TouchPad: always reports core events
    (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD)
    (--) SynPS/2 Synaptics TouchPad touchpad found
    (II) config/hal: Adding input device Logitech USB Receiver
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input//evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
            compiled for 1.5.2, module version = 2.0.7
            Module class: X.Org XInput Driver
            ABI class: X.Org XInput driver, version 2.1
    (**) Logitech USB Receiver: always reports core events
    (**) Logitech USB Receiver: Device: "/dev/input/event4"
    (II) Logitech USB Receiver: Found keys
    (II) Logitech USB Receiver: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: KEYBOARD)
    (**) Option "xkb_rules" "base"
    (**) Logitech USB Receiver: xkb_rules: "base"
    (**) Option "xkb_model" "evdev"
    (**) Logitech USB Receiver: xkb_model: "evdev"
    (**) Option "xkb_layout" "us"
    (**) Logitech USB Receiver: xkb_layout: "us"
    (II) config/hal: Adding input device Logitech USB Receiver
    (**) Logitech USB Receiver: always reports core events
    (**) Logitech USB Receiver: Device: "/dev/input/event3"
    (II) Logitech USB Receiver: Found x and y relative axes
    (II) Logitech USB Receiver: Found mouse buttons
    (II) Logitech USB Receiver: Configuring as mouse
    (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: MOUSE)
    (II) config/hal: Adding input device C-Media USB Headphone Set
    (**) C-Media USB Headphone Set: always reports core events
    (**) C-Media USB Headphone Set: Device: "/dev/input/event2"
    (II) C-Media USB Headphone Set: Found keys
    (II) C-Media USB Headphone Set: Configuring as keyboard
    (II) XINPUT: Adding extended input device "C-Media USB Headphone Set" (type: KEYBOARD)
    (**) Option "xkb_rules" "base"
    (**) C-Media USB Headphone Set: xkb_rules: "base"
    (**) Option "xkb_model" "evdev"
    (**) C-Media USB Headphone Set: xkb_model: "evdev"
    (**) Option "xkb_layout" "us"
    (**) C-Media USB Headphone Set: xkb_layout: "us"
    (II) config/hal: Adding input device AT Translated Set 2 keyboard
    (**) AT Translated Set 2 keyboard: always reports core events
    (**) AT Translated Set 2 keyboard: Device: "/dev/input/event1"
    (II) AT Translated Set 2 keyboard: Found keys
    (II) AT Translated Set 2 keyboard: Configuring as keyboard
    (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    (**) Option "xkb_rules" "base"
    (**) AT Translated Set 2 keyboard: xkb_rules: "base"
    (**) Option "xkb_model" "evdev"
    (**) AT Translated Set 2 keyboard: xkb_model: "evdev"
    (**) Option "xkb_layout" "us"
    (**) AT Translated Set 2 keyboard: xkb_layout: "us"
    (II) config/hal: Adding input device Macintosh mouse button emulation
    (**) Macintosh mouse button emulation: always reports core events
    (**) Macintosh mouse button emulation: Device: "/dev/input/event0"
    (II) Macintosh mouse button emulation: Found x and y relative axes
    (II) Macintosh mouse button emulation: Found mouse buttons
    (II) Macintosh mouse button emulation: Configuring as mouse
    (II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
    (II) RADEON(0): I2C device "VGA-0:ddc2" registered at address 0xA0.
    (II) RADEON(0): I2C device "VGA-0:ddc2" removed.
    (II) RADEON(0): Output: VGA-0, Detected Monitor Type: 0
    (II) RADEON(0): Output: LVDS, Detected Monitor Type: 0
    in RADEONProbeOutputModes
    (II) RADEON(0): Added native panel mode: 1400x1050
    (II) RADEON(0): Adding Screen mode: 1280x1024
    (II) RADEON(0): Adding Screen mode: 1024x768
    (II) RADEON(0): Total number of valid Screen mode(s) added: 2
    (II) RADEON(0): Output: S-video, Detected Monitor Type: 0
    sorry for this huge post - but i think that's all needed.... so does anybody have a clue?
    thanks and bye
    smax

    Thanks Bob for that very fast reply!
    But neither "Modifying hal configuration" nor "Using the Desktop Environment settings" (xfce) worked. So I tried the "I don't want this crap, how do I turn it off?" solution and well it works
    Maybe I turn it back on in a month or so.. but for now i'm fine with no hot plugging but a working keyboard...
    Thanks and Bye!
    smax
    Last edited by smaxer (2008-12-09 17:42:43)

  • Buttons don't work

    I am working on a small application.
    My main frame is a public class that defines two buttons in its constructor one for input and the other for feedback.
    The input screen and the feedback screens are defined as inner listener classes of the main class.
    The code compiles fine but the buttons don't work.Please take a look at my code and make suggestions for what I am doing wrong
    Thanks
    import java.awt.*;
    import java.awt.event.*;
    public class project1 extends Frame {
    static Object source;
    static Button input, feedback, apply;
    public project1(){ 
    super("Project Development Coordination System");     
    setSize(500,500);
    setLayout(new BorderLayout());
    //Build and add 1st Panel of project1
    Panel p1 = new Panel(new BorderLayout());
    TextField Title = new TextField();
    Title.setFont(new Font("Sansserif", Font.BOLD, 48));
    Title.setText("HORNSONIC");
    Title.setEditable(false);
    TextField Name = new TextField();
    Name.setFont(new Font("Sansserif", Font.BOLD, 30));
    Name.setText("Hera International, Inc.");
    Name.setEditable(false);
    p1.add(Title, BorderLayout.NORTH);
    p1.add(Name, BorderLayout.CENTER);
    add(p1, BorderLayout.NORTH);
    //Build and add 2nd Panel
    Panel PDCS = new Panel();
    TextField pdcs = new TextField();
    pdcs.setFont(new Font("Sanserif", Font.BOLD, 22));
    pdcs.setText("Project Development Coordination System");
    pdcs.setEditable(false);
    PDCS.add(pdcs);
    add(PDCS, BorderLayout.CENTER);
    //Build and add 3rd Panel
    Panel buttons = new Panel();
    Button input = new Button("INPUT");
    buttons.add(input);
    Button feedback = new Button("FEEDBACK");
    buttons.add(feedback);
    input.addActionListener( new Input());
    feedback.addActionListener(new Feedback());
    add(buttons, BorderLayout.SOUTH);
    addWindowListener(new WindowAdapter(){
    public void windowClosing(WindowEvent event){
         System.exit(0);
    //end of project1()
    //Input class     
    static class Input extends Frame implements ActionListener {
              Input(){
    super("Input");
    setSize(500,500);
    //Build and add FirstPanel of the Frame
    Panel FP = new Panel(new BorderLayout());
    //Build and add northpanel of FP
    Panel np = new Panel(new BorderLayout());
    //Build and add subpanel1 of np
    Panel subpanel1= new Panel();
    Label L1 = new Label("Sample#");
    TextField T1 = new TextField(10);
    T1.setEditable(true);
    Label L12 = new Label("Customer:");
    TextField ctf = new TextField(10);
    ctf.setBackground(Color.gray);
    ctf.setForeground(Color.black);
    ctf.setEditable(true);
    subpanel1.add(L1);
    subpanel1.add(T1);
    subpanel1.add(L12);
    subpanel1.add(ctf);
    //Build and add subpanel2 of np
    Panel subpanel2 = new Panel();
    TextField sub1t = new TextField(10);
    sub1t.setBackground(Color.gray);
    sub1t.setForeground(Color.black);
    sub1t.setEditable(true);
    subpanel2.add(sub1t);
    Label sublabel = new Label("Model#");
    subpanel2.add(sublabel);
    TextField sub2t = new TextField(10);
    sub2t.setBackground(Color.gray);
    sub2t.setForeground(Color.black);
    sub2t.setEditable(true);
    subpanel2.add(sub2t);
    np.add(subpanel1, BorderLayout.NORTH);
    np.add(subpanel2, BorderLayout.CENTER);
    FP.add(np, BorderLayout.NORTH);
    //Build and add centerpanel of FP
    Panel cp = new Panel(new BorderLayout());
    //Build and add subcenter1 of centerpanel
    Panel subcenter1 = new Panel(new BorderLayout());
    Panel NP = new Panel();
    Label Project = new Label("Project Scope");
    NP.add(Project);
    TextField PS = new TextField(10);
    PS.setBackground(Color.gray);
    PS.setForeground(Color.black);
    PS.setEditable(true);
    NP.add(PS);
    Label Appl = new Label("Application:");
    NP.add(Appl);
    TextField Price1 = new TextField(10);
    Price1.setBackground(Color.gray);
    Price1.setForeground(Color.black);
    Price1.setEditable(true);
    NP.add(Price1);
    subcenter1.add(NP, BorderLayout.NORTH);
    Panel CP = new Panel();
    Label TP = new Label("Target Price-");
    CP.add(TP);
    TextField appl = new TextField(10);
    appl.setBackground(Color.gray);
    appl.setForeground(Color.black);
    appl.setEditable(true);
    CP.add(appl);
    Label quote = new Label("Quoted Price-");
    CP.add(quote);
    TextField Q = new TextField(10);
    Q.setBackground(Color.gray);
    Q.setForeground(Color.black);
    Q.setEditable(true);
    CP.add(Q);
    subcenter1.add(CP, BorderLayout.CENTER);
    cp.add(subcenter1, BorderLayout.NORTH);
    //Build subcenter panel of cp
    Panel subcenter = new Panel(new GridLayout(1,3));
    List list = new List (3,true);
    list.addItem("Woofer:");
    list.addItem("Mid:");
    list.addItem("Tweeter");
    subcenter.add(list);
    TextArea inches = new TextArea(3,5);
    inches.setBackground(Color.gray);
    inches.setForeground(Color.black);
    inches.setEditable(true);
    subcenter.add(inches);
    List list1 = new List(3, true);
    list1.addItem("Count-");
    list1.addItem("Count-");
    list1.addItem("Count-");
    subcenter.add(list1);
    TextArea count = new TextArea(3,5);
    count.setBackground(Color.gray);
    count.setForeground(Color.black);
    count.setEditable(true);
    subcenter.add(count);
    List list2 = new List(3, true);
    list2.addItem("Materials:");
    list2.addItem("Materials:");
    list2.addItem("Materials:");
    subcenter.add(list2);
    TextArea materials = new TextArea(3,5);
    materials.setBackground(Color.gray);
    materials.setForeground(Color.black);
    materials.setEditable(true);
    subcenter.add(materials);
    cp.add(subcenter, BorderLayout.CENTER);
    FP.add(cp, BorderLayout.CENTER);
    //Build and add southpanel of FP
    Panel sp = new Panel();
    TextArea comments = new TextArea("Comments:", 3,30);
    sp.add(comments);
    FP.add(sp, BorderLayout.SOUTH);
    add(FP, BorderLayout.NORTH);
    //Build and add SouthPanel of Frame
    Panel SP = new Panel();
    List l1 = new List(8,true);
    l1.addItem("Quote Requested:");
    l1.addItem("Quote to be completed by:");
    l1.addItem("Sample Requested:");
    l1.addItem("STd sent to Factory:");
    l1.addItem("Factory estimated ETD:");
    l1.addItem("Revised ETD#1:");
    l1.addItem("Revised ETD#2:");
    l1.addItem("Revised ETD#3:");
    SP.add(l1);
    TextArea dates1 = new TextArea(8,8);
    dates1.setBackground(Color.gray);
    dates1.setForeground(Color.black);
    dates1.setEditable(true);
    SP.add(dates1);
    List l2 = new List(8, true);
    l2.addItem("Days Quote overdue:");
    l2.addItem("Date Quote Received:");
    l2.addItem("Actual ETD:");
    l2.addItem("Sample Arrival Date:");
    l2.addItem("Days Sample overdue:");
    l2.addItem("Days in Development:");
    l2.addItem("Date sent to customer:");
    l2.addItem("Actual Days to customer:");
    SP.add(l2);
    TextArea dates2 = new TextArea(8,8);
    dates2.setBackground(Color.gray);
    dates2.setForeground(Color.black);
    dates2.setEditable(true);
    SP.add(dates2);
    add(SP, BorderLayout.SOUTH);
    //Build and add CenterPanel of Frame
    Panel TD = new Panel();
    TextField td = new TextField("TIME IN DEVELOPMENT");
    TD.add(td);
    add(TD, BorderLayout.CENTER);
              addWindowListener(new WindowAdapter(){
    public void windowClosing(WindowEvent event){
         System.exit(0);
    }// end of input()
    public void actionPerformed(ActionEvent Event)
    Object source = Event.getSource();
    if (source == input){
                   new Input();
                   setVisible(true);
    }//end of input if
              }//end of actionPerformed.
         }//end of class input
    //Feedback class
    static class Feedback extends Frame implements ActionListener{
    Feedback(){
    super("Feedback");
    setSize(500,500);
    //Build and add panel 1.
    Panel p1 = new Panel(new BorderLayout());;
    //Build and subpanel off panel 1
    Panel subpanel1= new Panel();
    Label L1 = new Label("Sample#");
    TextField T1 = new TextField(10);
    T1.setEditable(true);
    Label L12 = new Label("Customer:");
    TextField ctf = new TextField(10);
    ctf.setBackground(Color.gray);
    ctf.setForeground(Color.black);
    ctf.setEditable(true);
    subpanel1.add(L1);
    subpanel1.add(T1);
    subpanel1.add(L12);
    subpanel1.add(ctf);
    Panel subpanel2 = new Panel();
    TextField sub1t = new TextField(10);
    sub1t.setBackground(Color.gray);
    sub1t.setForeground(Color.black);
    sub1t.setEditable(true);
    subpanel2.add(sub1t);
    Label sublabel = new Label("Model#");
    subpanel2.add(sublabel);
    TextField sub2t = new TextField(10);
    sub2t.setBackground(Color.gray);
    sub2t.setForeground(Color.black);
    sub2t.setEditable(true);
    subpanel2.add(sub2t);
    p1.add(subpanel1, BorderLayout.NORTH);
    p1.add(subpanel2, BorderLayout.CENTER);
    add(p1, BorderLayout.NORTH);
    //Build and add Panel 2
    Panel p2 = new Panel(new BorderLayout());
    //Build and add subcenter1 of Panel 2.
    Panel subcenter1 = new Panel(new BorderLayout());
    //Build subpanels of subcenter 1.
    Panel NP = new Panel();
    Label Project = new Label("Project Scope");
    NP.add(Project);
    TextField PS = new TextField(10);
    PS.setBackground(Color.gray);
    PS.setForeground(Color.black);
    PS.setEditable(true);
    NP.add(PS);
    Label Appl = new Label("Application:");
    NP.add(Appl);
    TextField Price1 = new TextField(10);
    Price1.setBackground(Color.gray);
    Price1.setForeground(Color.black);
    Price1.setEditable(true);
    NP.add(Price1);
    subcenter1.add(NP, BorderLayout.NORTH);
    Panel CP = new Panel();
    Label TP = new Label("Target Price-");
    CP.add(TP);
    TextField appl = new TextField(10);
    appl.setBackground(Color.gray);
    appl.setForeground(Color.black);
    appl.setEditable(true);
    CP.add(appl);
    Label quote = new Label("Quoted Price-");
    CP.add(quote);
    TextField Q = new TextField(10);
    Q.setBackground(Color.gray);
    Q.setForeground(Color.black);
    Q.setEditable(true);
    CP.add(Q);
    subcenter1.add(CP, BorderLayout.CENTER);
    p2.add(subcenter1, BorderLayout.NORTH);
    //BUILD and add subcenter to Panel 2);
    Panel subcenter = new Panel();
    List list = new List (3,true);
    list.addItem("Woofer:");
    list.addItem("Mid:");
    list.addItem("Tweeter");
    subcenter.add(list);
    TextArea inches = new TextArea(3,5);
    inches.setBackground(Color.gray);
    inches.setForeground(Color.black);
    inches.setEditable(true);
    subcenter.add(inches);
    List list1 = new List(3, true);
    list1.addItem("Count-");
    list1.addItem("Count-");
    list1.addItem("Count-");
    subcenter.add(list1);
    TextArea count = new TextArea(3,5);
    count.setBackground(Color.gray);
    count.setForeground(Color.black);
    count.setEditable(true);
    subcenter.add(count);
    List list2 = new List(3, true);
    list2.addItem("Materials:");
    list2.addItem("Materials:");
    list2.addItem("Materials:");
    subcenter.add(list2);
    TextArea materials = new TextArea(3,5);
    materials.setBackground(Color.gray);
    materials.setForeground(Color.black);
    materials.setEditable(true);
    subcenter.add(materials);
    p2.add(subcenter, BorderLayout.CENTER);
    //Build and add south subpanel of Panel 2
    Panel subpanel = new Panel();
    Label L2 = new Label("Sample Disposition:");
    subpanel.add(L2);
    TextField T2 = new TextField(10);
    T2.setEditable(true);
    subpanel.add(T2);
    Label l2 = new Label("Date:");
    subpanel.add(l2);
    TextField t2 = new TextField(10);
    t2.setEditable(true);
    subpanel.add(t2);
    TextArea TF = new TextArea("Feedback:",3,30);
    TF.setEditable(true);
    subpanel.add(TF);
    p2.add(subpanel, BorderLayout.SOUTH);
    add(p2, BorderLayout.CENTER);
    //Build and add Panel 3.
    Panel p3 = new Panel();
    Label L3 = new Label("Project Continued on Revision#:");
    TextField T3 = new TextField(10);
    T3.setEditable(true);
    Label l3 = new Label("Order Placed:");
    TextField t3 = new TextField(10);
    t3.setEditable(true);
    p3.add(L3);
    p3.add(T3);
    p3.add(l3);
    p3.add(t3);
    add(p3, BorderLayout.SOUTH);
    setVisible(true);
    addWindowListener(new WindowAdapter(){
    public void windowClosing(WindowEvent event){
         System.exit(0);
    }//end of Feedback()
    public void actionPerformed(ActionEvent AE){
    if (AE.getSource() == feedback){
    new Feedback();
         setVisible(true);
    }//end of feedback if
    }//end of actionPerformed
    }//end of class Feedback
    public static void main (String args[]){
         project1 window = new project1();
         window.setVisible(true);
         //end of main
    }//end.

    I compiled and did run your code....
    it seems you are trying to implement a Frame with two buttons... each time the user click on a button, the main frame displays the equivalent panel with a set of components .. isn�t it ?
    well... some tips:
    1 - Why don�t you use a JTabbedPane ? a much better container than a simple Frame....
    2 - If you really need to use a Frame as a container of multiple forms.. then you should take a look in the java.awt.CardLayout
    other tip: don�t use the Frame component as the same class as the ActionListener.. divie these comopnents in two classes...

  • Why excel output on the ALV Application Tool bar  don't work

    most of our company's report was view in the ALV, but the standard excel output function on the ALV Application Toolbar don't work. 
    DEFINE ADD_FIELD.
      WA_FIELD-FIELDNAME = &1.
      WA_FIELD-REPTEXT_DDIC = &2.
      APPEND WA_FIELD TO IT_FIELD.
    END-OF-DEFINITION.
    the micro above is how i fill the SLIS_FIELDCAT_ALV, is that has some problem ?
    i  am expecting for you guys  help .

    Thanks for answer me , and the problem was sovled by my colleague,  go to the toolbar   option / security / macro security/ trust access to visual basic project, and select it . and you will fine the FM REUSE_ALV_GRID_DISPLAY can use the standard excel output now .
    &#27815;&#28010;&#20043;&#27700;
    msn&#65306;[email protected]
    qq  &#65306; 107198046
    skype&#65306;zhangdezhao
    gtalk&#65306;[email protected]
    yahoo msgr&#65306;dezhaozhang
    Edited by: dezhao zhang on Jan 15, 2008 2:26 AM

  • Run form don't work

    Hi
    I have install in a PC4 with windows XP professional Oracle EM 9.2 and 9iDS (Form Builder [32 bit]. Use the layout wizard to make the form, but when I call Run Form open the IE or Netscape and both browsers never ends to open the form:
    http://tritoni2:1521/forms90/f90servlet/admin?form=C:\oraclei\fomas_enc\identif_enc.fmx&userid=GHC/1QAZXSW2@oaxsiers&buffer_records=NO&debug_messages=YES&array=YES&query_only=NO&quiet=NO&RENDER=YES
    I review the preferences and appear are correct but don't work.
    Any suggestion is welcome.
    Best regards
    Gilberto Hernandez Cardenas

    well, IE only send the message "500 Internal Server Error" and the nexts:
    java.lang.NullPointerException
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java:64)
         at java.io.FileReader.<init>(FileReader.java:38)
         at oracle.forms.servlet.ConfigFileParser.<init>(Unknown Source)
         at oracle.forms.servlet.FormsServlet.getOracleHome(Unknown Source)
         at oracle.forms.servlet.FormsServlet.testJNI(Unknown Source)
         at oracle.forms.servlet.FormsServlet.doGet(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:244)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:59)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:283)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:523)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:269)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:735)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpRequestHandler.run(HttpRequestHandler.java:243)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].util.ThreadPoolThread.run(ThreadPoolThread.java:64)

Maybe you are looking for

  • Runtime error Dynpro_not_found

    Hi experts, I get the following runtime error when trying to open a Z table under SM30. Short text                              Dynpro does not exist          Error analysis                                                                 The system a

  • Editing a project

    Hello I recently started working on a video project using .mpg format videos. I have already completed another project successfully using the same format and videos from the same source. However, when I went to open this current project, the program

  • SB Audigy 1 : Loudness of audio-outputs adjustabl

    Hi is it possible to get the second output (black) as loud as the first one (green) ? I can make the front output as quiet as the second one in the surround mixer but there seems to be a max loudness level so i cant make it other way around. anybody

  • After installing Lion 10.7.2, user login can't identify password with Filevault 2 activeted

    Hello. I used Filevault 2 until last update of Lion, 10.7.2, because it don't let me logging in...as if unaware the password, but password recovery fortunatly! Ok, then I've changed password and the suggestion. After reboot the problem persists and i

  • Map LDAP/eDir "Language" and Vibe "Locale" attributes ?

    Hello, We can map a lot of LDAP/eDir user attributes with the Novell Vibe user attributes. Now, I would like to know if it is possible to map the "language" attributes ? The idea is to get the user "language" attribute from eDir and, based on it, to