I m sure this is a bug !

i have No NumberConvertor in the page but still getting NumberConverotor Error
plz do this to reproduce the bug
Place a TextField Component on the page
drag and drop NumberConvertor on to
the TextField
NumberConvertor is not visible Component
u can see it in Document Outline Window
and also u can see
setter and getter for it in page bean
now delete it(number converter) from Document Outline Window
The number converter is deleted
now there is no setter and getter methods
for NumberConvertor in PageBean(or Managed Bean)
Save it and build the application
The TextFeild Componet appears in the
Browser
Enter some Value and press enter
The browser displays error regarding
NumberConvertor
plz do comment on it ,
I would be happy if any one can figure out the problem

Yes, this is a bug.
If you click on the "Source" tab, you can see the JSP that has been generated. The inputText field still has a reference to the number converter -- this should have been removed, but was not.
<h:inputText binding="#{Page1.textField1}" converter="#{Page1.numberConverter1}" id="textField1" style="position: absolute; left: 456px; top: 624px"/>You can remove
converter="#{Page1.numberConverter1}" and you should no longer see the error.
-jeff

Similar Messages

  • In logic Pro, when I open up an audio track and load an audio file, there is no sound. I will finally get a sound out of one of the audio tracks after opening at least 5 of them alternately. Is anyone familiar with this kind of bug? It's really frustratin

    In logic Pro, when I open up an audio track or software track and load an audio file/loop or software file loop, there is no sound. I will finally get a sound out of one of the audio or software tracks after opening at least 5 of them alternately. Is anyone familiar with this kind of bug? It's really frustrating as this takes much time to complete work.
    os x, Mac OS X (10.6)

    I'm not sure I follow your words Fuzzynormal. You've helped by offering the insight that my issue in Logic Pro 9 is not a bug but a feature. But fell short of enlightenment by being a judge of character and of how one should interact in this forum. You insinuate that I haven't tried to solve the issue on my own when in fact I have. These forums are always my last resort. You further suggest that I am complaining. This is not a complaint. It is a genuine issue that I cannot figure out. Then you think that Brazeca is holding my hand and being a nice guy. Brazeca is helping people like me who might not be as adept at using Logic Pro as probably you are.This community forum was established to raise questions, answers and dicussion to help Apple's customers better undertand their operating systems and related issues. You are doing a disservice by not contributing positively and by trying to make this forum what you want it to be. You may have all the time in the world to try figuring out stuff but we are not all like you. We all have different schedules and different levels of understanding. And that is what this forum is for - to help people move forward. If you can't contribute positively then keep silent. And by the way, you say to "read the words that are printed down to explain to you how that works" what words are you talking about? Why don't you be of some help instead of trying to own this forum. 

  • Is this a JOGL bug with GLJPanel, a driver problem, or what?

    I've been trying to eliminate a problem I've been experiencing with my WorldWind Java (WWJ) application and I think I've finally taken a step torward finding the root cause, but I'm not sure whose problem it is yet or who to report it to, so I thought I'd start here and work my way up; if it can't get solved here, maybe it's a driver issue.
    The issue goes something like this:
    (Note: this only occurs when the -Dsun.java2d.opengl=true flag is set.)
    I have a GLJPanel on my primary display that works beautifully. I drag that panel onto my secondary display (slowly) and it disappears. Poof. If I position the panel halfway between screens, I can get about half of the panel to render on the secondary display, but any further than that and it disappears. I tried this on a Frame and with a GLCanvas as well and got different results: in a Frame, if I dragged the Panel over and then dragged it back into the primary display, it would disappear on the secondary display, but reappear on the primary display once it was dragged back. With the GLCanvas, I didn't have any issues.
    It's fairly simple to recreate this on my computer by using a WorldWind example that extends ApplicationTemplate and just adjusting ApplicationTemplate to use WWGLJPanels.
    However, I went so far as to reproduce the problem with a plain old GLJPanel:
    import com.sun.opengl.util.Animator;
    import java.awt.GridLayout;
    import javax.media.opengl.GL;
    import javax.media.opengl.GLAutoDrawable;
    import javax.media.opengl.GLJPanel;
    import javax.media.opengl.GLCapabilities;
    import javax.media.opengl.GLEventListener;
    import javax.swing.JFrame;
    public class TrianglePanel extends JFrame implements GLEventListener {
        public TrianglePanel() {
            super("Triangle");
            setLayout(new GridLayout());
            setSize(300, 300);
            setLocation(10, 10);
            setVisible(true);
            initTriangle();
        public static void main(String[] args) {
            TrianglePanel tPanel = new TrianglePanel();
            tPanel.setVisible(true);
            tPanel.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        private void initTriangle(){
            GLCapabilities caps = new GLCapabilities();
            caps.setDoubleBuffered(true);
            caps.setHardwareAccelerated(true);
            GLJPanel panel = new GLJPanel(caps);
            panel.addGLEventListener(this);
            add(panel);
            Animator anim = new Animator(panel);
            anim.start();
        public void init(GLAutoDrawable drawable) {
            GL gl = drawable.getGL();
            gl.glClearColor(0, 0, 0, 0);
            gl.glMatrixMode(GL.GL_PROJECTION);
            gl.glLoadIdentity();
            gl.glOrtho(0, 1, 0, 1, -1, 1);
        public void display(GLAutoDrawable drawable) {
            GL gl = drawable.getGL();
            gl.glClear(GL.GL_COLOR_BUFFER_BIT);
            gl.glBegin(GL.GL_TRIANGLES);
            gl.glColor3f(1, 0, 0);
            gl.glVertex3f(0.0f, 0.0f, 0);
            gl.glColor3f(0, 1, 0);
            gl.glVertex3f(1.0f, 0.0f, 0);
            gl.glColor3f(0, 0, 1);
            gl.glVertex3f(0.0f, 1.0f, 0);
            gl.glEnd();
            gl.glFlush();
        public void reshape(GLAutoDrawable drawable, int x, int y, int width, int height) {}
        public void displayChanged(GLAutoDrawable drawable, boolean modeChanged, boolean deviceChanged) {}
    }If it helps, the video card I'm using is a Quadro NVS 140M.

    steffi wrote:
    This is a bug that I'm seeing in Apple's new MobileMe service and I believe they are making use of the System Messaging Server product. (Sun Java(tm) System Messaging Server 6.3-6.03)I can't comment on what Apple may or may not be using ;)
    Specifically I have an email that's MIME HTML and what I observe is that lines >999 chars are being truncated so in my case the nested table doesn't render correctly because a whole chunk of the HTML itself on this line has been truncated.The email client generating the message is broken and Messaging Server is 'fixing' the email by truncating the line to the maximum line-length as per the standards.
    Refer to "2.1.1. Line Length Limits" in http://www.faqs.org/rfcs/rfc2822.html
    Regards,
    Shane.

  • Is this really a "bug" in dba_tab_columns?

    Hi Guys, it's Xev.
    I have been struggling with this for weeks now. No matter what I do, I cannot get my procedure to see dba_tab_columns inside of my procedure at run-time. It just blows up and says
    "cannot see table or view", that generic answer.
    Is there really a bug or limitation with how I am using this dba view? is there something else I can do? it simply will not recognize the other custom users also.
    I have two basic lines of defense here, but both of them do not what I need them to do.
    Can someone please help me on this.
    Ok, this is the "first method" that I have tried to use, it works great, but "only" for one user at a time. I cannot get it to "search" all the rest of the "user schema's". It finds what I tell it to,
    but only in the schema, tables and fields in the user that is executing it. I've tried to switch out (user_tab_columns) for dba_tab_columns, but it blows up and tells me that it "cannot see the table or view".
    This is my preferred method. If you can alter this to make it find other other users in other schema's through-out the entire database, I would do anything for you!!!
    create or replace procedure find_str
             authid current_user
        as
          l_query                 long;
          l_case                  long;
          l_runquery           boolean;
          l_tname         varchar2(30);
          l_cname       varchar2(4000);
          l_refcur       sys_refcursor;
          z_str         varchar2(4000);
      begin
        z_str := '^[0-9]{9}$';
        dbms_output.enable (buffer_size => NULL);
        dbms_application_info.set_client_info (z_str);
        dbms_output.put_line ('Searchword                   Table                          Column/Value');
        dbms_output.put_line ('---------------------------- ------------------------------ --------------------------------------------------');
        for x in (select distinct table_name from all_tables
        where owner not in ('SYS','SYSTEM','MDSYS','OUTLN','CTXSYS','OLAPSYS','OWBSYS','FLOWS_FILES','EXFSYS','SCOTT',
        'APEX_030200','DBSNMP','ORDSYS','SYSMAN','APPQOSSYS','XDB','ORDDATA','WMSYS'))
        loop
           l_query := 'select ''' || x.table_name || ''', $$
                   from ' || x.table_name || '
                   where 1 = 1 and ( 1=0 ';
           l_case := 'case ';
           l_runquery := FALSE;
           for y in ( select *
                  from user_tab_columns
                  where table_name = x.table_name
                  and data_type in ( 'VARCHAR2', 'CHAR' ))
           loop
             l_runquery := TRUE;
             l_query := l_query || ' or regexp_like (' ||
                    y.column_name || ', userenv(''client_info'')) ';
             l_case := l_case || ' when regexp_like (' ||
                   y.column_name || ', userenv(''client_info'')) then ' ||
                   '''<' || y.column_name || '>''||' || y.column_name || '||''</' || y.column_name || '>''';
           end loop;
           if ( l_runquery )
           then
             l_case := l_case || ' else NULL end';
             l_query := replace( l_query, '$$', l_case ) || ')';
            begin
               open l_refcur for l_query;
               loop
                 fetch l_refcur into l_tname, l_cname;
                 exit when l_refcur%notfound;
                 dbms_output.put_line
               (rpad (z_str, 29)   ||
                rpad (l_tname, 31) ||
                rpad (l_cname, 50));
               end loop;
             exception
               when no_data_found then null;
             end;
           end if;
        end loop;
      end find_str;
    NOW,
    This is the second method, it also does a good job finding what i want it to, but still doesn't search the other users and other schema's. If you can alter this to make it find other users and other schema's I'll go crazy! LOL!
    For test data simply create a table in your schema and put a "nine digit" number anywhere in the fields and both of these procedures will find them, but only for that "USER".
    AND, that's my problem, I have to many custom user's to go on the instances and create procedures for each and every user. it's just not practical.
    I really need you guys on this, Happy New Year!
    create or replace PROCEDURE find_string
          --(p_search_string IN VARCHAR2 DEFAULT '^[0-9]{3}-[0-9]{2}-[0-9]{4}$')
          (p_search_string IN VARCHAR2 DEFAULT '^[0-9]{9}$')
        IS
          e_error_in_xml_processing EXCEPTION;
          e_table_not_exist EXCEPTION;
          PRAGMA EXCEPTION_INIT (e_error_in_xml_processing, -19202);
          PRAGMA EXCEPTION_INIT (e_table_not_exist, -942);
        BEGIN
          DBMS_OUTPUT.PUT_LINE ('Searchword           Table              Column/Value');
        DBMS_OUTPUT.PUT_LINE ('---------------------------- ------------------------------ --------------------------------------------------');
        FOR r1 IN
           (SELECT table_name, column_name
            FROM     dba_tab_cols
            WHERE table_name IN (select distinct table_name from dba_tab_cols
    where owner not in ('MDSYS','OUTLN','CTXSYS','OLAPSYS','FLOWS_FILES','OWBSYS','SYSTEM','EXFSYS','APEX_030200','SCOTT','DBSNMP','ORDSYS','SYSMAN','
    APPQOSSYS','XDB','ORDDATA','SYS','WMSYS'))
            --WHERE  table_name = 'FIND_TEST'
            ORDER  BY table_name, column_name)
        LOOP
           BEGIN
             FOR r2 IN
               (SELECT DISTINCT SUBSTR (p_search_string, 1, 28) "Searchword",
                     SUBSTR (r1.table_name, 1, 30) "Table",
                     SUBSTR (t.column_value.getstringval (), 1, 50) "Column/Value"
                FROM   TABLE
                     (XMLSEQUENCE
                    (DBMS_XMLGEN.GETXMLTYPE
                       ( 'SELECT "' || r1.column_name ||
                        '" FROM "' || r1.table_name ||
                        '" WHERE REGEXP_LIKE
                          ("' || r1.column_name || '",'''
                             || p_search_string || ''')'
                       ).extract ('ROWSET/ROW/*'))) t)
             LOOP
               DBMS_OUTPUT.PUT_LINE
                 (RPAD (r2."Searchword", 29) ||
              RPAD (r2."Table", 31)       ||
              RPAD (r2."Column/Value", 50));
             END LOOP;
           EXCEPTION
             WHEN e_error_in_xml_processing THEN NULL;
             WHEN e_table_not_exist THEN NULL;
             WHEN OTHERS THEN RAISE;
           END;
        END LOOP;
      END find_string;
    Happy New Year, if you can get this to find other users!!! GOOD LUCK!

    Hi Solomon,
    Ok, I understand the first 2 grants, but just to make sure this is what I think they are, I don't understand the third grant, so can you supply the actual grant statement.
    Here are the first 2 grant statements. The users name is "directgrant1".
    SQL>  GRANT SELECT ANY TABLE TO DIRECTGRANT1;
    SQL> GRANT SELECT ON SYS.DBA_TAB_COLS TO DIRECTGRANT1;
    Can you please provide the third grant statement?
    Now, this stored procedure code below, actually works, but it only finds the tables and fields within it's own schema. I have over 28 custom schema's to search for this nine digit number, so I need this stored procedure to search all of the schema's/Tables/Fields for a nine digit number in the entire database.
    This stored procedure compiles and executes with no problem, but I need to use dba_tab_cols so it can find all the other users right? or is there a better way to do this Solomon?
    As you can see, this stored procedure code uses "user_tab_cols" and only finds "one user tables/fields". If i use dba_tab_cols in it's place, then will it find all  the other users in the entire database? That is correct right Solomon?  Also, when i ran this procedure last night in my Test Database, it opened 3 cursors. Do we have to tell in in the code somewhere to close the sys_refcursor cursor? or does Oracle close it itself, since it's "implicit?"
    Also, the tables that this will be "searching" actually have 40 Million plus records in them. Could this procedure cause the database to crash? Is 40 Million plus table records to much to use something like what we have below??
    create or replace
    procedure find_sting_nine_digits
            authid current_user
        as
          l_query                 long;
          l_case                  long;
          l_runquery           boolean;
          l_tname         varchar2(30);
          l_cname       varchar2(4000);
          l_refcur       sys_refcursor;
          p_str         varchar2(4000);
      begin
        p_str := '^[0-9]{9}$';
        dbms_output.enable(buffer_size => NULL);
        dbms_application_info.set_client_info (p_str);
        dbms_output.put_line ('Searchword           Table              Column/Value');
        dbms_output.put_line ('---------------------------- ------------------------------ --------------------------------------------------');
        for x in (select * from all_tables
    where table_name not in ('SMEG_WITH_RI','SMEGCITIES','SMEG_WITHOUT_RI'))
        loop
           l_query := 'select ''' || x.table_name || ''', $$
                   from ' || x.table_name || '
                   where 1 = 1 and ( 1=0 ';
           l_case := 'case ';
           l_runquery := FALSE;
           for y in ( select *
                  from user_tab_cols
                  where table_name = x.table_name
                  and data_type in ( 'VARCHAR2', 'CHAR' ))
           loop
             l_runquery := TRUE;
             l_query := l_query || ' or regexp_like (' ||
                    y.column_name || ', userenv(''client_info'')) ';
             l_case := l_case || ' when regexp_like (' ||
                   y.column_name || ', userenv(''client_info'')) then ' ||
                   '''<' || y.column_name || '>''||' || y.column_name || '||''</' || y.column_name || '>''';
           end loop;
           if ( l_runquery )
           then
             l_case := l_case || ' else NULL end';
             l_query := replace( l_query, '$$', l_case ) || ')';
            begin
               open l_refcur for l_query;
               loop
                 fetch l_refcur into l_tname, l_cname;
                 exit when l_refcur%notfound;
                 dbms_output.put_line
               (rpad (p_str, 29)   ||
                rpad (l_tname, 31) ||
                rpad (l_cname, 50));
               end loop;
             exception
               when no_data_found then null;
             end;
           end if;
        end loop;
      end find_sting_nine_digits;

  • Problem with Arabic font: In certain contexts, when writing Arabic with vowel signs (fatha, damma, kasra, sukun) a sequence of sukun   fatha/damma etc. would reverse automatically. Is this a known bug?

    Problem with Arabic font: In certain contexts, when writing Arabic with vowel signs (fatha, damma, kasra, sukun) a sequence of sukun + fatha/damma etc. would reverse automatically. Is this a known bug?
    Example: عَيْنٌ
    would automatically convert to عَيُنْ
    Funnily, it doesn't seem to happen here, but it does when entering text in a web interface (using Firefox, font Bayan) and when using Text Edit.
    Seems to be a problem of a specific font, as e.g. Arial MS Unicode works fine. Any hints?
    Thank you!

    Musaafir wrote:
    I've no idea how i can even start using arabic vowels on Microsoft Word for Apple
    You can't do Arabic on MS Word for Mac.  This app has never supported RTL scripts, so you need to use something else.  Mellel is best, but Pages 5, TextEdit, Nisus Writer, Open/LibreOffice should work OK.
    You switch between languages by using the "flag" menu at the top right of the screen or by using the keyboard shortcuts apple/command plus space.  Go to system prefs/keyboard/shortcuts to make sure that is activated.
    To see which key does what, you use Keyboard  Viewer.
    http://support.apple.com/kb/PH13746
    You place vowels on letters by typing the key for the vowel after the key for the letter.  The vowels are on the option/alt keys, option/alt + a gives you َ

  • Hope this is a bug in JDeveloper....... help needed....

    There's no reply for the following msg... i need help.... is this a bug in JDeveloper?
    Jdeveloper team(Visual Java editor) - anybody watching this?
    i have been waiting for the reply for the past 4 days, so
    Is anyone having suggestion, whether it will work or not? is there any additional feature for this? Every project is multilingual, not only my project, every project is supporting internationalization, so at design time it should support for resource bundle usage. am using Jdev 9.0.5 version, client side we are using swing, so i need a solution for this, does jdev supports this? if so whats d way? if it is not supporting y cant it be considered as a bug? it should be user friendly, so y this can be added as a new feature in the forthcoming version,
    waiting for ur suggestions, whatever it is juz explain,
    Thanking in advance...

    Hi,
    not sure why you hope that this is a bug?
    Swing does support internationalization and JDeveloper supoorts this. However, as usual in Swing, you have to develop it as tehre is no automated way for doing this.
    There is some help provided by ADF in that e..g. BC4J supports message bundles for translating Strings.
    See: http://java.sun.com/docs/books/tutorial/i18n/index.html
    Also, straight from the JDeveloper product page on OTN, though not directly Swing related
    http://www.oracle.com/technology/products/jdev/collateral/papers/10g/jdev10g_multilingual.pdf
    Frank

  • This is a bug, right?

    Hi all,
    I am gettting a NotSerializableException (Shown Below) from a JFileChooser sub-class -- because JFilerChooser implements java.io.Serializable, this is a bug right?
    TIA,
    ablivian23
    java.io.NotSerializableException: javax.swing.JFileChooser$WeakPCL
         at java.io.ObjectOutputStream.writeObject0(Unknown Source)
         at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
         at java.io.ObjectOutputStream.defaultWriteObject(Unknown Source)
         at javax.swing.JFileChooser.writeObject(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
         at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
         at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
         at java.io.ObjectOutputStream.writeObject0(Unknown Source)
         at java.io.ObjectOutputStream.writeArray(Unknown Source)
         at java.io.ObjectOutputStream.writeObject0(Unknown Source)
         at java.io.ObjectOutputStream.access$100(Unknown Source)
         at java.io.ObjectOutputStream$PutFieldImpl.writeFields(Unknown Source)
         at java.io.ObjectOutputStream.writeFields(Unknown Source)
         at java.awt.Container.writeObject(Unknown Source)
         at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
         at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
         at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
         at java.io.ObjectOutputStream.writeObject0(Unknown Source)
         at java.io.ObjectOutputStream.writeArray(Unknown Source)
         at java.io.ObjectOutputStream.writeObject0(Unknown Source)
         at java.io.ObjectOutputStream.access$100(Unknown Source)
         at java.io.ObjectOutputStream$PutFieldImpl.writeFields(Unknown Source)
         at java.io.ObjectOutputStream.writeFields(Unknown Source)
         at java.awt.Container.writeObject(Unknown Source)
         at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
         at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
         at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
         at java.io.ObjectOutputStream.writeObject0(Unknown Source)
         at java.io.ObjectOutputStream.writeArray(Unknown Source)
         at java.io.ObjectOutputStream.writeObject0(Unknown Source)
         at java.io.ObjectOutputStream.access$100(Unknown Source)
         at java.io.ObjectOutputStream$PutFieldImpl.writeFields(Unknown Source)
         at java.io.ObjectOutputStream.writeFields(Unknown Source)
         at java.awt.Container.writeObject(Unknown Source)
         at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
         at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
         at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
         at java.io.ObjectOutputStream.writeObject0(Unknown Source)
         at java.io.ObjectOutputStream.writeArray(Unknown Source)
         at java.io.ObjectOutputStream.writeObject0(Unknown Source)
         at java.io.ObjectOutputStream.access$100(Unknown Source)
         at java.io.ObjectOutputStream$PutFieldImpl.writeFields(Unknown Source)
         at java.io.ObjectOutputStream.writeFields(Unknown Source)
         at java.awt.Container.writeObject(Unknown Source)
         at sun.reflect.GeneratedMethodAccessor46.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
         at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
         at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
         at java.io.ObjectOutputStream.writeObject0(Unknown Source)
         at java.io.ObjectOutputStream.writeObject(Unknown Source)
         at java.awt.Window.writeObject(Unknown Source)
         at sun.reflect.GeneratedMethodAccessor67.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
         at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
         at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
         at java.io.ObjectOutputStream.writeObject0(Unknown Source)
         at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
         at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
         at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
         at java.io.ObjectOutputStream.writeObject0(Unknown Source)
         at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
         at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
         at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
         at java.io.ObjectOutputStream.writeObject0(Unknown Source)
         at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
         at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
         at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
         at java.io.ObjectOutputStream.writeObject0(Unknown Source)
         at java.io.ObjectOutputStream.writeObject(Unknown Source)
         at com.lockheedmartin.SOAP.SoapApplication.saveToFiles(SoapApplication.java:166)
         at com.lockheedmartin.SOAP.SoapApplication.oldRun(SoapApplication.java:232)
         at com.lockheedmartin.SOAP.SoapApplication.main(SoapApplication.java:51)

    hmmm... are you sure the same thing happens with all those versions?
    The build of 1.4.2 that I have does not have a class called javax.swing.JFileChooser$WeakPCL, but 1.5.0 beta does have it:> /usr/java/j2sdk1.4.2_04/bin/javap 'javax.swing.JFileChooser$WeakPCL'
    ERROR:Could not find javax.swing.JFileChooser$WeakPCL
    /usr/java/jdk1.5.0/bin/javap 'javax.swing.JFileChooser$WeakPCL'Compiled from "JFileChooser.java"
    class javax.swing.JFileChooser$WeakPCL extends java.lang.Object implements java.beans.PropertyChangeListener{
        java.lang.ref.WeakReference jfcRef;
        static final boolean $assertionsDisabled;
        public javax.swing.JFileChooser$WeakPCL(javax.swing.JFileChooser);
        public void propertyChange(java.beans.PropertyChangeEvent);
        static {};
    }This does look like a bug in 1.5.0 beta.. could you post a minimal program that reproduces this error, I just tested it and was able to serialize a JFileChooser?
    If it's indeed a bug it should be reported at http://bugs.sun.com/services/bugreport/index.jsp

  • Is this a known bug (copying text freezes up APE)?

    I have had this happen to me several times now, and am now pretty sure what causes it:
    APE freezes up, becoming totally unresponsive. I can't even shut it down (both Organizer and Editor) via Windows Task Manager (Ctrl+Alt+Delete).
    What gets me to this juncture? When I try to rename an image, and have a series with the same base name (such as GoingOverNiagaraFallsInaBarrelOfMonkeys, as in:
    GoingOverNiagaraFallsInaBarrelOfMonkeys1
    GoingOverNiagaraFallsInaBarrelOfMonkeys2
    etc.
    ...and I copy the "base" portion via Ctrl+C -- voila! Everything stops dead in its tracks as if a 900-lb. Grizzly Bear in a bad humor swatted my CPU.
    Is this a known bug?

    when I select all the text in a description (FIle | Info, Description text box on first tab) and copy it, it freezes up (eventually it recovers, though).
    I can't reproduce that with my PSE 8.  Perhaps there's something specific about one or more of your photos that's triggering the problem -- attach one of the problem photos to your reply (use the Web form, not email), and I'll see if happens with my PSE 8.

  • If I am viewing a page with the words date or match, the words are hyperlinks to a dating website. This is not so if I view the same pages in IE and has not been picked up by Norton, Spybot or malware bytes etc. Is this a Firefox bug?

    If I am viewing a page with the words date or match, the words are hyperlinks to a dating website. This is not so if I view the same pages in IE and has not been picked up by Norton, Spybot or malware bytes etc. Is this a Firefox bug?

    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of their databases before doing a scan.<br />
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    See also:
    * "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • Phone locks after receiving a call whilst taking a picture. This is a bug!

    Does anybody else have this issue? I'm sure it's a bug with the iphone5 and iOs.
    Basically, I accesed the camera function from the lock screen (upwards swipe), then I received an incoming call. After the call ended the phone did not return to the camera function, but instead just showed a black screen with the top icons still present. After pressing the home and lock keys nothing happened. The only way to get me out of the "freeze" was to hold down the lock key for 4 seconds. The "Turn off Phone" prompt was shown, by selecting cancel the phone was returned to the home screen display.
    This is repeatable and  is only on my iPhone 5 with iOS 6.1.2. This was tested on an iphone 4s (6.1.2) and did not lock up.
    Looking forward to see if this is another Apple issue!

    I tried to return my iPhone today. They did a factory reset in the shop and the problem got fixed.
    However, I then returned home, synced the phone to iTunes and the problem came back.
    I returned to the shop again, he did a factory reset again and the phone was fixed.
    But now, I cannot plug it into iTunes in fear that it will break again!
    I am using Windows and the only apps that I am syncing are Facebook, Skype, Remote and Google.
    Has anyone else had this problem? Is it my iTunes set up or does my computer have a virus or something?
    Please help!

  • I updated to iOS7 and my deleted photos came back.  How do I make sure this doesn't happen again?

    I updated to iOS7 and my deleted photos came back.  How do I make sure this doesn't happen again?  I want to get rid of the ones I already got rid of, but if they just keep coming back that will be a waste of time. 
    Can anyone help?
    When I sync with itunes, the photos sections says I am syncing with my iphone, so I assume that anything I physically delete from my iphone should not be showing up again.  Right?
    Thanks in advance.
    CM
    PS- I don't use iphoto. 

    Is that really how sync works?
    If you read this, http://support.apple.com/kb/ht4236  and this http://support.apple.com/kb/TS1314  they don't actually make how sync works very clear.  I had thought that syncing my device to itunes would allow I tunes to copy what was currently on my phone so that I could restore that information when needed ie if your phone dies and you need to do a clean install of the iOS system, you always have what is currently on your phone saved in Itunes.
    Specifically reading this:
    To delete Camera Roll photos and videos from your device
    There are two methods to delete items from the Camera Roll:
    Import the Camera Roll to your computer and choose to delete items after import.
    Delete photos and videos from your device manually:
    Open the Photos application and open the Camera Roll.
    Tap the Action button.
    Tap each photo to select it.
    Tap the Delete button.
    Note: For photos and videos you want to save, import them to your computer before deleting them from the Camera Roll.
    What you seem to be saying is that iTunes saves every contact, message, photo etc and when you click sync, it reuploads things that you deleted?  This seems like it should work the opposite.  Make a mirror image of my iPhone on my computer, not make a mirror image of my computer onto my iPhone.  You delete things for a reason. 
    Help- anyone else?  Is razmee209 right?

  • My itunes is on an old computer.  So old that I can't update it and so Haven't used it in two years.  How can I move it to my new laptop and make sure this doesn't happen again?  Very frustrated that I've spend $$ but can't get my music.

    My itunes is on an old computer.  So old that I can't update it and so Haven't used it in two years.  How can I move it to my new laptop and make sure this doesn't happen again?  Very frustrated that I've spend $$ but can't get my music.
    I want so set up itunes on my laptop and make sure that I get all of my old music and any music shared from my sons' itunes accounts.  Do I have to set up itunes on my new laptop first and then use the same logins?  Really concerned about losing any music, etc.

    These are two possible approaches that will normally work to move an existing library to a new computer.
    Method 1
    Backup the library with this User Tip.
    Deauthorize the old computer if you no longer want to access protected content on it.
    Restore the backup to your new computer using the same tool used to back it up.
    Keep your backup up-to-date in future.
    Method 2
    Connect the two computers to the same network. Share your <User's Music> folder from the old computer and copy the entire iTunes library folder into the <User's Music> folder on the new one. Again, deauthorize the old computer if no longer required.
    Both methods should give the new computer a working clone of the library that was on the old one. As far as iTunes is concerned this is still the "home" library for your devices so you shouldn't have any issues with iTunes wanting to erase and reload.
    I'd recommend method 1 since it establishes an ongoing backup for your library.
    Note if you have failed to move contacts and calendar items across you should create one dummy entry of each in your new profile and iTunes should  merge the existing data from the device.
    If your media folder has been split out from the main iTunes folder you may need to do some preparatory work to make it easier to move. See make a split library portable.
    Should you be in the unfortunate position where you are no longer able to access your original library or a backup then then see Recover your iTunes library from your iPod or iOS device for advice on how to set up your devices with a new library with the maximum preservation of data.
    tt2

  • My sister and I share an itunes account so she can click on my email and receive my imessages how can I make sure this stops happening?

    My sister and I share an itunes account so she can click on my email and receive my imessages how can I make sure this stops happening?

    One of you needs to use a separate Apple ID for iCloud, FaceTime & iMessage.
    The Apple ID needs to be a verified email address. Once you have an email address, that can be verified, go here & create the ID:
    https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/wa/createAppleId
    Then on one of the phones, turn off Contacts, Calendars, etc. for iCloud. You'll be prompted to keep the data or delete it from the phone, then turn off iMessage, FaceTime & delete the iCloud account...Settings>iCloud...scroll down...delete account. Then, setup iCloud using the new Apple ID, turn on iMessage & Facetime.
    This will have no affect on the ID you both share for iTunes content, & you can continue to do so.

  • I'm sure this is a setting fix, but can't find it-.  All of my windows for mac programs open when I turn on my computer, such that I have to close each one individually to get to my desk top.  How do I adjust so none of them open unless I choose to?

    I'm sure this is a setting fix, but can't find it….  All of my windows for mac programs open when I turn on my computer, such that I have to close each one individually to get to my desk top.  How do I adjust so none of them open unless I choose to?

    Remove the check in the box "Reopen windows when logging back in":

  • Calendar adds an extra day when creating an event in ios 8.1.3. Is this a known bug?

    When i add an event using the calendar app in ios 8.1.3, it adds an extra day to the event when using a range of dates. I am able to recreate the problem. when entering the event i select a range of dates and confirm that it is what i want. after submitting, i verify and it has added an extra day at the end. Is this a known bug or am i on my own? Help please. this is annoying having to check each event after entering it.

    Ive reset, restored and this is the second phone. Thought it maybe a wonky screen that would shift it while setting dates. THe only thing I can think of is that I am syncing with google calendar, but it only happens when setting events in ios not if i do it from google website on desktop PC.

Maybe you are looking for

  • IPad build vs iPhone build

    hey guys, just in general. is there any difference between a iPhone build or iPad build (provision profiles, etc.) or is everything the same just connect the iPad and use it as a iPhone like? thanks

  • Spotlight Suggestions not working on iOS 8.1

    I couldn't use (enable) Spotlight Suggestions on iOS 8.0.2, after iOS 8.1 update, I can enable this feature in Settings > Spotlight Search. But when I launch Search by scrolling down homescreen, this feature doesn't appear either. I have iPad Air wif

  • We need a new version of DualCore center to support the 975x PowerUp edition!

    Hi, As of know, when I start up the DualCore center, it doesn't work 100 percent. For example, I can't adjust my cpu fan speed and that application beeps about me not having connected a cpu fan. Which is not true of course. Correct me if i'm wrong, b

  • Iphoto library is running low on space

    I am not sure how to make space on my iMac.  When I start up the computer it says the startup disk is almost full.  When I try to download pictures it says the the disk containing you iPhoto library is running low on space.  I realize I have to get i

  • SPARC M9000, All components, CMU,CPU,MEM,IOU,XBU,CLKU are in Deconfigured Status

    We have a slightly problem with a M9000, the machine is not under Support right now, cause the machine is for testing and purposes only. After powering up the showstatus says that all components are in deconfigured status without any knowing of degra