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

Similar Messages

  • "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

  • Fonts displaying in strange characters in Email and Web Browser

    Myself and my creative director (on two different computers) are seeing strange characters in our email clients and web browser. He uses Entourage for Email and I use Thunderbird. We both use Firefox for a web browser.
    This does not happen with every email or with every web page, what could it be?
    View a screenshot here:
    ftp://www.hanlonftp.com/upload/fontProblem.jpg

    Clear out the font cache files from the hard drive with Font Finagler. Also, if you have the fonts Helvetica Fractions or Times Phonetic on the drive, delete them.

  • 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

  • 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

  • [solved] pacman can't acces repositories, but my web browser does

    Hi,
    there is a strange problem. Today I tried a pacman -Syu to update, but pacman can't acces my repositories. Gives me errors of
    error: failed retrieving file 'core.db' from mirror.archlinux.ro : No address record
    I tried different mirrors, change the protocol from ftp to http, but without result. The strange think is that I can access those repositories with my web browser, so I think that it is pacman or python problem.
    My last entries in pacman's log are
    [2011-04-09 15:51] Running 'pacman -Syu'
    [2011-04-09 15:51] synchronizing package lists
    [2011-04-09 15:51] starting full system upgrade
    [2011-04-09 15:52] upgraded audacious-plugins (2.4.4-2 -> 2.4.4-3)
    [2011-04-09 15:52] upgraded libgpg-error (1.9-2 -> 1.9-3)
    [2011-04-09 15:52] upgraded libgcrypt (1.4.6-1 -> 1.4.6-2)
    [2011-04-09 15:52] upgraded gnutls (2.10.5-1 -> 2.12.2-1)
    [2011-04-09 15:52] warning: /usr/share/config/kdm/kdmrc installed as /usr/share/config/kdm/kdmrc.pacnew
    [2011-04-09 15:52] upgraded kdebase-workspace (4.6.2-1 -> 4.6.2-2)
    [2011-04-09 15:52] upgraded xproto (7.0.20-1 -> 7.0.21-1)
    [2011-04-09 15:52] upgraded libx11 (1.4.3-1 -> 1.4.3-2)
    [2011-04-09 15:52] upgraded pycups (1.9.54-1 -> 1.9.55-1)
    [2011-04-09 15:52] upgraded taglib (1.6.3-1 -> 1.7-1)
    [2011-04-09 15:52] upgraded xdg-utils (1.1.0rc1-1 -> 1.1.0rc1-2)
    [2011-04-09 15:52] upgraded xextproto (7.1.2-1 -> 7.2.0-1)
    [2011-04-09 16:16] Running 'pacman -S k3b'
    [2011-04-09 16:17] installed libdiscid (0.2.2-1)
    [2011-04-09 16:17] installed libmusicbrainz3 (3.0.3-1)
    [2011-04-09 16:17] installed kdemultimedia-kioslave (4.6.2-1)
    [2011-04-09 16:17] installed openjpeg (1.3-3)
    [2011-04-09 16:17] installed ffmpeg (20110330-1)
    [2011-04-09 16:17] installed libao (1.1.0-1)
    [2011-04-09 16:17] installed cdrdao (1.2.3-5)
    [2011-04-09 16:17] installed cdrkit (1.1.11-1)
    [2011-04-09 16:17] installed k3b (2.0.2-1)
    [2011-04-09 16:17] Running 'pacman -S dvd+rw-tools'
    [2011-04-09 16:20] installed dvd+rw-tools (7.1-2)
    After this, it stopped working - I mean I can't download a thing with pacman, no updates, no packages.
    Last edited by inp3dance (2011-05-04 22:37:00)

    pacman -Syu --debug output:
    debug: config: attempting to read file /etc/pacman.conf
    debug: config: new section 'options'
    debug: config: HoldPkg: pacman
    debug: config: HoldPkg: glibc
    debug: config: SyncFirst: pacman
    debug: config: Architecture: i686
    debug: config: new section 'core'
    debug: registering sync database 'core'
    debug: config file /etc/pacman.conf, line 65: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: adding new server URL to database 'core': http://mirror.archlinux.ro/archlinux/core/os/i686
    debug: setlibpaths() called
    debug: option 'cachedir' = /var/cache/pacman/pkg/
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: new section 'extra'
    debug: registering sync database 'extra'
    debug: config file /etc/pacman.conf, line 68: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: adding new server URL to database 'extra': http://mirror.archlinux.ro/archlinux/extra/os/i686
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: new section 'community'
    debug: registering sync database 'community'
    debug: config file /etc/pacman.conf, line 74: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: adding new server URL to database 'community': http://mirror.archlinux.ro/archlinux/community/os/i686
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: new section 'archlinuxfr'
    debug: registering sync database 'archlinuxfr'
    debug: adding new server URL to database 'archlinuxfr': http://repo.archlinux.fr/i686
    debug: config: finished parsing /etc/pacman.conf
    :: Synchronizing package databases...
    debug: database path for tree local set to /var/lib/pacman/local/
    debug: local database version 2
    debug: destfile found, using mtime only
    debug: using 'core.db' for download progress
    debug: HTTP_PROXY: (null)
    debug: http_proxy: (null)
    debug: FTP_PROXY: (null)
    debug: ftp_proxy: (null)
    error: failed retrieving file 'core.db' from mirror.archlinux.ro : No address record
    debug: failed to sync db: No address record
    error: failed to update core (No address record)
    debug: destfile found, using mtime only
    debug: using 'extra.db' for download progress
    debug: HTTP_PROXY: (null)
    debug: http_proxy: (null)
    debug: FTP_PROXY: (null)
    debug: ftp_proxy: (null)
    error: failed retrieving file 'extra.db' from mirror.archlinux.ro : No address record
    debug: failed to sync db: No address record
    error: failed to update extra (No address record)
    debug: destfile found, using mtime only
    debug: using 'community.db' for download progress
    debug: HTTP_PROXY: (null)
    debug: http_proxy: (null)
    debug: FTP_PROXY: (null)
    debug: ftp_proxy: (null)
    error: failed retrieving file 'community.db' from mirror.archlinux.ro : No address record
    debug: failed to sync db: No address record
    error: failed to update community (No address record)
    debug: destfile found, using mtime only
    debug: using 'archlinuxfr.db' for download progress
    debug: HTTP_PROXY: (null)
    debug: http_proxy: (null)
    debug: FTP_PROXY: (null)
    debug: ftp_proxy: (null)
    error: failed retrieving file 'archlinuxfr.db' from repo.archlinux.fr : No address record
    debug: failed to sync db: No address record
    error: failed to update archlinuxfr (No address record)
    error: failed to synchronize any databases
    debug: unregistering database 'local'
    debug: unregistering database 'core'
    debug: unregistering database 'extra'
    debug: unregistering database 'community'
    debug: unregistering database 'archlinuxfr'
    pacman.conf
    # /etc/pacman.conf
    # See the pacman.conf(5) manpage for option and repository directives
    # GENERAL OPTIONS
    [options]
    # The following paths are commented out with their default values listed.
    # If you wish to use different paths, uncomment and update the paths.
    #RootDir = /
    #DBPath = /var/lib/pacman/
    #CacheDir = /var/cache/pacman/pkg/
    #LogFile = /var/log/pacman.log
    HoldPkg = pacman glibc
    # If upgrades are available for these packages they will be asked for first
    SyncFirst = pacman
    #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
    #XferCommand = /usr/bin/curl -C - -f %u > %o
    #CleanMethod = KeepInstalled
    Architecture = auto
    # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
    #IgnorePkg =
    #IgnoreGroup =
    #NoUpgrade =
    #NoExtract =
    # Misc options (all disabled by default)
    #UseSyslog
    #ShowSize
    #UseDelta
    #TotalDownload
    #CheckSpace
    # REPOSITORIES
    # - can be defined here or included from another file
    # - pacman will search repositories in the order defined here
    # - local/custom mirrors can be added here or in separate files
    # - repositories listed first will take precedence when packages
    # have identical names, regardless of version number
    # - URLs will have $repo replaced by the name of the current repo
    # - URLs will have $arch replaced by the name of the architecture
    # Repository entries are of the format:
    # [repo-name]
    # Server = ServerName
    # Include = IncludePath
    # The header [repo-name] is crucial - it must be present and
    # uncommented to enable the repo.
    # The testing repositories are disabled by default. To enable, uncomment the
    # repo name header and Include lines. You can add preferred servers immediately
    # after the header, and they will be used before the default mirrors.
    #[testing]
    #Include = /etc/pacman.d/mirrorlist
    [core]
    Include = /etc/pacman.d/mirrorlist
    [extra]
    Include = /etc/pacman.d/mirrorlist
    #[community-testing]
    #Include = /etc/pacman.d/mirrorlist
    [community]
    Include = /etc/pacman.d/mirrorlist
    # An example of a custom package repository. See the pacman manpage for
    # tips on creating your own repositories.
    #[custom]
    #Server = file:///home/custompkgs
    [archlinuxfr]
    Server = http://repo.archlinux.fr/$arch
    My mirrorlist is the default one, I have enabled only one mirror at a time, be it the Hungarian one or one of the Romanian mirrors, depending in which country I am.

  • 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;
    }

  • Web-browser only display Summary Status and no menu for configing

    Guys,
    I have 4 Cisco Aironet 1140. I open a web browser IE 8 and type their address "http://<ip address>". Then I enter my username and password in the browser and successfully login to the access point.
    But, There is something strange, why I only see Summary status of my access point after the login process success??? I can't config anything...
    I add a new username and use highest privilage, but the result still the same. Same unusual web display, only displaying summary status of the access point, I can't config ssid, vlan, etc.
    Here's my configuration:
    username Zicco privilege 15 password 7 123A551A02055F106B
    username Bl4st privilege 15 secret 5 $1$UJom$UoNBR07HmSGXdoxTUR1W40
    ip http server
    ip http authentication local
    no ip http secure-server
    Is there any configuration command that must be added? Please help me.
    Thank you

    Hi George, today we solved the problem. With adding this command: "config(terminal)#ip http authentication local" all of 5 access points now able to managed via web browser.
    Sometimes, we can use access point's web browser without adding this command. But in my cases, only using command of"ip http server" isn't enough. You must add "ip http authentication local" command to your configuration. I dont know why.
    And we must have at least one: username <username> privil 15 pass <password> that is full privileged user to use as username and password logon in your access point browser. Otherwise we can't logon to our access point.
    Thank you George, I appreciate your kindness. Regards

  • "Use Firefox Web Browser (default)" instead of trying to render a page starts FF again

    Expected behaviour: Firefox actually trying to open a document.
    What happens: Firefox, ''as the default option'', re-feeds a document to itself in a roundabout way that leads only to repeating the same choice. If "Do this automatically..." box is checked, this causes ''spamming tabs or windows recursively''. Which certainly constitues a bug.
    Happens e.g. when trying to open HTML pages that have ".asp" extension due to being saved with original server filenames. Which also is the easiest way to reproduce this bug. Same files renamed or ''hard''linked as "*.asp.html" open normally, thus it happens only due to "Open with: Use Firefox Web Browser (default)" choice not working correctly. I didn't find addons to circumvent this, either.
    Version: 26.0 (Mozilla Firefox for Ubuntu canonical - 1.0) - but a web search shows that the same happened 10 years ago and under Windows.

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that turns off some settings and disables most add-ons (extensions and themes).
    ''(If you're using an added theme, switch to the Default theme.)''
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu by clicking on the '''Restart with Add-ons Disabled...''' menu item:<br>
    [[Image:FirefoxSafeMode|width=520]]<br><br>
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.
    Thank you.

  • Strange problem viewing web sites.

    Hi everybody,
    I am having a strange problem viewing web sites. There are certain web sites that when viewed on my mac certain content that shows up on other computers (mac and pc) does not seem to show up on my mac. At first I thought it was a safari problem and maybe I installed a filter or some thing but regardless what browser I use, the content is not there. For instance: Spinepodium.com one of the sites I am building - I just recently added Google Adsense to the page. When I view the page on other computers (mac and pc) the ads show up just fine. However on my mac it is as if the code is just not there. I have noticed similar things on other pages as well.
    Any help would be great.

    Video plays for me on the site you posted.
    As I suggested, install the Flip4Mac plug-in. After installing, open the preference file via System Preferences>Flip4Mac. On the Plug-in panel, 1st and 3rd boxes are checked. On the Movies panel, 1st box is checked.
    Just in case, go to the Utilities folder>Disk Utility and "repair permissions" via the First Aid panel (click on your HD on the left of the window, "repair permissions" will appear on the right. Restart the computer. Try the video in Safari.
    Post back

  • Chrome - Adobe-Acrobat/Reader can not be used to view PDF files in a web browser.

    I can't view PDF files via Chrome (it works on Internet Explorer but I prefer Chrome)  -  the error below has arisen recently on Chrome, though I can't see what has changed.
    "Acrobat plug-in
    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 have looked through Forum articles on similar errors and have tried the following(text copied from other Forum entries)
    Repair Adobe Acrobat (from Acrobat)
    Repair Adobe Acrobat (from Control Panel
    Configure Acrobat  as a helper application: Choose Edit > Preferences., Select Internet on the left., Deselect Display PDF In Browser Using [Acrobat application], and then click OK.Quit Acrobat or Reader
    Create a registry item for Acrobat: with Regedit: If the registry item doesn't exist on the system, do the following: Go to Edit > New > Key and create the missing HKEY_CLASSES_ROOT\Software\Adobe\Acrobat\Exe.Go to Edit > New > String Value and name this key (Default).Select (Default), and then go to Edit > Modify. Type the Adobe Acrobat path in the "Value data" for your product.,restart your computer
    Repair the HKCR\AcroExch.Document registry key: Navigate to HKEY_CLASSES_ROOT\AcroExch.Document., Right-click AcroExch.Document and select Delete; make sure that you have the correct key, and click Yes on any prompts, Right-click AcroExch.Document.7 and select Delete; make sure that you have the correct key, and click Yes on any prompts. Repair your Acrobat  installation
    None has solved the problem. However it still works ok with IE. But I want to stick with Chrome because I find IE is so slow!
    I am using Vista, with Adobe Acrobat standard 9.5.2 and Google Chrome version 23.0.1271.64 m which is marked on Chrome as 'up to date'
    Does anyone know why I might be getting this error on Chrome but not IE?

    I think I have discovered the answer to my own question!
    I have disabled Adobe Reader plug-in, and can now see PDFs in Chrome.
    (Steps: Chrome Menu, Settings option, Click Advanced Settings link, then Content Settings button, then select Disable Individual Plug-Ins, and a list of plug-ins is offered to enable or disable).
    I then get a different result depending on whether or not Chrome PDF viewer is enabled - with it enabled I see the PDF document in Chrome, or with it disabled then the option is offered to download it, but either way I can get it it via Chrome without having to run Internet explorer in another browser window.

  • 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>

  • Report Not working in the Web Browser

    Hi ALL ,
    Am working on a item SKU report . The report is running fine in the BIDS but once i try to view the report in the WEB Browser
    tried both Mozilla and Internet Explorer no data is shows up .
    The report has 2 report filter one is on the service and the other one is the item sku its a multi - parameter  that contains
    a list of more than 6000 different SKU . Can the filter be the reason for the report not displaying in the web browser.
    If yes kindly advice me what the workaround for it .
    I tried having the filter in the  SQL main query but it was of no use no data it was showing after having the ssrs report filter
    at least right information its showing but in the BIDS not in the main web browser.
    Kindly Help
    Priya

    Hi Priya,
    According to the description, I understand that there are parameters (@SKU and @SKUlist) in the report, and SKUlist parameter is multi-value parameter. When selecting values of the SKU parameter, the parameter SKUlist will display corresponding values. In this
    case, you should create cascading parameters, right? And you use parameters to filter the report.
    Because the data of the report can be shown in the Business Intelligence Development Studio (BIDS) environment, the issue only occurs after deploying the report to report server. Based on my research, I think it may occur because of web browser issue. I have
    known you use Mozilla and Internet Explorer to view the report but there is still no data.
    In Reporting Services, not all report functionality is supported by all browsers. In this scenario, I suggest you considering the aspects of the setting or third party add-ons of Internet Explorer (IE). You can refer to the steps below:
    1. Click Tools -> Internet options.
    2. Switch to the Security tab, click Local intranet, and then select Default level.
    3. Switch to the Advanced tab, and click Restore advanced settings.
    4. Temporarily disable third party add-ons. For detailed steps, please see the link:
    http://windows.microsoft.com/en-IN/internet-explorer/manage-add-ons#ie=ie-10
    Reference:http://technet.microsoft.com/en-us/library/ms156511(v=sql.105).aspx
    Regards,
    Heidi Duan
    Heidi Duan
    TechNet Community Support

  • .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.

Maybe you are looking for

  • I have master collection cs5 and I can't update it, it says that my code is not valid. I need help please!

    I have a 15" macbook pro running Yosemite and Im not able to update my adobe master collection. After the loading bar reach all the way to the end it gives me an error

  • Must appear in the GROUP BY clause or be used in an aggregate function

    Symptom Red blinking outline on Query after adding data and computing an aggregate, e.g. Sum, Count, Max. Display logs shows the journal entry highlighted here: Underlying cause Number of values don't synch up resulting in an error when adding data t

  • Encryption problem

    We have Endpoint and ifolder on Dell Laptops models D8300 and E6500. The folder encryption works fine on the E6500. When I try to install on a D830 and use the encryption feature when I try to rename a file or save a file I get the following error "

  • New JavaDoc lookup tool

    There is an interesting "master index" to many JavaDoc projects - it lets you drill down to individual packages and classes, so you can get to virtually JavaDoc page, anywhere really quickly. The page says it is "a comprehensive index to the JavaDoc

  • Best way to set up a phone interview?

    Hi, I'm looking to set up a phone interview for my podcast. Does anyone have suggestions for how I might get the audio into Garageband? I'm working with a Macmini and a headphone with a mic. But I don't know I can get clear sound from my phone to GB.