MDB stops while trying to write to a Cache

Hi,
I have this MDB that listens to a JMS queue, and I want to write to a Tangosol (Coherence) cache from this MDB. But even when i just have
NamedCache cache = CacheFactory.getCache("xyz");
inside the MDB, I get an exception which looks like this :
2008-01-04 11:44:45.187 WARNING J2EE EJB-02014 [WebCenterMDBDeployer:WebCenterMDBDeployer:WebCenterMDBBean] All message consumer threads have terminated due to provider errors, stopping MDB.
oracle.classloader.util.AnnotatedNoClassDefFoundError:
     Missing class: com.tangosol.net.CacheFactory
     Dependent class: webcentermdbproject.WebCenterMDBBean
     Loader: WebCenterMDBDeployer.root:0.0.0
     Code-Source: /D:/Jdeveloper10.1.3.3/jdev/extensions/oracle.adfp.seededoc4j.10.1.3/j2ee/home/applications/WebCenterMDBDeployer/WebCenterMDBDeployer.jar
     Configuration: <ejb> in D:\Jdeveloper10.1.3.3\jdev\extensions\oracle.adfp.seededoc4j.10.1.3\j2ee\home\applications\WebCenterMDBDeployer
The missing class is available from the following locations:
     1. Code-Source: /D:/Jdeveloper10.1.3.3/jdev/extensions/oracle.adfp.seededoc4j.10.1.3/j2ee/home/applications/TestPortlets10/TestPortlets10/WEB-INF/lib/tangosol.jar (from manifest of /D:/Jdeveloper10.1.3.3/jdev/extensions/oracle.adfp.seededoc4j.10.1.3/j2ee/home/applications/TestPortlets10/TestPortlets10/WEB-INF/lib/coherence.jar)
     This code-source is available in loader TestPortlets10.web.TestPortlets10:0.0.0.
     2. Code-Source: /D:/Jdeveloper10.1.3.3/jdev/extensions/oracle.adfp.seededoc4j.10.1.3/j2ee/home/applications/TestPortlets/TestPortlets/WEB-INF/lib/tangosol.jar (from manifest of /D:/Jdeveloper10.1.3.3/jdev/extensions/oracle.adfp.seededoc4j.10.1.3/j2ee/home/applications/TestPortlets/TestPortlets/WEB-INF/lib/coherence.jar)
     This code-source is available in loader TestPortlets.web.TestPortlets:0.0.0.
     3. Code-Source: /D:/Jdeveloper10.1.3.3/jdev/extensions/oracle.adfp.seededoc4j.10.1.3/j2ee/home/applications/TangosolTest1/TangosolTest1/WEB-INF/lib/tangosol.jar (from manifest of /D:/Jdeveloper10.1.3.3/jdev/extensions/oracle.adfp.seededoc4j.10.1.3/j2ee/home/applications/TangosolTest1/TangosolTest1/WEB-INF/lib/coherence.jar)
     This code-source is available in loader TangosolTest1.web.TangosolTest1:0.0.0.
     4. Code-Source: /D:/Jdeveloper10.1.3.3/jdev/extensions/oracle.adfp.seededoc4j.10.1.3/j2ee/home/applications/TestPortlets14/TestPortlets14/WEB-INF/lib/tangosol.jar (from manifest of /D:/Jdeveloper10.1.3.3/jdev/extensions/oracle.adfp.seededoc4j.10.1.3/j2ee/home/applications/TestPortlets14/TestPortlets14/WEB-INF/lib/coherence.jar)
I am just trying to get the Cache, and still getting this exception.. Its the same when i try to put something to the cache..
Any idea what might be going wrong? After this, the MDB stops working altogether..
Thanks in advance
Pravin

