Adding a web browser to a gui

Hi,
I would like to know how to add a web browser to a jpanel?. I am trying to add a we browser to the following code.
My aim is to build a P2P file sharing application in JXTA. Here is what i have so far( i have only started about 30mins ago.
I've found a web browser here but i'm not sure how to incorporate it in to my gui. does anyone have any tips on how to do this?
http://forum.java.sun.com/thread.jspa?threadID=683921
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
public class Gui extends JFrame
     // Variables declaration
     private JTabbedPane searchpane;
     private JPanel contentPane;
     private JLabel searchlabel;
     private JTextField search;
     private JButton gobutton;
     private JPanel searchpanel;
     private JPanel downloadpane;
     private JPanel chatpane;
     private JPanel configurepane;
     private JPanel internet;
     // End of variables declaration
     public Gui()
          super();
          initializeComponent();
          // TODO: Add any constructor code after initializeComponent call
          this.setVisible(true);
     private void initializeComponent()
          searchpane = new JTabbedPane();
          contentPane = (JPanel)this.getContentPane();
          searchlabel = new JLabel();
          search = new JTextField();
          gobutton = new JButton();
          searchpanel = new JPanel();
          downloadpane = new JPanel();
          chatpane = new JPanel();
          configurepane = new JPanel();
          internet = new JPanel();
          // searchpane
          searchpane.addTab("Search", searchpanel);
          searchpane.addTab("Downloads", downloadpane);
          searchpane.addTab("Chat", chatpane);
          searchpane.addTab("Configure", configurepane);
          searchpane.addTab("Browse Internet", internet);
          searchpane.addChangeListener(new ChangeListener() {
               public void stateChanged(ChangeEvent e)
                    searchpane_stateChanged(e);
          // contentPane
          contentPane.setLayout(null);
          contentPane.setBorder(BorderFactory.createLoweredBevelBorder());
          addComponent(contentPane, searchpane, 4,41,545,473);
          // searchlabel
          searchlabel.setBackground(new Color(236, 241, 225));
          searchlabel.setText("Search");
          // search
          search.setText("  Enter a file name here  ");
          search.addActionListener(new ActionListener() {
               public void actionPerformed(ActionEvent e)
                    search_actionPerformed(e);
          // gobutton
          gobutton.setText("Go");
          gobutton.addActionListener(new ActionListener() {
               public void actionPerformed(ActionEvent e)
                    gobutton_actionPerformed(e);
          // searchpanel
          searchpanel.setLayout(null);
          searchpanel.setBorder(BorderFactory.createRaisedBevelBorder());
          addComponent(searchpanel, searchlabel, 8,10,40,23);
          addComponent(searchpanel, search, 53,8,152,24);
          addComponent(searchpanel, gobutton, 212,8,48,25);
          // downloadpane
          downloadpane.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
          // chatpane
          chatpane.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
          // configurepane
          configurepane.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
          // internet
            toolBar = new WebToolBar( internet );
          internet.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5));
          // Gui
          this.setTitle("Dutt File Sharing");
          this.setLocation(new Point(0, 0));
          this.setSize(new Dimension(549, 539));
          this.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
     /** Add Component Without a Layout Manager (Absolute Positioning) */
     private void addComponent(Container container,Component c,int x,int y,int width,int height)
          c.setBounds(x,y,width,height);
          container.add(c);
     private void searchpane_stateChanged(ChangeEvent e)
          System.out.println("\nsearchpane_stateChanged(ChangeEvent e) called.");
          // TODO: Add any handling code here
     private void search_actionPerformed(ActionEvent e)
          System.out.println("\nsearch_actionPerformed(ActionEvent e) called.");
     private void gobutton_actionPerformed(ActionEvent e)
          System.out.println("\ngobutton_actionPerformed(ActionEvent e) called.");
     public static void main(String[] args)
          JFrame.setDefaultLookAndFeelDecorated(true);
          JDialog.setDefaultLookAndFeelDecorated(true);
          try
               UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
          catch (Exception ex)
               System.out.println("Failed loading L&F: ");
               System.out.println(ex);
          new Gui();

Hi Paul,
can you read: http://blogs.sun.com/jluehe/entry/more_efficient_request_mapping_with
and see if that what you are looking at?
Thanks
-- Jeanfrancois

Similar Messages

  • Very slow GUI in web browser application

    Hello,
    I am trying to write a web browser application and I have a problem with the GUI. When the page is being loaded and set on the JEditorPane the GUI becomes very slow (actually it freezes). I don't know if this happens because of my swing implementation or because I am not using threads properly.
    I use the SwingWorker class. I created a worker thread which loads the web page and then sets it to the JEditorPane.
    Could you give me some ideas please? Below are some parts of my code.
    Thank you
    public class BrowserFrame extends javax.swing.JFrame {
        /** Creates new form BrowserFrame */
        public BrowserFrame() {
            initComponents();
            loadUrlsFromHistoryFile();
        private class RetrievePageTask extends SwingWorker<Void, URL> {
            private String address = null;
            RetrievePageTask(String address) {
                this.address = address;
                pageLoadProgressBar.setIndeterminate(true);
            protected Void doInBackground() {
                URL url = null;
                try {
                    url = new URL(address);
                    publish(url);
                catch(MalformedURLException exc) {
                    System.out.println(exc);
                catch(IOException exc) {
                    System.out.println(exc);
                return null;
            protected void process(List<URL> url) {
                try {
                    pageEditorPane.setPage(url.get(url.size() - 1));
                catch(IOException exc) {
                    System.out.println(exc);
                String url_str = url.get(url.size() - 1).toString();
                addressComboBox.setSelectedItem(url_str);
                addUrlToAddressComboBox(url_str);
        private void addressComboBoxItemStateChanged(java.awt.event.ItemEvent evt) {                                                
            // Get the affected item
            Object item = evt.getItem();
            if(evt.getStateChange() == java.awt.event.ItemEvent.SELECTED) {
                // Item was just selected
                if(item.toString().equalsIgnoreCase(""))
                    return;
                RetrievePageTask retrievePageTask = new RetrievePageTask(item.toString());
                retrievePageTask.execute();
            else if(evt.getStateChange() == java.awt.event.ItemEvent.DESELECTED) {
                // Item is no longer selected
                System.out.println("\nItem: " + item + " is no longer selected");           
        private void addressComboBoxActionPerformed(java.awt.event.ActionEvent evt) {                                               
            if ("comboBoxEdited".equals(evt.getActionCommand())) {
                // User has typed in a string; only possible with an editable combobox
                goButtonActionPerformed(evt);
            else if ("comboBoxChanged".equals(evt.getActionCommand())) {
                // User has selected an item; it may be the same item
                System.out.println("\nSpot TWO");
        private void goButtonActionPerformed(java.awt.event.ActionEvent evt) {
             RetrievePageTask retrievePageTask = new RetrievePageTask(address);
             retrievePageTask.execute();
        private void pageEditorPaneHyperlinkUpdate(javax.swing.event.HyperlinkEvent evt) {                                              
            if(evt.getEventType() == javax.swing.event.HyperlinkEvent.EventType.ACTIVATED) {
                 RetrievePageTask retrievePageTask = new RetrievePageTask(evt.getURL().toString());
                retrievePageTask.execute();
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    BrowserFrame surfRider = new BrowserFrame();
                    surfRider.setVisible(true);
    }

    Now it is all.
    package webbrowser;
    import java.net.*;
    import java.io.*;
    import java.util.*;
    import javax.swing.*;
    public class BrowserFrame extends javax.swing.JFrame {
        /** Creates new form BrowserFrame */
        public BrowserFrame() {
            initComponents();
            loadUrlsFromHistoryFile();
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        // <editor-fold defaultstate="collapsed" desc=" Generated Code ">                         
        private void initComponents() {
            addressLabel = new javax.swing.JLabel();
            goButton = new javax.swing.JButton();
            jScrollPane1 = new javax.swing.JScrollPane();
            pageEditorPane = new javax.swing.JEditorPane();
            jButton1 = new javax.swing.JButton();
            jButton2 = new javax.swing.JButton();
            jButton3 = new javax.swing.JButton();
            homeButton = new javax.swing.JButton();
            refreshButton = new javax.swing.JButton();
            addressComboBox = new javax.swing.JComboBox();
            jLabel1 = new javax.swing.JLabel();
            statusLabel = new javax.swing.JLabel();
            pageLoadProgressBar = new javax.swing.JProgressBar();
            menuBar = new javax.swing.JMenuBar();
            fileMenu = new javax.swing.JMenu();
            openFileMenuItem = new javax.swing.JMenuItem();
            exitMenuItem = new javax.swing.JMenuItem();
            viewMenu = new javax.swing.JMenu();
            historyMenuItem = new javax.swing.JMenuItem();
            pageSourceMenuItem = new javax.swing.JMenuItem();
            toolsMenu = new javax.swing.JMenu();
            preferencesMenuItem = new javax.swing.JMenuItem();
            helpMenu = new javax.swing.JMenu();
            aboutMenuItem = new javax.swing.JMenuItem();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            setTitle("Surf Rider");
            setName("browserFrame");
            addWindowListener(new java.awt.event.WindowAdapter() {
                public void windowClosing(java.awt.event.WindowEvent evt) {
                    formWindowClosing(evt);
            addressLabel.setHorizontalAlignment(javax.swing.SwingConstants.RIGHT);
            addressLabel.setText("Address:");
            goButton.setText("GO");
            goButton.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    goButtonActionPerformed(evt);
            pageEditorPane.setEditable(false);
            pageEditorPane.setContentType("text/html");
            pageEditorPane.addHyperlinkListener(new javax.swing.event.HyperlinkListener() {
                public void hyperlinkUpdate(javax.swing.event.HyperlinkEvent evt) {
                    pageEditorPaneHyperlinkUpdate(evt);
            jScrollPane1.setViewportView(pageEditorPane);
            jButton1.setText("Back");
            jButton1.setEnabled(false);
            jButton2.setText("Forth");
            jButton2.setEnabled(false);
            jButton3.setText("Stop");
            jButton3.setEnabled(false);
            homeButton.setText("Home");
            homeButton.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    homeButtonActionPerformed(evt);
            refreshButton.setText("Refresh");
            refreshButton.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    refreshButtonActionPerformed(evt);
            addressComboBox.setEditable(true);
            addressComboBox.addItemListener(new java.awt.event.ItemListener() {
                public void itemStateChanged(java.awt.event.ItemEvent evt) {
                    addressComboBoxItemStateChanged(evt);
            addressComboBox.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    addressComboBoxActionPerformed(evt);
            jLabel1.setText("Browser status: ");
            statusLabel.setText("Current status");
            pageLoadProgressBar.setBorder(javax.swing.BorderFactory.createEtchedBorder());
            fileMenu.setText("File");
            fileMenu.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    fileMenuActionPerformed(evt);
            openFileMenuItem.setLabel("Open File...");
            openFileMenuItem.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    openFileMenuItemActionPerformed(evt);
            fileMenu.add(openFileMenuItem);
            exitMenuItem.setLabel("Exit");
            fileMenu.add(exitMenuItem);
            menuBar.add(fileMenu);
            viewMenu.setText("View");
            viewMenu.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    viewMenuActionPerformed(evt);
            historyMenuItem.setLabel("History");
            viewMenu.add(historyMenuItem);
            pageSourceMenuItem.setLabel("Page Source");
            viewMenu.add(pageSourceMenuItem);
            menuBar.add(viewMenu);
            toolsMenu.setText("Tools");
            preferencesMenuItem.setLabel("Preferences");
            toolsMenu.add(preferencesMenuItem);
            menuBar.add(toolsMenu);
            helpMenu.setText("Help");
            aboutMenuItem.setLabel("About");
            helpMenu.add(aboutMenuItem);
            menuBar.add(helpMenu);
            setJMenuBar(menuBar);
            org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(org.jdesktop.layout.GroupLayout.TRAILING, layout.createSequentialGroup()
                    .add(jButton1)
                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                    .add(jButton2)
                    .add(6, 6, 6)
                    .add(refreshButton)
                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                    .add(jButton3)
                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                    .add(homeButton)
                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                    .add(addressLabel, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 56, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                    .add(addressComboBox, 0, 568, Short.MAX_VALUE)
                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                    .add(goButton))
                .add(jScrollPane1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 1008, Short.MAX_VALUE)
                .add(layout.createSequentialGroup()
                    .addContainerGap()
                    .add(jLabel1)
                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                    .add(statusLabel, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 339, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED, 470, Short.MAX_VALUE)
                    .add(pageLoadProgressBar, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
            layout.setVerticalGroup(
                layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
                .add(layout.createSequentialGroup()
                    .addContainerGap()
                    .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE)
                        .add(goButton)
                        .add(jButton1)
                        .add(jButton2)
                        .add(homeButton)
                        .add(jButton3)
                        .add(refreshButton)
                        .add(addressLabel)
                        .add(addressComboBox, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                    .add(jScrollPane1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 601, Short.MAX_VALUE)
                    .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED)
                    .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.TRAILING)
                        .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE)
                            .add(jLabel1)
                            .add(statusLabel, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 15, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
                        .add(pageLoadProgressBar, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)))
            java.awt.Dimension screenSize = java.awt.Toolkit.getDefaultToolkit().getScreenSize();
            setBounds((screenSize.width-1016)/2, (screenSize.height-724)/2, 1016, 724);
        }// </editor-fold>                       
        private class RetrievePageTask extends SwingWorker<Void, URL> {
            private String address = null;
            RetrievePageTask(String address) {
                this.address = address;
                pageLoadProgressBar.setIndeterminate(true);
            public String getAddress() {
                return address;
            public void setAddress(String newAddress) {
                address = newAddress;
            protected Void doInBackground() {
                URL url = null;
                try {
                    url = new URL(address);
                    publish(url);
                catch(MalformedURLException exc) {
                    System.out.println(exc);
                catch(IOException exc) {
                    System.out.println(exc);
                return null;
            protected void process(List<URL> url) {
                try {
                    System.out.println("\nBefore setting the editorPane");
                    pageEditorPane.setPage(url.get(url.size() - 1));
                catch(IOException exc) {
                    System.out.println(exc);
                String url_str = url.get(url.size() - 1).toString();
                url_str = url_str.toLowerCase(); // URL string is turned in lower case
                addressComboBox.setSelectedItem(url_str);
                addUrlToAddressComboBox(url_str);
                pageLoadProgressBar.setIndeterminate(false);
        private void openFileMenuItemActionPerformed(java.awt.event.ActionEvent evt) {                                                
    // TODO add your handling code here:
        private void viewMenuActionPerformed(java.awt.event.ActionEvent evt) {                                        
    // TODO add your handling code here:
        private void fileMenuActionPerformed(java.awt.event.ActionEvent evt) {                                        
    // TODO add your handling code here:
        private void refreshButtonActionPerformed(java.awt.event.ActionEvent evt) {                                             
        // Action performed when homeButton's Action Listener listens to an event. This
        // event is passed here as a parameter (evt). The selected item of the addressComboBox is
        // set to be the homePage. The browser goes to the home page.
        private void homeButtonActionPerformed(java.awt.event.ActionEvent evt) {                                          
            addressComboBox.setSelectedItem(homePage);
        // This method loads the URL history from the history.txt file into the vector and into the
        // addressComboBox.
        private void loadUrlsFromHistoryFile() {
            BufferedReader inputStream = null;
            addressComboBox.setSelectedItem(homePage);
            try {
                inputStream = new BufferedReader(new FileReader("history.txt"));
                String tmp;
                while((tmp = inputStream.readLine()) != null) {
                    // Adding url to history_mem vector
                    historyMem.add(tmp);
                    // Adding url to addressComboBox
                    addressComboBox.addItem(tmp);
            catch(IOException exc) {
                System.out.println(exc);
        private void addressComboBoxItemStateChanged(java.awt.event.ItemEvent evt) {                                                
            // Get the affected item
            Object item = evt.getItem();
            if(evt.getStateChange() == java.awt.event.ItemEvent.SELECTED) {
                // Item was just selected
                System.out.println("\nItem: " + item + " was just selected");
                if(item.toString().equalsIgnoreCase(""))
                    return;
                RetrievePageTask retrievePageTask = new RetrievePageTask(item.toString());
                retrievePageTask.execute();
            else if(evt.getStateChange() == java.awt.event.ItemEvent.DESELECTED) {
                // Item is no longer selected
                System.out.println("\nItem: " + item + " is no longer selected");           
        // Action performed when an event occurs in the addressComboBox (eg Pressing enter
        // after typing the address).
        private void addressComboBoxActionPerformed(java.awt.event.ActionEvent evt) {                                               
            if ("comboBoxEdited".equals(evt.getActionCommand())) {
                // User has typed in a string; only possible with an editable combobox
                goButtonActionPerformed(evt);
            else if ("comboBoxChanged".equals(evt.getActionCommand())) {
                // User has selected an item; it may be the same item
        // Action performed when goButton's Action Listener listens to an event. This
        // event is passed here as a parameter (evt). When a valid URL is inserted, the
        // pageEditorPane is set to that URL.
        private void goButtonActionPerformed(java.awt.event.ActionEvent evt) {                                        
            // 6 spaces added to the address. This is done for control reasons. Below we
            // use substring which causes exception when those spaces do not exist.
            String address = addressComboBox.getSelectedItem() + "      ";
            if(addressComboBox.getSelectedItem() == null || address.equalsIgnoreCase("      ") || address.equalsIgnoreCase("http://      ")) {
                JOptionPane.showMessageDialog(null, "No address specified.", "No address", javax.swing.JOptionPane.ERROR_MESSAGE);
            else {
                if(!address.substring(0, 7).equalsIgnoreCase("http://"))
                    address = "http://" + address;
                    RetrievePageTask retrievePageTask = new RetrievePageTask(address);
                    retrievePageTask.execute();
        // Action performed when closing the form window
        private void formWindowClosing(java.awt.event.WindowEvent evt) {                                  
            try {
                addUrlsToHistoryFile(historyMem);
            catch(IOException exc) {
                System.out.println(exc);
        /* This method is used to handle the case in which the user clicks on a hyperlink.
         In this case the pageEditorPane must present the contents of the URL that was
         clicked. This URL is retrieved from the evt object (which is a parameter to this
         method) with the method getURL().
        private void pageEditorPaneHyperlinkUpdate(javax.swing.event.HyperlinkEvent evt) {                                              
            if(evt.getEventType() == javax.swing.event.HyperlinkEvent.EventType.ACTIVATED) {
                 RetrievePageTask retrievePageTask = new RetrievePageTask(evt.getURL().toString());
                retrievePageTask.execute();
        // This method adds the visited URLs to the addressComboBox's item list. It takes as a
        // parameter the URL which is going to be added. If the URL is already in the list, then
        // it is not added again.
        private void addUrlToAddressComboBox(String url_str) {
            // number of items in the combo box's list
            int itemCount = addressComboBox.getItemCount();
            for(int i = 0; i < itemCount; i++) {
                if(url_str.equalsIgnoreCase((String)addressComboBox.getItemAt(i)))
                    return;
            addressComboBox.addItem(url_str);
            historyMem.add(url_str);
        // This method adds the visited URLs to the history file. It takes as a parameter the URL
        // which is going to be added.
        private void addUrlsToHistoryFile(Vector url_history) throws IOException {
            PrintWriter outputStream = null;
            try {
                outputStream = new PrintWriter(new FileWriter("history.txt"));
                for(int i = 0; i < url_history.size(); i++)
                    outputStream.println((String)url_history.get(i));
            finally {
                if(outputStream != null) {
                    outputStream.close();
         * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    BrowserFrame surfRider = new BrowserFrame();
                    surfRider.setVisible(true);
        // Variables declaration - do not modify                    
        private javax.swing.JMenuItem aboutMenuItem;
        private javax.swing.JComboBox addressComboBox;
        private javax.swing.JLabel addressLabel;
        private javax.swing.JMenuItem exitMenuItem;
        private javax.swing.JMenu fileMenu;
        private javax.swing.JButton goButton;
        private javax.swing.JMenu helpMenu;
        private javax.swing.JMenuItem historyMenuItem;
        private javax.swing.JButton homeButton;
        private javax.swing.JButton jButton1;
        private javax.swing.JButton jButton2;
        private javax.swing.JButton jButton3;
        private javax.swing.JLabel jLabel1;
        private javax.swing.JScrollPane jScrollPane1;
        private javax.swing.JMenuBar menuBar;
        private javax.swing.JMenuItem openFileMenuItem;
        private javax.swing.JEditorPane pageEditorPane;
        private javax.swing.JProgressBar pageLoadProgressBar;
        private javax.swing.JMenuItem pageSourceMenuItem;
        private javax.swing.JMenuItem preferencesMenuItem;
        private javax.swing.JButton refreshButton;
        private javax.swing.JLabel statusLabel;
        private javax.swing.JMenu toolsMenu;
        private javax.swing.JMenu viewMenu;
        // End of variables declaration                  
        // Variables decleration - able to modify
        private Vector<String> historyMem = new Vector<String>();
        private String homePage = "http://www.kaissa.gr";
        // End of variables decleration
        // PUBLIC METHODS
        // Get and Set methods for the private variables declared above
        public Vector getHistoryMem() {
            return historyMem;
        public void setHistoryMem(Vector<String> newHM) {
            historyMem = newHM;
        public String getHomePage() {
            return homePage;
        public void setHomePage(String newHP) {
            homePage = newHP;
    }

  • "This form cannot be opened in a web browser. to open this form use microsoft infopath" while adding a new Approval - Sharepoint 2010 and Publishing Approval workflow.

    I am trying to add a new workflow to a document library with the below mentioned settings and getting error saying "This form cannot be opened in a web browser. to open this form use microsoft infopath" while adding a new Approval - Sharepoint
    2010 and  Publishing Approval workflow" . For your information the I have checked the server default option to open in browser.
    Versioning Settings.
    Error
    This is quiet urgent issue . Any help would be really helpful.. Thanks.. 

    Hi Marlene,
    Thank you very much for your suggestions.
    But I am not creating a custom workflow in designer as Laura has mentioned. I am instead trying to create a new Out of the box Approval Workflow and I get the error mentioned above.
    As it works in other environment, I tried figuring out the possible differences which can lead to this error.
    Today I found one difference which is there are no form Templates within Infopath Configurations in Central Admin. Now I am trying to figure out what makes this form templates to be added to the template gallery.
    Regards,
    Vineeth

  • Proto adding strange items in web browser

    Hi, Proto is adding strange items in web browser that are not in the editor. See images below
    Editor
    Web
    It seems to be adding content that is placed at the bottom of the page.
    See live link https://creative.adobe.com/file/ff07618c-b98a-4672-a2ce-8f7b4c7c0558
    Please advise on how I can fix this issue.
    Kind Regards
    Ryan

    Hi Ken, thanks for getting back to me.
    I am have tried to login to my creative cloud account, but found that my proto project will no longer sync with the cloud. Not sure what to do hear. I have tried to login in and out of my account, on my ipad which didn't help.
    Please advise.
    Kind Regards
    Ryan

  • Web browser not started by java gui 7.20

    Hello,
    I use the java gui 7.20 on Linux.
    When I click a link icon that points to a document on my content server, it does not start a web browser
    to open the url.
    Would you know how I could trace the problem?
    Thanks in advance for your help

    Hello,
    you can verify with following steps:
    Please enable tracing according to [note 683960|https://service.sap.com/sap/support/notes/683960] and add trace keys GMUX and C_GMUX by removing the comment symbols in front of the last two lines of the list.
    Then perform the steps, which should result in opening that URL in the browser.
    Open the trace file and search for "GMUX Request".
    In case there are such entries, the corrections part of [note 1444941|https://service.sap.com/sap/support/notes/1444941] should solve your problem.
    Otherwise you might want to create a support message on component BC-FES-JAV, so we can look into this.
    Best regards
    Rolf-Martin

  • JMF and web browser GUI

    hi,
    i have made a java web browser and i would like to add sound events to the gui JButtons ("back","next", etc.).
    I would also like to add a text to speech funtion that reads the text between <BODY> .... </BODY> in the HTML docs open in the browser JEditorPane.
    If anyone has any experiece with this I would really appreciate thier help.
    THANKS!!

    Hi BradW,
    The way this is supposed to be done in Web Cache is by keeping separate copies of a cached page for different types of browsers distinguished by User-Agent header.
    In case of cache miss, Web Cache expects origin servers to return appropriate version of the page based on browser type, and the page from the origin server is just forwarded back to browser.
    Here, if the page is cacheable, Web Cache retains a separate copy for each type of User-Agent header value.
    And when there is a hit on this cached page, Web Cache returns the version of page with the User-Agent header that matches the request.
    Check out the config screen titled "Header Association" for this feature.
    About forwarding requests to different origin servers based on User-Agent header value, Web Cache does not have such capability.

  • Web Browser using GUI

    Hello, I have make a Web Browser using Swing/AWT, I've done the basic Web Browser, my assignment asks for addtional functionality like Bookmarks, and history. I can't post all the code, but here's what i've done for both.
         * History menu and add file menu items
        private void makeHistoryMenu()
            historyItem = new JMenuItem("History");
            historyItem.setBackground(Color.white);
            historyItem.addActionListener(new ActionListener()
                public void actionPerformed(ActionEvent e)
                      //Add url to history;
           // historyMenu.add(location);
    // Bookmark button
            bookmarkButton = new JButton("Bookmark");
            bookmarkButton.setToolTipText("Bookmark");
            bookmarkButton.addActionListener(new ActionListener()
                public void actionPerformed(ActionEvent evt)
                    URL url;
                    try
                        String location = locationInput.getText();
                        location = "http://" + location;
                        historyArray.add(location); // Do I need an arraylist to store the entries??
                    catch (Exception e)
                        return;
            });it doesn't show the the bookmarks or the history
    Thanks

    you must add the button to the Component where you want to show it
    (or the historyItem to the JMenu)
    e.g.:
    JFrame frame = new JFrame();
    JButton historyButton = new JButton("History);
    frame.add(historyButton);
    frame.setVisible(true);
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Web Browser page is not getting displayed

    Hi,
    I have logged into SRM server thrugh web Browser.
    Roles are attached to the user.
    When i Click the Go shopping  -PAGE cannot be displayed " error is appearing.
    For some of the Nodes example --default setting page is displayed.
    We are in SRM 5.0 .
    The error is given below
    This is my URL
    *http://orange.dht.com:8000/sap/bc/gui/sap/its/bbpstart?sap-client=001&sap-language=EN*
    The page cannot be displayed
    If you typed the page address in the Address bar, make sure that it is spelled correctly.
    Regards
    G.Ganesh Kumar

    Hello Ganesh,
    As written by Iftekhar, check table TWPURLSVR.
    You can also have a look at OSS note 1145305 - SRM menu does not work as expected or any other SAP note dealing with this table.
    Regards.
    Laurent.

  • Adobe 9.1.3 and FireFox 3.5.1+ "...can not be used to view PDF files in a Web Browser"

    This is the issue but I'm not sure there is a resolution:
    Firefox:  Version 3.5.1
    Adobe: Version 9.1.3
    When navigating the web, click a URL that opens a PDF inside the browser and you get an error * "The Adobe Acrobat/Reader that is
    running can not be used to view PDF files in a Web Browser".  Please exit Adobe Acrobat/Reader and exit your Web Browser and try again".  I did read a post that doing a "repair" from the Adobe Reader application should fix this, they also reference a few registry keys to check becuase the post states it's lost the application path to Adobe version X.  I don't necessarily buy that "fix" and here are my details below.
    In FireFox if you navigate to Tools > Options > Applications > Adobe Acrobat Document
    You're given choices:
    Always ask:  DOES NOT WORK, produces afore mentioned error *
    Save File:  Works, saves the file to a directory on your PC
    Use Adobe Reader 9.1 (defau...:  Works, opens your PDF's outside of your web browser
    Use Adobe Acrobat (in Firefox):  DOES NOT WORK, produces afore mentioned error *
    Use other...:
    IE seems to just work as expected.
    If you open Adobe Reader > Edit > Preferences > Internet > Check "Display PDF in browser" - DOES NOT WORK, produces afore mentioned error *
    This would seem to be an Adobe error rather than a FireFox web browser problems since FireFox does seem to know the correct path although I suppose you can't rule out that this is a FireFox problem since 2 out of the 4 PDF open options DON'T WORK.
    Any thoughts on this issue would be greatly appreciated.
    Other information:
    Adobe 8.1.5 works perfectly with FF 3.5.1+ when opening PDF's in the web browser, we also had no problems with previous versions either.
    MSI push via Active Directory from Adobe 8.1.5 upgrade to Licensed Distribution I signed up for, Adobe 9.1.3 which was upgraded from 9.1.0, to 9.1.2, to 9.1.3 via an MSP patch.
    Operating system:  Windows XP SP 2, plenty of RAM, plenty of Drive
    IE version this works with the new version of Adobe 9.1.3 is version 7 (7.0.5730.13)
    Our FireFox MSI's come from Front Motions website and as far as I know we've never had problems with their MSI's, also tried the new release of FF 3.5.2 from their website.
    I think that about covers it.  Anyone else experiencing the same problems or have a patch?

    After troublshooting this for the entire day today the issue seems to be a MIME problem.
    If everything is woking perfectly, in Tools > Options > Applications...
    You should see 4 or more things related to Adobe like "Adobe Acrobat Forms Document", etc.  If you don't see at least 4 MIME entries either your Adobe installation is hosed or your FF installation is hosed.  I haven't figured out which is causing the issue.
    What I did was remaster my patches from my original Adobe 9.1.0 MSI with the two updates via the command line in the directories with the source files.  On the 9.1.0 original file I first remastered my MST transform with the Adobe MST utility.  I then applied my patches.
    msiexec /a AcroRead.msi /p AdbeRdrUpd912_all_incr.msp
    msiexec /a AcroRead.msi /p AdbeRdrUpd913_all_incr.msp
    I then uploaded that to my network share, unlinked my group policy, made a new group policy, added a batch file to delete adobe.com from program file and the desktop on system startup even though my MST was supposed to take care of that - it's not a perfect world is it?  :-)
    I then reapplied my GPO's for both FireFox 3.5.2 and Adobe 9.1.3, I checked to make sure the MIME extensions were there and they were.  You might have to go into your Adobe Preferences and select that open in browser setting depending on what happens or adjust your MIME settings in FireFox's options but it should work.
    That's what worked for me.  It's possible a few other things I did along the way tweaked it out, in my group policy on the first run I did select to upgrade previous group policies, for the remaster and repush I didn't select any previous GPO's to upgrade.
    It's hard to tell what one thing tweaked it out or what combination of things tweaked out the install.  I did also reinstall Adobe 8.1.5 and FF 3.0.10 before doing all this since our machines currently have that setup, I'm not sure if that affected it either, it's just hard to tell but I don't think it did simply because I had done that several times in troubleshooting this issue.
    If anyone else has more specifics that would be great!

  • Swing components in applet not working in web browser

    Hi Guys,
    I've created an applet which makes use of some swing components, but unfortunately, not all of them function properly in my web browser (internet explorer or Mozilla Firefox). Its mainly the buttons; the last buttons works and displays the correct file within the broswer, but the first 5 buttons do not work...
    any help please on how I can sort this problem out?
    Heres the code for my applet:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.applet.*;
    public class MainAppWindow extends JApplet
    int gapBetweenButtons = 5;
    final JPanel displayPanel = new JPanel(new BorderLayout());
    public void init()
       //Panel for overall display in applet window.
       JPanel mainPanel = new JPanel(new BorderLayout());
       mainPanel.add(new JLabel(new ImageIcon(getClass().getResource("images/smalllogo2.gif"))),BorderLayout.NORTH);
       //sub mainPanel which holds all mainPanels together.
       JPanel holdingPanel = new JPanel(new BorderLayout());
       //Panel for displaying all slide show and applications in.
       displayPanel.setBackground(Color.white);
       displayPanel.add(new JLabel(new ImageIcon(getClass().getResource("images/IntroPage.jpg"))),BorderLayout.CENTER);
       displayPanel.setPreferredSize(new Dimension(590,400));
       JPanel buttonPanel = new JPanel(new GridLayout(6,1,0,gapBetweenButtons));
       buttonPanel.setBackground(Color.white);
       JButton button1 = new JButton("User guide");
       button1.addActionListener(
         new ActionListener() {
              public void actionPerformed(ActionEvent e)
                   if(displayPanel.getComponents().length > 0)displayPanel.removeAll(); // If there are any components in the mainPanel, remove them and then add label
                   displayPanel.setBackground(Color.white);
                   displayPanel.add(new JLabel(new ImageIcon("images/UserGuide.jpg")));
                   displayPanel.revalidate(); // Validates displayPanel to allow changes to occur onto it, allowing to add different number images/applicaions to it.
       JButton button2 = new JButton("What is a Stack?");
       button2.addActionListener(
       new ActionListener() {
               public void actionPerformed(ActionEvent e)
                   if(displayPanel.getComponents().length > 0)displayPanel.removeAll();
                   displayPanel.setBackground(Color.white);
                   displayPanel.add(new JLabel(new ImageIcon("images/WhatIsAStack.jpg")));
                   displayPanel.revalidate();
       JButton button3 = new JButton("STACK(ADT)");
       button3.addActionListener(
       new ActionListener() {
             public void actionPerformed(ActionEvent e)
                   if(displayPanel.getComponents().length > 0)displayPanel.removeAll();
                   displayPanel.setBackground(Color.white);
                   displayPanel.add(new JLabel(new ImageIcon("images/StackADT.jpg")));
                   displayPanel.revalidate();
       JButton button4 = new JButton("Stacks in the Real World");
       button4.addActionListener(
       new ActionListener() {
             public void actionPerformed(ActionEvent e)
                   if(displayPanel.getComponents().length > 0)displayPanel.removeAll();
                   displayPanel.setBackground(Color.white);
                   displayPanel.add(new JLabel(new ImageIcon("images/StacksInTheRealWorld.jpg")));
                   displayPanel.revalidate();
       JButton button5 = new JButton("DEMONSTRATION");
       button5.addActionListener(
       new ActionListener() {
             public void actionPerformed(ActionEvent e)
                 if(displayPanel.getComponents().length > 0)displayPanel.removeAll();
                 Demonstration app = new Demonstration();
                 JPanel appPanel = app.createComponents();//gets the created components from Demonstration application.
                 appPanel.setBackground(Color.pink);
               displayPanel.add(appPanel);
               displayPanel.revalidate();
       JButton button6 = new JButton("Towers Of Hanoi");
       button6.addActionListener(
       new ActionListener() {
             public void actionPerformed(ActionEvent e)
                     if(displayPanel.getComponents().length > 0)displayPanel.removeAll();
                     TowerOfHanoi app = new TowerOfHanoi();
                     JPanel appPanel = app.createComponents();//gets the created components from Towers of Hanoi
                     JPanel mainPanel = new JPanel();//panel used to centralise the application in center
                     mainPanel.add(appPanel);
                     mainPanel.setBackground(Color.pink); //sets mainPanel's background color for 'Towers Of Hanoi'
                     displayPanel.add(mainPanel);
                     displayPanel.revalidate();
       //adding buttons to the buttonPanel.
       buttonPanel.add(button1);
       buttonPanel.add(button2);
       buttonPanel.add(button3);
       buttonPanel.add(button4);
       buttonPanel.add(button5);
       buttonPanel.add(button6);
       JPanel p = new JPanel(); // Used so that the buttons maintain their default shape
       p.setBackground(Color.white);
       p.add(buttonPanel);
       holdingPanel.add(p,BorderLayout.WEST);
       holdingPanel.add(displayPanel,BorderLayout.CENTER);
       //Positioning of holdingPanel in mainPanel.
       mainPanel.add(holdingPanel,BorderLayout.CENTER);
       //indent mainPanel so that its not touching the applet window frame.
       mainPanel.setBorder(BorderFactory.createEmptyBorder(10,20,10,20));
       mainPanel.setBackground(Color.white);
       mainPanel.setPreferredSize(new Dimension(850,600)); //size of applet window
       mainPanel.setOpaque(false); // Needed for Applet
       this.setContentPane(mainPanel);
    }

    Thanks for the response. I don't quite understand what you're talking about though. I have, in my humble knowledge, done nothing with packages. I have put the applet class (WiaRekenToolActiz.class is the applet class) in the jar file wia_actiz_archive.jar. From what I read on the tutorial, java looks for the applet class in all the jar files specified. Since I put my CODEBASE as the main url, I thought it baiscally didn't matter where you out the html file.
    I shall include the complete html page complete with applet tag to perhaps illuminate a bit more what I mean...
    <html>
    <head>
    <title>Wia Rekenmodule hello!</title>
    </head>
    <body bgcolor="#C0C0C0">
    <applet
    CODEBASE= "http://www.creativemathsolutions.nl/test"
    ARCHIVE= "Actiz/wia_actiz_archive.jar, Generic/wia_archive.jar"
    CODE="WiaRekenToolActiz.class" 
    WIDTH=915 HEIGHT=555
    >
    <PARAM NAME = naam VALUE = "Piet Janssen">
    <PARAM NAME = gebdag VALUE = "01">
    <PARAM NAME = gebmaand VALUE = "06">
    <PARAM NAME = gebjaar VALUE = "1970">
    <PARAM NAME = geslacht VALUE = "man">
    <PARAM NAME = dienstjaren VALUE = "10">
    <PARAM NAME = salaris VALUE = "56500">
    <PARAM NAME = deeltijdpercentage VALUE = "100">
    <PARAM NAME = accountnaam VALUE = "Zorginstelling 'De Zonnebloem'">
    </applet>
    </body>
    </html>

  • Problem in Calling Sub VI remotely from a main VI in a Web Browser.

    Hi i am Calling Sub VI remotely from a main VI in a Web Browser.
    My task details:
              I my project i am fechting data from a MySQL data base and storing in a table on the main VI front panel.For User help i am calling a sub VI front panel which is consisting of a progress bar and percentage indicator.It indicates the user that the data is loading from the DB.The main purpus of a subVI is to make the GUI more user friendly..by displaying the SubVI front panel until whole data is loaded into the table and closing Immediately after load complete.
    What i did? 
            To call a SUB VI i just right clicked on the subVI icon on the main VI >> SubVI node setup>> Show front panel when called.
            In main VI Execution property i have seected Preallocated clone reentrant execution
            In Sub VI Execution property i have seected Non- reentrant execution.
            If i select Preallocated clone reentrant execution in Sub VI while calling sub VI i am getting warning message saying subVI front panel cannot be controlled remotely.
    Promblem I am facing:
    It is working perfect in a server machine(as a stand alone) but when i call the same VI or application in remote system i abserved two issues
    1.  When i call a sub VI every time the front panel is coming in both server and client machine.I want the subVI panel to display only in the client machine, other wise the user sitting in front of the server will be confused by seeing many popups(SubVIs) in his system.
    2. When one client is calling a SubVI, the other user should wait until the the sub vi displayed and closed in the 1st client.Means the simultaniously more than one client cant access the SubVI.In this case i can access the main VI simultaniously but not the SubVI.
    Please give me the solution.It wil be very helpful for me.Thank You in advance.
    Thanks & Regards
    Gundappa

    I did some prijects with Siebel, but we used JMS for sending and retrieving message between Siebel and BPEL. Can you use this solution? This also gives you the advantage that you can guarantee that the transactionis committed and placed in a queue. You can also bring down the BPEL environment without interfering the Siebel environment, because the communication is done via JMS (queueus)

  • .xbap file not opening in web browser(IE and Chrome) and just keep on downloading it

    i have developed  small XBAP application and trying to run (F5)
    Problem is when i trying to run the Application,
    its keep on downloading it (.xbap file ) and i can't see an application on Web browser even though i am developing in the local machine with .net 4.5 is installed and all necessary setting in the Internet option done.
    [i just added one button in one page and not much code i have written]
    i tried all the solution which i can get it from Google :-(  but still failed.
    Please provide me the proper solution.

    You have to register the WPF Multipurpose Internet Mail Extensions (MIME) types and file name extensions on the web server if you haven't already done so. Please refer to the following page for more information about how to do this:
    https://msdn.microsoft.com/en-us/library/vstudio/ms752346(v=vs.100).aspx
    If you are using another browser than Internet Explorer you will need to install a plugin:
    http://stackoverflow.com/questions/7337155/how-can-i-get-my-xbap-to-run-in-my-browser-instead-of-downloading-it-on-windows
    https://support.mozilla.org/en-US/kb/How%20to%20enable%20and%20disable%20Windows%20Presentation%20Foundation
    ...but XBAP generally don't tend work that well in other browsers than IE.
    Also make sure that you have enabled the "XAML browser applications" option under Internet Options->Security-> Custom level in IE:
    http://stackoverflow.com/questions/17261858/run-wpf-application-in-browser
    Hope that helps.
    Please remember to close your threads by marking helpful posts as answer and please start a new thread if you have a new question.

  • Getting out of memory exception while loading images in web browser control one by one in windows phone 8 silverlight application?

    Hi, 
    I am developing a windows phone 8 silver light application . 
    In my app I am displaying images in web browser control one by one , those images are the web links , the problem is after displaying 2 to 3 images I am getting out of memory exception .
    I searched for this exception how to over come , everybody are saying memory profiling ,..etc but really I dont know how to release the memory and how to clear the memory .
    In some sites they are adding this
    <FunctionalCapabilities>
    <FunctionalCapability Name="ID_FUNCCAP_EXTEND_MEM"/>
    </FunctionalCapabilities>
    by doing this am I free from out of memory exception?
    Any help ,
    Thanks...
    Suresh.M

    string HtmlString = "<!DOCTYPE html><html><head><meta name='viewport' content='width=device-width,initial-scale=1.0, user-scalable=yes' /></head>";
    HtmlString = HtmlString + "<body>";
    HtmlString = HtmlString + "<img src=" + source +" />";
    HtmlString = HtmlString + "</body></html>";
    innerpagebrowser.NavigateToString(HtmlString);
    that image source is the web link for example www.sss.com/files/xxx/123.jpg .
    Note this link is not real this is sample and image is of size 2071X3097
    Suresh.M

  • Issue in running JavaFX application in web browser

    Our team currently was developing a desktop application which now needs to be run in a web browser. Deployment is successful, but while running it in IE 8, the background color of the IE outside the stage (from the desktop application) is coming in grey color. Our applucation's background color is white, hence, this makes it look odd. The more peculiar thing is when we run the url in IE8, the first page (login page) comes without the grey part, ie the whole window is white colored. But after logout, (the login page should be made visible) only the stage size comes in white and the rest of the window comes in grey background color. Please help in fixing this.

    to answer your questions:
    how to set the browser size according to stage sizeTo resize area reserved for application in a web page you can access web page from inside of your app and use javascript to get a handle of application in the web page DOM and then set size on it as you need.
    See
    http://docs.oracle.com/javafx/2.0/deployment/javafx_javascript.htm#BCEIAGHE
    and
    http://docs.oracle.com/javafx/2.0/deployment/javafx_javascript.htm#BCEIBFGD
    How to get the handle for browser size here?For embedded application you will get initial Stage in the start() sized to browser allocated area.
    And you can you tip i referenced before to resize app if browser will change allocated area (due to user requests).
    However, i think your real question is different:
    that in the login page the stage size is smaller than the browser size we set while packagingDoes it mean your app pops create login stage first and then populate main stage?
    Then good app behavior is like:
    if (runningEmbedded) { //see tip 2.3.1 in the same guide
    //fill given stage with something - e.g. same background as web page or some image
    popLoginPage();
    //once user logged populate main stage
    populateMainStage();
    And create all assets for all stages in the init(). So in start you will only adding panels to the stages and creating new stages.
    You may need to erase "dummy" content from the main stage before you populate it.
    Hope this helps. If not, please explain what you app is doing in more details. What do you do with stage provided in start, how you create login and other stages.
    What you size your application to and what are stage dimensions.

  • Daily Kernel Panic while web browsing

    Hello,
    I'm receiving nearly daily kernel panics while web browsing. At first this was happening in Chrome, so I uninstalled it and went back to using Safari. The problem occurs in Safari as well. It seems to occur most often when I launch additional browser tabs (usually after 3 tabs have opened - happened in both Chrome and Safari)  The latest log is below followed by the output from EtreCheck. Any suggestions?
    Anonymous UUID:       FD0F2F5C-F419-7A5A-B43A-88BF1A1E559E
    Thu Mar  5 19:57:56 2015
    *** Panic Report ***
    panic(cpu 4 caller 0xffffff800c41a46e): Kernel trap at 0xffffff800c10e0b4, type 13=general protection, registers:
    CR0: 0x000000008001003b, CR2: 0x00007ffc01ccd000, CR3: 0x00000008261f5021, CR4: 0x00000000001627e0
    RAX: 0x0000000000000004, RBX: 0x0000000000000004, RCX: 0x0000000000000003, RDX: 0x0000000000000024
    RSP: 0xffffff83b6d93db8, RBP: 0xffffff83b6d93e20, RSI: 0xffffff8054008eaa, RDI: 0xffffff8054008eae
    R8:  0x00000000000001d7, R9:  0xffffff8073f67140, R10: 0x00000000000002aa, R11: 0xffffff8349615000
    R12: 0xffffff800c31b550, R13: 0xffffff8054008eac, R14: 0xffffff8054008e00, R15: 0xffffff800c96e25e
    RFL: 0x0000000000010602, RIP: 0xffffff800c10e0b4, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0x00007ffc01ccd000, Error code: 0x0000000000000000, Fault CPU: 0x4
    Backtrace (CPU 4), Frame : Return Address
    0xffffff83a9355e10 : 0xffffff800c32fe41
    0xffffff83a9355e90 : 0xffffff800c41a46e
    0xffffff83a9356050 : 0xffffff800c436683
    0xffffff83a9356070 : 0xffffff800c10e0b4
    0xffffff83b6d93e20 : 0xffffff800c328ebc
    0xffffff83b6d93e90 : 0xffffff800c3294db
    0xffffff83b6d93f10 : 0xffffff800c4059fa
    0xffffff83b6d93fb0 : 0xffffff800c436ea6
    BSD process name corresponding to current thread: launchservicesd
    Mac OS version:
    14C109
    Kernel version:
    Darwin Kernel Version 14.1.0: Mon Dec 22 23:10:38 PST 2014; root:xnu-2782.10.72~2/RELEASE_X86_64
    Kernel UUID: DCF5C2D5-16AE-37F5-B2BE-ED127048DFF5
    Kernel slide:     0x000000000c000000
    Kernel text base: 0xffffff800c200000
    __HIB  text base: 0xffffff800c100000
    System model name: iMac15,1 (Mac-FA842E06C61E91C5)
    System uptime in nanoseconds: 78073549621790
    last loaded kext at 27267510428: com.apple.filesystems.smbfs 3.0.0 (addr 0xffffff7f8ce4a000, size 393216)
    last unloaded kext at 189409942040: com.apple.driver.AppleFileSystemDriver 3.0.1 (addr 0xffffff7f8e80d000, size 8192)
    loaded kexts:
    org.virtualbox.kext.VBoxNetAdp 4.3.22
    org.virtualbox.kext.VBoxNetFlt 4.3.22
    org.virtualbox.kext.VBoxUSB 4.3.22
    org.virtualbox.kext.VBoxDrv 4.3.22
    com.apple.filesystems.smbfs 3.0.0
    com.apple.filesystems.afpfs 11.0
    com.apple.nke.asp-tcp 8.0.0
    com.apple.driver.AppleBluetoothMultitouch 85.3
    com.apple.filesystems.autofs 3.0
    com.apple.driver.AGPM 100.15.5
    com.apple.driver.ApplePlatformEnabler 2.1.7d1
    com.apple.driver.X86PlatformShim 1.0.0
    com.apple.iokit.IOUserEthernet 1.0.1
    com.apple.iokit.IOBluetoothSerialManager 4.3.2f6
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleHV 1
    com.apple.driver.AppleOSXWatchdog 1
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AppleMikeyDriver 269.25
    com.apple.driver.AppleGraphicsDevicePolicy 3.7.7
    com.apple.driver.AppleUpstreamUserClient 3.6.1
    com.apple.kext.AMDFramebuffer 1.3.0
    com.apple.driver.AppleHDA 269.25
    com.apple.driver.AppleIntelHD5000Graphics 10.0.2
    com.apple.AMDRadeonX4000 1.3.0
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.3.2f6
    com.apple.driver.AppleLPC 1.7.3
    com.apple.driver.AppleIntelFramebufferAzul 10.0.2
    com.apple.driver.AppleMCCSControl 1.2.11
    com.apple.driver.AudioAUUC 1.70
    com.apple.kext.AMD9000Controller 1.3.0
    com.apple.driver.AppleSMCLMU 2.0.7d0
    com.apple.driver.AppleThunderboltIP 2.0.2
    com.apple.iokit.IOUSBAttachedSCSI 1.1.0
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.driver.AppleUSBHub 705.4.2
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.7.0
    com.apple.driver.AppleSDXC 1.6.5
    com.apple.iokit.AppleBCM5701Ethernet 10.1.3
    com.apple.driver.AirPort.Brcm4360 910.26.12
    com.apple.driver.AppleAHCIPort 3.1.0
    com.apple.driver.AppleUSBXHCI 710.4.11
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleACPIButtons 3.1
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 3.1
    com.apple.driver.AppleAPIC 1.7
    com.apple.nke.applicationfirewall 161
    com.apple.security.quarantine 3
    com.apple.security.TMSafetyNet 8
    com.apple.security.SecureRemotePassword 1.0
    com.apple.driver.IOBluetoothHIDDriver 4.3.2f6
    com.apple.driver.AppleMultitouchDriver 262.33.1
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOSerialFamily 11
    com.apple.driver.DspFuncLib 269.25
    com.apple.kext.OSvKernDSPLib 1.15
    com.apple.iokit.IOSurface 97
    com.apple.driver.AppleGraphicsControl 3.8.6
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.3.2f6
    com.apple.iokit.IOBluetoothFamily 4.3.2f6
    com.apple.iokit.IOAcceleratorFamily2 156.6
    com.apple.driver.X86PlatformPlugin 1.0.0
    com.apple.driver.IOPlatformPluginFamily 5.8.1d38
    com.apple.driver.AppleSMBusController 1.0.13d1
    com.apple.iokit.IOUSBUserClient 705.4.0
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.kext.AMDSupport 1.3.0
    com.apple.AppleGraphicsDeviceControl 3.8.6
    com.apple.driver.AppleSMC 3.1.9
    com.apple.driver.AppleHDAController 269.25
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.iokit.IOHDAFamily 269.25
    com.apple.driver.AppleThunderboltEDMSink 4.0.2
    com.apple.driver.AppleUSBHIDKeyboard 176.2
    com.apple.driver.AppleHIDKeyboard 176.2
    com.apple.iokit.IOUSBHIDDriver 705.4.0
    com.apple.driver.AppleUSBAudio 295.23
    com.apple.iokit.IOAudioFamily 203.3
    com.apple.vecLib.kext 1.2.0
    com.apple.driver.AppleUSBMergeNub 705.4.0
    com.apple.iokit.IOSCSIBlockCommandsDevice 3.7.3
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.7.3
    com.apple.driver.AppleUSBComposite 705.4.9
    com.apple.driver.CoreStorage 471.10.6
    com.apple.driver.AppleThunderboltDPOutAdapter 4.0.6
    com.apple.driver.AppleThunderboltDPInAdapter 4.0.6
    com.apple.driver.AppleThunderboltDPAdapterFamily 4.0.6
    com.apple.driver.AppleThunderboltPCIDownAdapter 2.0.2
    com.apple.driver.AppleThunderboltNHI 3.1.7
    com.apple.iokit.IOThunderboltFamily 4.2.1
    com.apple.iokit.IOEthernetAVBController 1.0.3b3
    com.apple.iokit.IO80211Family 710.55
    com.apple.driver.mDNSOffloadUserClient 1.0.1b8
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOAHCIFamily 2.7.5
    com.apple.iokit.IOUSBFamily 710.4.14
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 300.0
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.AppleMobileFileIntegrity 1.0.5
    com.apple.driver.AppleCredentialManager 1.0
    com.apple.driver.DiskImages 396
    com.apple.iokit.IOStorageFamily 2.0
    com.apple.iokit.IOReportFamily 31
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 3.1
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.Libm 1
    com.apple.kec.pthread 1
    com.apple.kec.corecrypto 1.0
    Model: iMac15,1, BootROM IM151.0207.B01, 4 processors, Intel Core i7, 4 GHz, 32 GB, SMC 2.23f11
    Graphics: AMD Radeon R9 M295X, AMD Radeon R9 M295X, PCIe, 4096 MB
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343147533641465238412D50422020
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343147533641465238412D50422020
    Memory Module: BANK 0/DIMM1, 8 GB, DDR3, 1600 MHz, 0x859B, 0x43543130323436344246313630422E433136
    Memory Module: BANK 1/DIMM1, 8 GB, DDR3, 1600 MHz, 0x859B, 0x43543130323436344246313630422E433136
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x142), Broadcom BCM43xx 1.0 (7.15.159.13.12)
    Bluetooth: Version 4.3.2f6 15235, 3 services, 27 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: APPLE SSD SD0128F, 121.33 GB
    Serial ATA Device: APPLE HDD ST3000DM001, 3 TB
    USB Device: Backup+ Desk
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Logitech Camera
    USB Device: Keyboard Hub
    USB Device: Apple Keyboard
    Thunderbolt Bus: iMac, Apple Inc., 26.1
    ==================================
    Problem description:
    Kernel Panic while web browsing
    EtreCheck version: 2.1.8 (121)
    Report generated March 5, 2015 at 8:05:01 PM CST
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        iMac (Retina 5K, 27-inch, Late 2014) (Technical Specifications)
        iMac - model: iMac15,1
        1 4 GHz Intel Core i7 CPU: 4-core
        32 GB RAM Upgradeable
            BANK 0/DIMM0
                8 GB DDR3 1600 MHz ok
            BANK 1/DIMM0
                8 GB DDR3 1600 MHz ok
            BANK 0/DIMM1
                8 GB DDR3 1600 MHz ok
            BANK 1/DIMM1
                8 GB DDR3 1600 MHz ok
        Bluetooth: Good - Handoff/Airdrop2 supported
        Wireless:  en1: 802.11 a/b/g/n/ac
    Video Information: ℹ️
        AMD Radeon R9 M295X - VRAM: 4096 MB
            iMac spdisplays_5120x2880Retina
    System Software: ℹ️
        OS X 10.10.2 (14C109) - Time since boot: 0:6:55
    Disk Information: ℹ️
        APPLE SSD SD0128F disk0 : (121.33 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Boot OS X (disk0s3) <not mounted> : 134 MB
            Macintosh HD (disk2) / : 3.12 TB (2.04 TB free)
                Core Storage: disk0s2 120.99 GB Online
                Core Storage: disk1s2 3.00 TB Online
        APPLE HDD ST3000DM001 disk1 : (3 TB)
            EFI (disk1s1) <not mounted> : 210 MB
            Recovery HD (disk1s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk2) / : 3.12 TB (2.04 TB free)
                Core Storage: disk0s2 120.99 GB Online
                Core Storage: disk1s2 3.00 TB Online
    USB Information: ℹ️
        Seagate Backup+ Desk 4 TB
            EFI (disk3s1) <not mounted> : 315 MB
            Backup4TB (disk3s2) /Volumes/Backup4TB : 4.00 TB (701.39 GB free)
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple, Inc. Keyboard Hub
            Apple Inc. Apple Keyboard
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Configuration files: ℹ️
        /etc/launchd.conf - Exists
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /Applications/Toast 11 Titanium/Spin Doctor.app
        [not loaded]    com.hzsystems.terminus.driver (4) [Click for support]
            /Applications/Transmit.app
        [not loaded]    com.panic.TransmitDisk.transmitdiskfs (4.0.0 - SDK 10.6) [Click for support]
            /Applications/VMware Fusion.app
        [not loaded]    com.vmware.kext.vmci (90.6.3) [Click for support]
        [not loaded]    com.vmware.kext.vmioplug.14.1.3 (14.1.3) [Click for support]
        [not loaded]    com.vmware.kext.vmnet (0231.47.74) [Click for support]
        [not loaded]    com.vmware.kext.vmx86 (0231.47.74) [Click for support]
        [not loaded]    com.vmware.kext.vsockets (90.6.0) [Click for support]
            /Library/Application Support/VirtualBox
        [loaded]    org.virtualbox.kext.VBoxDrv (4.3.22) [Click for support]
        [loaded]    org.virtualbox.kext.VBoxNetAdp (4.3.22) [Click for support]
        [loaded]    org.virtualbox.kext.VBoxNetFlt (4.3.22) [Click for support]
        [loaded]    org.virtualbox.kext.VBoxUSB (4.3.22) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.AmbrosiaSW.AudioSupport (4.1.2 - SDK 10.6) [Click for support]
        [not loaded]    com.Belcarra.iokit.USBLAN_netpart (3.1.1 - SDK 10.6) [Click for support]
        [not loaded]    com.Belcarra.iokit.USBLAN_usbpart (3.1.1 - SDK 10.6) [Click for support]
        [not loaded]    com.RemoteControl.USBLAN.usbpart (3.1.1 - SDK 10.7) [Click for support]
        [not loaded]    com.aliph.driver.jstub (1.1.2 - SDK 10.7) [Click for support]
        [not loaded]    com.dvdfab.kext.fabio (1) [Click for support]
        [not loaded]    com.elgato.driver.DontMatchAfaTech (1.1) [Click for support]
        [not loaded]    com.elgato.driver.DontMatchCinergy450 (1.1) [Click for support]
        [not loaded]    com.elgato.driver.DontMatchCinergyXS (1.1) [Click for support]
        [not loaded]    com.elgato.driver.DontMatchEmpia (1.1) [Click for support]
        [not loaded]    com.elgato.driver.DontMatchVoyager (1.1) [Click for support]
        [not loaded]    com.iospirit.driver.rbiokithelper (1.24 - SDK 10.6) [Click for support]
        [not loaded]    com.markspace.driver.RemoteNDIS (430) [Click for support]
        [not loaded]    com.palm.ClassicNotSeizeDriver (3.2) [Click for support]
        [not loaded]    com.roxio.BluRaySupport (1.1.6) [Click for support]
            /System/Library/Extensions/2.2.0/Belcarra.USBLAN_netpart.kext/Contents/Plug-Ins
        [not loaded]    com.belcarra.iokit.netpart.panther (1.6.3) [Click for support]
            /System/Library/Extensions/2.2.0/Belcarra.USBLAN_usbpart.kext/Contents/Plug-Ins
        [not loaded]    com.belcarra.iokit.usbpart.panther (1.6.3) [Click for support]
            /System/Library/Extensions/2.2.0/RemoteControl.USBLAN_usbpart.kext/Contents/Plu g-Ins
        [not loaded]    com.RemoteControl.USBLAN.panther (1.6.2) [Click for support]
            /System/Library/Extensions/RBIOKitHelper.kext/Contents/PlugIns
        [not loaded]    com.iospirit.driver.RBTSRPlugin (1.18 - SDK 10.6) [Click for support]
            /Users/[redacted]/Library/Services/ToastIt.service/Contents/MacOS
        [not loaded]    com.roxio.TDIXController (2.0) [Click for support]
    Startup Items: ℹ️
        TuxeraNTFSUnmountHelper: Path: /Library/StartupItems/TuxeraNTFSUnmountHelper
        Startup items are obsolete in OS X Yosemite
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [running]    com.amazon.sendtokindle.launcher.plist [Click for support]
        [failed]    com.epson.esua.launcher.plist [Click for support] [Click for details]
        [failed]    com.epson.eventmanager.agent.plist [Click for support] [Click for details]
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
        [loaded]    org.gpgtools.gpgmail.enable-bundles.plist [Click for support]
        [loaded]    org.gpgtools.gpgmail.patch-uuid-user.plist [Click for support]
        [loaded]    org.gpgtools.Libmacgpg.xpc.plist [Click for support]
        [loaded]    org.gpgtools.macgpg2.fix.plist [Click for support]
        [running]    org.gpgtools.macgpg2.shutdown-gpg-agent.plist [Click for support]
        [loaded]    org.gpgtools.macgpg2.updater.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.actualtechnologies.odbcdriver.atsqlsrv.plist [Click for support]
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.adobe.SwitchBoard.plist [Click for support]
        [loaded]    com.ambrosiasw.ambrosiaaudiosupporthelper.daemon.plist [Click for support]
        [running]    com.crashplan.engine.plist [Click for support]
        [running]    com.fitbit.fitbitd.plist [Click for support]
        [running]    com.fitbit.galileod.plist [Click for support]
        [loaded]    com.google.keystone.daemon.plist [Click for support]
        [failed]    com.iospirit.candelair.sync.plist [Click for support] [Click for details]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Click for support]
        [not loaded]    com.wandisco.ubersvn_httpd.plist [Click for support]
        [not loaded]    com.wandisco.ubersvn_tomcat.plist [Click for support]
        [loaded]    org.gpgtools.gpgmail.patch-uuid.plist [Click for support]
        [not loaded]    org.virtualbox.startup.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [running]    com.akamai.single-user-client.plist [Click for support]
        [failed]    com.ecamm.printopia.plist [Click for support] [Click for details]
        [loaded]    com.pia.pia_manager.plist [Click for support]
        [failed]    com.plexapp.helper.plist [Click for support] [Click for details]
        [failed]    com.zeobit.MacKeeper.Helper.plist [Click for support] [Click for details]
        [not loaded]    org.virtualbox.vboxwebsrv.plist [Click for support]
    User Login Items: ℹ️
        System Events    Application  (/System/Library/CoreServices/System Events.app)
        AirPort Base Station Agent    Application  (/System/Library/CoreServices/AirPort Base Station Agent.app)
        iTunes    Application  (/Applications/iTunes.app)
        Caffeine    Application  (/Applications/Caffeine.app)
        Google Drive    Application  (/Applications/Google Drive.app)
        Dropbox    Application  (/Applications/Dropbox.app)
        CrashPlan menu bar    Application  (/Applications/CrashPlan.app/Contents/Helpers/CrashPlan menu bar.app)
        Android File Transfer Agent    Application  (/Users/[redacted]/Library/Application Support/Google/Android File Transfer/Android File Transfer Agent.app)
        video    Volume Hidden (/Volumes/video)
        Canon IJ Network Scanner Selector EX    Application Hidden (/Applications/Canon Utilities/IJ Network Scanner Selector EX/Canon IJ Network Scanner Selector EX.app)
        troy    Volume Hidden (/Volumes/[redacted])
        EvernoteHelper    Application  (/Applications/Evernote (93489).app/Contents/Library/LoginItems/EvernoteHelper.app)
        Things Helper    Application  (/Users/[redacted]/Library/Application Support/Cultured Code/Things Helper.app)
        EyeTV Helper    Application  (/Library/Application Support/EyeTV/EyeTV Helper.app)
    Internet Plug-ins: ℹ️
        AdobePDFViewerNPAPI: Version: 10.1.12 [Click for support]
        Flash Player: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        EPPEX Plugin: Version: 4.1.0.0 [Click for support]
        AdobePDFViewer: Version: 10.1.12 [Click for support]
        googletalkbrowserplugin: Version: 5.40.2.0 - SDK 10.8 [Click for support]
        AdobeExManDetect: Version: AdobeExManDetect 1.1.0.0 - SDK 10.7 [Click for support]
        iPhotoPhotocast: Version: 7.0 - SDK 10.8
        GoogleOneClickPlugin: Version: Unknown
        RealPlayer Plugin: Version: Unknown
        QuickTime Plugin: Version: 7.7.3
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        AdobeAAMDetect: Version: AdobeAAMDetect 1.0.0.0 - SDK 10.6 [Click for support]
        Silverlight: Version: 5.1.20913.0 - SDK 10.6 [Click for support]
        MeetingJoinPlugin: Version: Unknown - SDK 10.6 [Click for support]
        Google Earth Web Plug-in: Version: 5.1 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        SharePointBrowserPlugin: Version: 14.4.7 - SDK 10.6 [Click for support]
        o1dbrowserplugin: Version: 5.40.2.0 - SDK 10.8 [Click for support]
        JavaAppletPlugin: Version: Java 8 Update 25 Check version
        JoostPlugin: Version: 0.13.1 [Click for support]
    User internet Plug-ins: ℹ️
        WebEx64: Version: 1.0 - SDK 10.6 [Click for support]
        WebEx: Version: 1.0 [Click for support]
        GoogleOneClickPlugin: Version: Unknown
        Picasa: Version: 1.0 [Click for support]
    Safari Extensions: ℹ️
        1Password
        Evernote Web Clipper
    3rd Party Preference Panes: ℹ️
        Akamai NetSession Preferences  [Click for support]
        Candelair  [Click for support]
        Connect360  [Click for support]
        Flash Player  [Click for support]
        GoPro  [Click for support]
        GPGPreferences  [Click for support]
        Java  [Click for support]
        MusicManager  [Click for support]
        Tuxera NTFS  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: OFF
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 3.12 TB Disk used: 1.07 TB
        Destinations:
            Backup4TB [Local]
            Total size: 4.00 TB
            Total number of backups: 106
            Oldest backup: 2013-11-10 17:46:18 +0000
            Last backup: 2015-03-06 00:38:00 +0000
            Size of backup disk: Adequate
                Backup size 4.00 TB > (Disk used 1.07 TB X 3)
    Top Processes by CPU: ℹ️
           100%    AAM Updates Notifier
             2%    WindowServer
             1%    Safari
             0%    AppleSpell
             0%    SystemUIServer
    Top Processes by Memory: ℹ️
        378 MB    Dock
        241 MB    loginwindow
        241 MB    mds_stores
        241 MB    com.apple.MediaLibraryService
        206 MB    com.apple.WebKit.WebContent
    Virtual Memory Information: ℹ️
        26.34 GB    Free RAM
        4.70 GB    Active RAM
        1.31 GB    Inactive RAM
        2.00 GB    Wired RAM

    Hello all - so, I replaced the 2 memory modules that I added and put in a matching set from my Mac Mini. I went several days without issue until tonight - another kernel panic. Here is the dump. Any other ideas????
    Anonymous UUID:       FD0F2F5C-F419-7A5A-B43A-88BF1A1E559E
    Thu Mar 19 20:16:26 2015
    *** Panic Report ***
    panic(cpu 4 caller 0xffffff800c41a46e): Kernel trap at 0xffffff800c10e0c5, type 13=general protection, registers:
    CR0: 0x0000000080010033, CR2: 0x00000001104f8006, CR3: 0x000000082637204a, CR4: 0x00000000001627e0
    RAX: 0x0000000000000010, RBX: 0x0000000405ee0000, RCX: 0x0000000000000338, RDX: 0x0000000000004fe0
    RSP: 0xffffff83b6db36b8, RBP: 0xffffff83b6db36f0, RSI: 0xffffff834965fc38, RDI: 0xffffff834965fc48
    R8:  0x0000000000000526, R9:  0xffffff804f00cec0, R10: 0x0000000405ee6000, R11: 0xffffffffffff0000
    R12: 0xffffff804f00cec0, R13: 0x0000000000000270, R14: 0x0000000000000028, R15: 0x0000000405eeffff
    RFL: 0x0000000000010682, RIP: 0xffffff800c10e0c5, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0x00000001104f8006, Error code: 0x0000000000000000, Fault CPU: 0x4
    Backtrace (CPU 4), Frame : Return Address
    0xffffff83a93bde10 : 0xffffff800c32fe41
    0xffffff83a93bde90 : 0xffffff800c41a46e
    0xffffff83a93be050 : 0xffffff800c436683
    0xffffff83a93be070 : 0xffffff800c10e0c5
    0xffffff83b6db36f0 : 0xffffff800c8eb2aa
    0xffffff83b6db3740 : 0xffffff7f8e379f3d
    0xffffff83b6db3780 : 0xffffff7f8ea2274f
    0xffffff83b6db37c0 : 0xffffff7f8e388311
    0xffffff83b6db37f0 : 0xffffff7f8e36cf8c
    0xffffff83b6db3820 : 0xffffff7f8ea066cc
    0xffffff83b6db3870 : 0xffffff7f8e36b76d
    0xffffff83b6db38e0 : 0xffffff7f8e36b3be
    0xffffff83b6db3900 : 0xffffff7f8e36ccff
    0xffffff83b6db3920 : 0xffffff7f8ea0aea0
    0xffffff83b6db3940 : 0xffffff7f8ea2ddeb
    0xffffff83b6db3980 : 0xffffff7f8ea265f5
    0xffffff83b6db39d0 : 0xffffff7f8e358d6d
    0xffffff83b6db3a00 : 0xffffff7f8ea2dd1c
    0xffffff83b6db3a20 : 0xffffff7f8e359129
    0xffffff83b6db3a50 : 0xffffff7f8e3667cc
    0xffffff83b6db3aa0 : 0xffffff7f8e357412
    0xffffff83b6db3b30 : 0xffffff800c900652
    0xffffff83b6db3b60 : 0xffffff800c901249
    0xffffff83b6db3bc0 : 0xffffff800c8fe9c3
    0xffffff83b6db3d00 : 0xffffff800c3e4a87
    0xffffff83b6db3e10 : 0xffffff800c333f8c
    0xffffff83b6db3e40 : 0xffffff800c318a93
    0xffffff83b6db3e90 : 0xffffff800c3293bd
    0xffffff83b6db3f10 : 0xffffff800c4059fa
    0xffffff83b6db3fb0 : 0xffffff800c436ea6
          Kernel Extensions in backtrace:
             com.apple.iokit.IOAcceleratorFamily2(156.6.1)[9D837BF9-D1FE-353B-8FF9-6C1047331 A82]@0xffffff7f8e353000->0xffffff7f8e3bffff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[56AD16B5-4F29-3F74-93E7-D492B3966DE2]@0xffffff 7f8cb24000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[619F6C9F-0461-3BA1-A75F-53BB0F87ACD3]@0 xffffff7f8d483000
             com.apple.AMDRadeonX4000(1.3)[A40FCCB4-4E3E-3C98-9E8B-024640630CDE]@0xffffff7f8 e9fb000->0xffffff7f8ef2afff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[56AD16B5-4F29-3F74-93E7-D492B3966DE2]@0xffffff 7f8cb24000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[619F6C9F-0461-3BA1-A75F-53BB0F87ACD3]@0 xffffff7f8d483000
                dependency: com.apple.iokit.IOAcceleratorFamily2(156.6.1)[9D837BF9-D1FE-353B-8FF9-6C1047331 A82]@0xffffff7f8e353000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    14C1510
    Kernel version:
    Darwin Kernel Version 14.1.0: Thu Feb 26 19:26:47 PST 2015; root:xnu-2782.10.73~1/RELEASE_X86_64
    Kernel UUID: 270413F7-3B44-3602-894F-AC0D392FCF8E
    Kernel slide:     0x000000000c000000
    Kernel text base: 0xffffff800c200000
    __HIB  text base: 0xffffff800c100000
    System model name: iMac15,1 (Mac-FA842E06C61E91C5)
    System uptime in nanoseconds: 191094825595766
    last loaded kext at 154065343296988: com.apple.driver.AppleUSBCDC 4.2.2b5 (addr 0xffffff7f8f6ab000, size 20480)
    last unloaded kext at 154128664839212: com.apple.driver.AppleUSBCDC 4.2.2b5 (addr 0xffffff7f8f6ab000, size 16384)
    loaded kexts:
    org.virtualbox.kext.VBoxNetAdp 4.3.22
    org.virtualbox.kext.VBoxNetFlt 4.3.22
    org.virtualbox.kext.VBoxUSB 4.3.22
    org.virtualbox.kext.VBoxDrv 4.3.22
    com.apple.filesystems.smbfs 3.0.0
    com.apple.filesystems.afpfs 11.0
    com.apple.nke.asp-tcp 8.0.0
    com.apple.driver.AppleBluetoothMultitouch 85.3
    com.apple.filesystems.autofs 3.0
    com.apple.driver.AGPM 100.15.5
    com.apple.driver.ApplePlatformEnabler 2.1.7d1
    com.apple.driver.X86PlatformShim 1.0.0
    com.apple.iokit.IOUserEthernet 1.0.1
    com.apple.iokit.IOBluetoothSerialManager 4.3.2f6
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleHV 1
    com.apple.driver.AppleOSXWatchdog 1
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AppleMikeyDriver 269.25
    com.apple.driver.AppleGraphicsDevicePolicy 3.7.7
    com.apple.driver.AppleUpstreamUserClient 3.6.1
    com.apple.kext.AMDFramebuffer 1.3.0
    com.apple.driver.AppleHDA 269.25
    com.apple.driver.AppleIntelHD5000Graphics 10.0.2
    com.apple.AMDRadeonX4000 1.3.0
    com.apple.driver.AppleSMCLMU 2.0.7d0
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.3.2f6
    com.apple.driver.AppleMCCSControl 1.2.11
    com.apple.driver.AppleLPC 1.7.3
    com.apple.driver.AudioAUUC 1.70
    com.apple.kext.AMD9000Controller 1.3.0
    com.apple.driver.AppleIntelFramebufferAzul 10.0.2
    com.apple.driver.AppleThunderboltIP 2.0.2
    com.apple.iokit.IOUSBAttachedSCSI 1.1.0
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.driver.AppleUSBHub 705.4.2
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.7.0
    com.apple.driver.AppleSDXC 1.6.5
    com.apple.iokit.AppleBCM5701Ethernet 10.1.3
    com.apple.driver.AirPort.Brcm4360 910.26.12
    com.apple.driver.AppleAHCIPort 3.1.0
    com.apple.driver.AppleUSBXHCI 710.4.11
    com.apple.driver.AppleACPIButtons 3.1
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 3.1
    com.apple.driver.AppleAPIC 1.7
    com.apple.nke.applicationfirewall 161
    com.apple.security.quarantine 3
    com.apple.security.TMSafetyNet 8
    com.apple.security.SecureRemotePassword 1.0
    com.apple.driver.IOBluetoothHIDDriver 4.3.2f6
    com.apple.driver.AppleMultitouchDriver 262.33.1
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOSerialFamily 11
    com.apple.driver.DspFuncLib 269.25
    com.apple.kext.OSvKernDSPLib 1.15
    com.apple.iokit.IOSurface 97
    com.apple.driver.AppleGraphicsControl 3.8.6
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.3.2f6
    com.apple.iokit.IOBluetoothFamily 4.3.2f6
    com.apple.driver.AppleSMBusController 1.0.13d1
    com.apple.driver.X86PlatformPlugin 1.0.0
    com.apple.driver.IOPlatformPluginFamily 5.8.1d38
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.driver.AppleSMC 3.1.9
    com.apple.kext.AMDSupport 1.3.0
    com.apple.AppleGraphicsDeviceControl 3.8.6
    com.apple.iokit.IOAcceleratorFamily2 156.6.1
    com.apple.driver.AppleHDAController 269.25
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.iokit.IOHDAFamily 269.25
    com.apple.iokit.IOUSBUserClient 705.4.0
    com.apple.driver.AppleThunderboltEDMSink 4.0.2
    com.apple.driver.AppleUSBHIDKeyboard 176.2
    com.apple.driver.AppleHIDKeyboard 176.2
    com.apple.iokit.IOUSBHIDDriver 705.4.0
    com.apple.iokit.IOSCSIBlockCommandsDevice 3.7.3
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.7.3
    com.apple.driver.AppleUSBAudio 295.23
    com.apple.iokit.IOAudioFamily 203.3
    com.apple.vecLib.kext 1.2.0
    com.apple.driver.AppleUSBMergeNub 705.4.0
    com.apple.driver.AppleUSBComposite 705.4.9
    com.apple.driver.CoreStorage 471.10.6
    com.apple.driver.AppleThunderboltDPOutAdapter 4.0.6
    com.apple.driver.AppleThunderboltDPInAdapter 4.0.6
    com.apple.driver.AppleThunderboltDPAdapterFamily 4.0.6
    com.apple.driver.AppleThunderboltPCIDownAdapter 2.0.2
    com.apple.driver.AppleThunderboltNHI 3.1.7
    com.apple.iokit.IOThunderboltFamily 4.2.1
    com.apple.iokit.IOEthernetAVBController 1.0.3b3
    com.apple.iokit.IO80211Family 710.55
    com.apple.driver.mDNSOffloadUserClient 1.0.1b8
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOAHCIFamily 2.7.5
    com.apple.iokit.IOUSBFamily 710.4.14
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 300.0
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.AppleMobileFileIntegrity 1.0.5
    com.apple.driver.AppleCredentialManager 1.0
    com.apple.driver.DiskImages 396
    com.apple.iokit.IOStorageFamily 2.0
    com.apple.iokit.IOReportFamily 31
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 3.1
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.Libm 1
    com.apple.kec.pthread 1
    com.apple.kec.corecrypto 1.0
    Model: iMac15,1, BootROM IM151.0207.B01, 4 processors, Intel Core i7, 4 GHz, 32 GB, SMC 2.23f11
    Graphics: AMD Radeon R9 M295X, AMD Radeon R9 M295X, PCIe, 4096 MB
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343147533641465238412D50422020
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343147533641465238412D50422020
    Memory Module: BANK 0/DIMM1, 8 GB, DDR3, 1600 MHz, 0x859B, 0x43543130323436344246313630422E433136
    Memory Module: BANK 1/DIMM1, 8 GB, DDR3, 1600 MHz, 0x859B, 0x43543130323436344246313630422E433136
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x142), Broadcom BCM43xx 1.0 (7.15.159.13.12)
    Bluetooth: Version 4.3.2f6 15235, 3 services, 27 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Serial ATA Device: APPLE SSD SD0128F, 121.33 GB
    Serial ATA Device: APPLE HDD ST3000DM001, 3 TB
    USB Device: Backup+ Desk
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Keyboard Hub
    USB Device: Apple Keyboard
    USB Device: Logitech Camera
    Thunderbolt Bus: iMac, Apple Inc., 26.1

Maybe you are looking for

  • Acrobat 7.0 Standard Random Hangs on scan-to-pdf

    Scan to pdf will randomly hang about 3/4 of the way through a multi-page document scan with no error or warning messages. Acrobat totally hangs (can't even move the window) and I have to kill the process in the task manager at which time a message ap

  • About foreign currency exchange difference when do MIRO

    Dear all, There's a  purchase order with foreign currency, for the currency rate floated every month, if we do MIRO in the next month after we do GR, there's foreign currency exchange difference happened, the problem is if the mat'l code with stand p

  • My iphone 4 doesn t ring bei incomming calls

    i made a reset but the problem already exists.

  • After loading IOS 6 Itune cant locate my Ipad3.

    Hi Can any one please help asap? After installing IOS6 to my ipad 3 , I cant sync my ipad to my laptop which works last time. The Laptop using window XP cant read my IPAD at all. Regards Vivien

  • Active\Active vs Active\Passive

    My company was recently purchased. The new company has a "policy" about any High Availability database be an Active\Active configuration. We have in the past used active\passive RAC installs with each site have multiple active RAC nodes. I am interes