Hi
I would recommend checking your system.log file for an error of this type. Probably just filter with SAM.
"timestamp" kernel SAM Multimedia: READ or WRITE failed, SENSE_KEY = 0x02, ASC = 0x04, ASCQ = 0x01
If you are seeing errors of this type, my guess is that you're having write communication errors when attempting to burn. I can't guarantee that these errors specifically indicate a hardware failure, but my experience has been when these errors are produced, an ODD drive or cable failure is causing a bus error due to input/output errors with the data.
If you go to Applications -> Utilities -> Console, you can bring up the system.log file. If the drive is bad, I hope you can find a replacement option.

Similar Messages

  • NotSerializable error while trying to write arraylist

    I am getting a NotSerializable error while trying to write an arraylist to a file.
    Here's the part of the code causing problem
    File temp = fileOpenerAndSaver.getSelectedFile(); // fileOpenerAndSaver is a JFileChooser object which has been created and initialized and was already used to select a file with
    currentWorkingFile = new File (temp.getAbsolutePath() + ".gd");      // currentWorking file is a file object
    try
         ObjectOutput output = new ObjectOutputStream (new BufferedOutputStream(new FileOutputStream(currentWorkingFile)));
         output.writeObject(nodeList); // <-- This is the line causing problem (it is line 1475 on which exception is thrown)
         output.writeObject(edgeList);
         output.writeObject(nodesWithSelfLoop);
         output.writeObject(nextId);
         output.writeUTF(currentMessage);
         output.close();
    catch (Exception e2)
         JOptionPane.showMessageDialog (graphDrawer, "Unknown error writing.", "Error", JOptionPane.ERROR_MESSAGE);
         e2.printStackTrace();
    } As far as what nodeList is -- it's an arraylist of my own class Node which has been serialized and any object used inside the class has been serialized as well.
    Here is the declaration of nodeList:
         private ArrayList <Node> nodeList; // ArrayList to hold a list all the nodesLet me show you whats inside the node class:
    private class Node implements Serializable
         private static final long serialVersionUID = -4625153386839971250L;
         /*  edgeForThisNodeList holds all the edges that are between this node and another node
          *  nodesConnected holds all the nodes that are connected (adjacent) to this node
          *  p holds the top left corner coordinate of this node.  The centre. of this node is at (p.x + 5, p.y + 5)
          *  hasSelfLoop holds whether this node has a self loop.
          *  **NOTE**: ONLY ONE SELF LOOP IS ALLOWED FOR A NODE.
         ArrayList <Edge> edgeForThisNodeList = new ArrayList <Edge> ();
         ArrayList <Node> nodesConnected = new ArrayList <Node> ();
         Point p;
         boolean hasSelfLoop = false;
         int index = -1;
         BigInteger id;
                     ... some methods following this....
    }Here is the edge class
    private class Edge implements Serializable
         private static final long serialVersionUID = -72868914829743947L;
         Node p1, p2; // The two nodes
         Line2D line;
          * Constructor:
          * Assigns nodes provided as appropriate.
          * Also calls the addEdge method on each of the two nodes, and passes
          * "this" edge and the other node to the nodes, so that
          * this edge and the other node can be added to the
          * data of the node.
         public Edge (Node p1, Node p2)
              this.p1 = p1;
              this.p2 = p2;
              line = new Line2D.Float(p1.p.x+5,p1.p.y+5,p2.p.x+5,p2.p.y+5);
              p1.addEdge(this, p2, true);
              p2.addEdge(this, p1, false);
         }Here is the error I am getting:
    java.io.NotSerializableException: javax.swing.plaf.metal.MetalFileChooserUI
         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.writeOrdinaryObject(Unknown Source)
         at java.io.ObjectOutputStream.writeObject0(Unknown Source)
         at java.io.ObjectOutputStream.writeObject(Unknown Source)
         at MyPanel.save(MyPanel.java:1475)
         at GraphDrawer.actionPerformed(GraphDrawer.java:243)
         I inentionally did not write the whole error stack because it was way too long and I ran out of characters. But line 1475 is where I do the writeObject call. I also goet some weird not serialized exceptions before on some other classes that are not being written to the file or are not part of the object that I am writing. I serialized those classes and now it's this unknown object that's causing problems.
    Edit: The problem may be due to the JFileChooser I am using to select the file as it is a non-serializable object. But I am not trying to write it to the file and in fact am just writing the arrayLists and BigInteger as objects to the file.
    Edited by: Cricket_struck on Dec 21, 2009 1:25 PM
    Edited by: Cricket_struck on Dec 21, 2009 1:32 PM
    Edited by: Cricket_struck on Dec 21, 2009 2:16 PM

    java.io.NotSerializableException: javax.swing.plaf.metal.MetalFileChooserUIThat's a Swing component and it is clearly related to the JFileChooser.
    I also get some weird not serialized exceptions before on some other classes that are not being written to the file or are not part of the object that I am writing.That's a contradiction in terms. If you get NotSerialzableException it means the objects are being written. So they are reachable from the objects you're writing.
    Edit: The problem may be due to the JFileChooser I am using to select the file as it is a non-serializable object.JFileChooser implements Serializable, but you're right, you shouldn't try to serialize it. But clearly this is the current problem. Somewhere you have a reference to it reachable via the object(s) you are serializing.
    I suspect that Node and Edge inner classes and that you aren't aware that inner classes contain a hidden reference to their containing class. The solution for serializaition purposes is to make them static nested classes, or outer classes.

  • Exception while trying to write xml file

    When I try to write my DOM tree to an XML file a get the following exception form the transformer.transform() function call:
    Exception in thread "AWT-EventQueue-0" java.lang.AbstractMethodError: org.apache.crimson.tree.XmlDocument.getXmlStandalone()Z
    at com.sun.org.apache.xalan.internal.xsltc.trax.DOM2TO.setDocumentInfo(DOM2TO.java:373)
    at com.sun.org.apache.xalan.internal.xsltc.trax.DOM2TO.parse(DOM2TO.java:127)
    at com.sun.org.apache.xalan.internal.xsltc.trax.DOM2TO.parse(DOM2TO.java:94)
    at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transformIdentity(TransformerImpl.java:662)
    at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(TransformerImpl.java:708)
    at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(TransformerImpl.java:313)
    at CentMon.ConfigRW.writeConfig(ConfigRW.java:77)
    The whole thing worked for 2 years. I did not change anything on the code. the only difference is that i have now office 2007 installed instead of office 2003.
    That's the code which generates the exception:
    import java.io.File;
    import java.io.IOException;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.ParserConfigurationException;
    import javax.xml.transform.Transformer;
    import javax.xml.transform.TransformerConfigurationException;
    import javax.xml.transform.TransformerException;
    import javax.xml.transform.TransformerFactory;
    import javax.xml.transform.dom.DOMSource;
    import javax.xml.transform.stream.StreamResult;
    import org.w3c.dom.Document;
    import org.xml.sax.SAXException;
    public void writeConfig(Document doc){
    TransformerFactory tFactory =
    TransformerFactory.newInstance();
    Transformer transformer;
    if (doc==null){
    System.out.println("Document is null");
    else{
    try {
    transformer = tFactory.newTransformer();
    } catch (TransformerConfigurationException e) {
    transformer = null;
    System.out.println(e.getMessage());
    DOMSource source = new DOMSource(doc);
    StreamResult result = new StreamResult(new File(filename));
    try {
    if (transformer != null){
    transformer.transform(source, result);
    } catch (TransformerException ex) {
    Logger.getLogger(ConfigRW.class.getName()).log(Level.SEVERE, null, ex);
    }

    I am getting the exact same error when trying to write out an XML file. I have been following the J2EE Tutorial. Perhaps I need to look for a more recent tutorial.
    Exception in thread "AWT-EventQueue-0" java.lang.AbstractMethodError: org.apache.crimson.tree.XmlDocument.getXmlStandalone()Z
    at com.sun.org.apache.xalan.internal.xsltc.trax.DOM2TO.setDocumentInfo(DOM2TO.java:373)
    at com.sun.org.apache.xalan.internal.xsltc.trax.DOM2TO.parse(DOM2TO.java:127)
    at com.sun.org.apache.xalan.internal.xsltc.trax.DOM2TO.parse(DOM2TO.java:94)
    at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transformIdentity(TransformerImpl.java:662)
    at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(TransformerImpl.java:708)
    at com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(TransformerImpl.java:313)
    at com.wordhopper.xml.DOMXMLParser.writeXMLFile(DOMXMLParser.java:55)
    at com.wordhopper.gui.xmltool.XMLEditor.writeButtonActionPerformed(XMLEditor.java:217)
    at com.wordhopper.gui.xmltool.XMLEditor.access$100(XMLEditor.java:13)
    at com.wordhopper.gui.xmltool.XMLEditor$2.actionPerformed(XMLEditor.java:139)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2028)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2351)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
    at java.awt.Component.processMouseEvent(Component.java:6348)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
    at java.awt.Component.processEvent(Component.java:6113)
    at java.awt.Container.processEvent(Container.java:2085)
    at java.awt.Component.dispatchEventImpl(Component.java:4714)
    at java.awt.Container.dispatchEventImpl(Container.java:2143)
    at java.awt.Component.dispatchEvent(Component.java:4544)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4618)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4282)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4212)
    at java.awt.Container.dispatchEventImpl(Container.java:2129)
    at java.awt.Window.dispatchEventImpl(Window.java:2475)
    at java.awt.Component.dispatchEvent(Component.java:4544)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:635)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:296)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:211)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:201)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:196)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:188)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)

  • Removing the user define comments while trying to write to the property fil

    Hi All,
    While using new Properies().setPropety(). It is removing the user define comments from property file.
    Could you please explain me why it is happening and how can I restrict it
    Thanks & Regards
    Edited by: Rakesh83 on Feb 20, 2008 4:33 AM

    Rakesh83 wrote:
    Could you please provde me sample code for this?
    #! /usr/bin/groovy
    xml = '''
    <config>
        <property name="foo" value="bar" comment="blah, blah, blah" />
        <property name="baz" value="qux" comment="doodle doodle dee" />
    </config>
    def config = new XmlParser().parse(new StringReader(xml))
    def property = config.property.find { it.'@name' =~ 'baz' }
    assert 'doodle doodle dee' == property.@comment
    property.@value = 'snorp'
    assert 'doodle doodle dee' == property.@comment // comments preserved!
    // write xml as needed~

  • Errors while trying to write Vector of JPanels to Object File.

    Does anyone know why I'm getting the following errors and how can I fix it?
    I'm trying to output a Vector that contains a bunch of JPanels (that are fixed to a JFrame):
    public class MyFrame extends JFrame {
    Vector panels
    .... code here
    try {
    FileOutputStream fos = new FileOutputStream(this.saveObjectPath+this.scriptName+".dat");
    ObjectOutputStream oos = new ObjectOutputStream(fos);
    oos.writeObject(panels);
    oos.close();
    } catch (Exception e) {
    System.out.println("Count not write Data file");
    ... more code
    and I get the following mass of errors:
    Exception occurred during event dispatching:
    java.lang.NullPointerException
    at javax.swing.plaf.basic.BasicScrollPaneUI.paint(BasicScrollPaneUI.java:66)
    at javax.swing.plaf.ComponentUI.update(ComponentUI.java:53)
    at javax.swing.JComponent.paintComponent(JComponent.java:418)
    at javax.swing.JComponent.paint(JComponent.java:718)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JViewport.paint(JViewport.java:679)
    at javax.swing.JComponent.paintWithBuffer(JComponent.java:3940)
    at javax.swing.JComponent._paintImmediately(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintImmediately(JComponent.java:3731)
    at javax.swing.RepaintManager.paintDirtyRegions(RepaintManager.java:384)
    at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(SystemEventQueue Utilities.java:135)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:168)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:432)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java: 172)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:13 1)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:126)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:118)
    Exception occurred during event dispatching:
    java.lang.NullPointerException
    at javax.swing.plaf.basic.BasicScrollPaneUI.paint(BasicScrollPaneUI.java:66)
    at javax.swing.plaf.ComponentUI.update(ComponentUI.java:53)
    at javax.swing.JComponent.paintComponent(JComponent.java:418)
    at javax.swing.JComponent.paint(JComponent.java:718)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JComponent.paintChildren(JComponent.java:529)
    at javax.swing.JComponent.paint(JComponent.java:727)
    at javax.swing.JViewport.paint(JViewport.java:679)
    at javax.swing.JComponent.paintWithBuffer(JComponent.java:3940)
    at javax.swing.JComponent._paintImmediately(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintImmediately(JComponent.java:3731)
    at javax.swing.RepaintManager.paintDirtyRegions(RepaintManager.java:384)
    at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(SystemEventQueue Utilities.java:135)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:168)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:432)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java: 172)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:13 1)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:126)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:118)
    Exception occurred during event dispatching:
    java.lang.NullPointerException
    at javax.swing.plaf.basic.BasicScrollPaneUI.paint(BasicScrollPaneUI.java:66)
    at javax.swing.plaf.ComponentUI.update(ComponentUI.java:53)
    at javax.swing.JComponent.paintComponent(JComponent.java:418)
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JViewport.paint(JViewport.java:679)
    at javax.swing.JComponent.paintWithBuffer(JComponent.java:3940)
    at javax.swing.JComponent._paintImmediately(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintImmediately(JComponent.java:3731)
    at javax.swing.RepaintManager.paintDirtyRegions(RepaintManager.java:384)
    at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(SystemEventQueue Utilities.java:135)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:168)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:432)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java: 172)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:13 1)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:126)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:118)
    Exception occurred during event dispatching:
    java.lang.NullPointerException
    at javax.swing.plaf.basic.BasicScrollPaneUI.paint(BasicScrollPaneUI.java:66)
    at javax.swing.plaf.ComponentUI.update(ComponentUI.java:53)
    at javax.swing.JComponent.paintComponent(JComponent.java:418)
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JViewport.paint(JViewport.java:679)
    at javax.swing.JComponent.paintWithBuffer(JComponent.java:3940)
    at javax.swing.JComponent._paintImmediately(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintImmediately(JComponent.java:3731)
    at javax.swing.RepaintManager.paintDirtyRegions(RepaintManager.java:384)
    at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(SystemEventQueue Utilities.java:135)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:168)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:432)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java: 172)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:13 1)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:126)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:118)
    Exception occurred during event dispatching:
    java.lang.NullPointerException
    at javax.swing.plaf.basic.BasicScrollPaneUI.paint(BasicScrollPaneUI.java:66)
    at javax.swing.plaf.ComponentUI.update(ComponentUI.java:53)
    at javax.swing.JComponent.paintComponent(JComponent.java:418)
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintChildren(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paint(JComponent.java(Compiled Code))
    at javax.swing.JViewport.paint(JViewport.java:679)
    at javax.swing.JComponent.paintWithBuffer(JComponent.java:3940)
    at javax.swing.JComponent._paintImmediately(JComponent.java(Compiled Code))
    at javax.swing.JComponent.paintImmediately(JComponent.java:3731)
    at javax.swing.RepaintManager.paintDirtyRegions(RepaintManager.java:384)
    at javax.swing.SystemEventQueueUtilities$ComponentWorkRequest.run(SystemEventQueue Utilities.java:135)
    at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:168)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:432)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java: 172)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:13 1)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:126)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:118)

    can you post this line of code, or section of relevant code:
    BasicScrollPaneUI.java:66, as this is where the problem is

  • Firefox continue to STOP, (even stopped while trying to load this page) then have to reload, what the hell is wrong

    Firefox STOPS, STALLS, HANG THERE, when downloading game on Facebook....(what more do you want me to say?) and DON'T blame it on Facebook, my computer as it is all up to date, and no virus. I belive IT'S FIREFOX, they need to clean out their site. They have crap on their site from when the first started.

    Hi,
    Unlike the other browsers, Firefox is mostly volunteer- driven, so having someone always sitting on the other end of the phone is unlikely. If you want help live, try the irc channel: irc://moznet/firefox.
    Which website is causing the problem?
    Ian.

  • HT1751 On an old Mac I got this message while trying to burn a CD for the car: "The attempt to burn a disc failed.  The burn failed because of a medium write error."  What does this mean?  And how do I work around it?

    On an older Mac I got this message while trying to burn a CD for the car: "The attempt to burn a disc failed.  The burn failed because of a medium write error."  What does this mean?  And how do I work around it?

    I had been getting this all morning and checked other messages from the community. THe one which worked was trying a different brand of disc.
    I had been using Verbatim which had copied the music fine off the Real Player on my PC at school, but wouldn't work with I Tunes. Tried a Staples and an Office Depot CD-R , both of which did the job.

  • Lightroom suddenly stopped while I was working in it.  I got the Windows message "Adobe Photoshop Lightroom 64 bit has stopped working.  A problem caused the program to stop working.   I have tried re-booting as well as reinstalling Lightroom 5.7 but when

    Lightroom suddenly stopped while I was working in it.  I got the Windows message "Adobe Photoshop Lightroom 64 bit has stopped working.  A problem caused the program to stop working.   I have tried re-booting as well as reinstalling Lightroom 5.7 but whenever I try to start the program I get the same message.

    Is that really the exact message you are receiving?

  • Received the following error message while trying to install icloud 3.1 and my iTunes stops when I try to access the iTune store, Microsoft.vc80.CRT,type="win32",ver="8.0.50727.6195",processorArchitecture="amd 64".HRESULT:0x800703EE.

    Received the following error message while trying to install icloud 3.1 and my iTunes stops when I try to access the iTune store, Microsoft.vc80.CRT,type="win32",ver="8.0.50727.6195",processorArchitecture="amd 64".HRESULT:0x800703EE. Recently upgraded to windows 8.1 then everything just wouldn't work properly

    Could you solve this problem? I have similr problem. I can't upgrade Itune it generat the error below. I already unistall de all version but the error still appear. Could you help?

  • App-V 5: An error was encountered while trying to stop the monitoring session

    Hello,
    I have a problem with sequencing an application with the App-V 5 sequencer. During the moment that the sequencer is collecting system changes an dialog box appears with the message "An error was encountered while trying to stop the monitoring session.
    Please check the event log for more details.". When I sequence the same application with App-V 4.6 SP2 sequencer I have no problems.
    In the eventviewer (Microsoft-AppV-Sequencer/Admin) you can see the message "An attempt to stop the monitoring session failed (startIndex cannot be large than lenght of string. Parameter name: startIndex). Event Id: 5003
    I have checked the background activities, but I couldn't find anything suspicious.

    Is the only difference between the platform the sequencer is hosted on the version of the sequencer? have you tested on a vanilla deployment of Windows?
    Please remember to click "Mark as Answer" or "Vote as Helpful" on the post that answers your question (or click "Unmark as Answer" if a marked post does not actually
    answer your question). This can be beneficial to other community members reading the thread.
    This forum post is my own opinion and does not necessarily reflect the opinion or view of my employer, Microsoft, its employees, or other MVPs.
    Twitter:
    @stealthpuppy | Blog:
    stealthpuppy.com |
    The Definitive Guide to Delivering Microsoft Office with App-V

  • HT201210 While trying to update my phone I get error that one photo is stopping whole process-this is just a short video? I've never had this problem before.

    While trying to update my phone one photo is stopping the whole process and I've gone through all the online suggestions (check for updates,etc)

    Verizon was having a problem on their end, perhaps a server down for some repair or updating. However you were already aware that there was an on-going problem in your own posting and you decided to continue on.I can understand you wanting this done and trying to save the $15.00 fee.  However I would have waited a bit longer until the Verizon issue had been corrected. Yes it is frustrating but again you know in advance of a problem , I can understand that this is most upsetting for you but never try to perform any change when a problem is there and I also do not like to do business on a weekend with no live tech support available.  I'm sure this will all work out for you if given some time.  Sorry. 
    So I have been trying to change my phone number for a few days now and every single time I get this error message, before i even start, "The activity you are trying to perform is currently unavailable. Please try again later."     

  • Pb stops at bb logo while trying to open an android app

    downloaded an android app from app world and it workd on instalation but trying to reopen it again it just stop at the bb logo with a light scrolling through it while trying to open any  android app and with that the app will still not open  open  pls what do i do

    Try the 3 button reset.
    Hold the Power Button and both volume buttons down all at the same time for 15 seconds.Wait 1 minute then hold the power button down again until the red light flashes (about 4 seconds). PB should boot up again within 3 minutes.

  • While trying to burn a CD of a playlist, the disc was ejected with the message: medium write error. What does this mean?

    While trying to burn a CD of a playlist, the disc was ejected with the message "medium write error" . What does this mean and how do I fix it?

    I had been getting this all morning and checked other messages from the community. THe one which worked was trying a different brand of disc.
    I had been using Verbatim which had copied the music fine off the Real Player on my PC at school, but wouldn't work with I Tunes. Tried a Staples and an Office Depot CD-R , both of which did the job.

  • HT203175 While trying to use my iTunes library it will suddenly stop working with the erro message Runtime error R6025 pure virtual function call.  HELP!!!

    While trying to use my iTunes library it will suddenly stop working with the error message Runtime error R6025 pure virtual function call.
    Help???

    Just responded to this in another thread (note we used Captivate 7 so it might be a different error).
    We found that when we created files with embedded swf files that existed ABOVE widgets in the timeline, when someone else tried to open our file it broke/we got the runtime error. The original person could still open it for a time, but eventually the cache would clear and they couldn't.
    However, if we ensured swf files are BELOW widgets in the source files, it didn't break. In fact, if we found one that was breaking and got the author to move the swf file on the timeline, it would start working for others.
    STRANGE! Let me know if this works for you to!

  • TS4268 I still have "Waiting for Activation" while trying to activate iMessage on the iphone, noting that it was working normally and stopped working suddenly, as well I had done all the mentioned steps.. what should I do else?

    I still have "Waiting for Activation" while trying to activate iMessage on the iphone, noting that it was working normally and stopped working suddenly, as well I had done all the mentioned steps.. what should I do else?

    Define "mentioned steps." 
    See this:
    iOS: Troubleshooting FaceTime and iMessage activation

Maybe you are looking for

  • Creating a new domain in BPEL PM

    Hi , I have to create a new domain in BPEL PM . We r using BEPL PM 10.1.34 over weblogic 9.2 . I do not want to experiment in the server environment , so i would require some documentation to guide me. Please give me the link to the docuementation to

  • No files will open in PS in CS2 nor trial version CS5

    Up to a month ago my PS CS2 was working great.  Then one day I found I could not open any files in the program. I tried reloading preferences with no change.  I then removed and reloaded the program (Creative Suite CS2), and PS worked great for two d

  • Item Transaction History Report - Calculation for creating 'Running Total'

    Hello Using Oracle Discoverer, we have written a report that pulls back all Inventory Transactions (by item number). This report lists both transactions IN (e.g. receipts into the store) and OUT (e.g. issues out from the store). Our customer would li

  • Can I use Non-standard XSD Data Types in my XSD; if so how?

    Please help if you can, this is a complex question, so bear with me. Also note that I am in Livecycle 8.2 ES (not ES2 or higher). I am working on creating XSD schemas to map to form objects. I have created one master schema document that is wired int

  • Issues with dynamic text box formatting

    I'm running into issues with using HTML formatting for a dymanic text field. I know these are quirky and I cannot figure out how to get the formatting proper. I have on my stage a dynamic text box called "content_txt" inside of a movie clip instance