Is there a problem with IM and FaceTime as it won't recognise my Apple ID

is there a problem with IM and FaceTime as it won't recognise my Apple ID?

There are reports that iMessage and FaceTime are down.

Similar Messages

  • I purchased 2 weeks before i phone 5 but there is problem with sleep and wake up button its not responding can anyone help me in this issue.

    i purchased 2 weeks before i phone 5 but there is problem with sleep and wake up button its not responding can anyone help me in this issue.

    You have a one-year hardware warranty & 90 days of free phone support. Take advantage of it, make an appointment at an Apple store or call AppleCare.

  • Is there a problem with IOS7 and AT&T Nav.

    My At&T Navigation does not load after I downloaded IOS7.

    There are reports that iMessage and FaceTime are down.

  • Are there any problems with Lion and Adobe CS5 ?

    I am wanting to upgrade to Lion but don't want to have the hassle of trying to fix any problems as I have heard some people had problems with earlier versions of Adobe Creative Suit and Lion and having recently moved I have no clue where my CS5 keys are so before doing so I want to know there will be no errors.
       Peoples experiences would be appreciated and many thanks.

    I have upgraded two Mac mini's which both have the Adobe Creative Suit Cs5 Acrobat, Illustrator, InDesign and Photoshop. I have had no issues regrding the upgrade, they just work.
    However I do have two user interface issues. InDesign the keyboard page up, page down keys no longer work as expected, they simply jump to the next screen, the workaround is to use a trackpad for the left hand and use two finger scrolling.
    The other is the arrow buttons in the vertical scroll bar no longer exist, so again the trackpad comes in for scrolling.
    This applies for almost all software and the finder.

  • Is there a problem with JMS and Weblogic?

              Hi,
              I am using JMS and Weblogic (Not Message Driven bean).
              My problem is that after some time my listeners disappears.
              I am sending them a message and instead of 6 listeners
              I get only 4 messages.
              So, My question is: Is there any problem working with JMS
              and Weblogic???
              Thanks,
              Tal.
              

    Too little information and a very vague question. Need more info.
              "Tal" <[email protected]> wrote in message
              news:[email protected]..
              >
              > Hi,
              > I am using JMS and Weblogic (Not Message Driven bean).
              > My problem is that after some time my listeners disappears.
              > I am sending them a message and instead of 6 listeners
              > I get only 4 messages.
              > So, My question is: Is there any problem working with JMS
              > and Weblogic???
              > Thanks,
              > Tal.
              

  • Is there a problem with JFrame and window listeners?

    As the subject implies, i'm having a problem with my JFrame window and the window listeners. I believe i have implemented it properly (i copied it from another class that works). Anyway, none of the events are caught and i'm not sure why. Here's the code
    package gcas.gui.plan;
    import java.awt.BorderLayout;
    import java.awt.Component;
    import java.awt.Container;
    import java.awt.event.WindowEvent;
    import java.awt.event.WindowListener;
    import java.util.Hashtable;
    import javax.swing.JDialog;
    import javax.swing.JFrame;
    import gcas.plandata.TaskData;
    import gcas.util.GCASProperties;
    import gcas.gui.planlist.MainPanel;
    * MainFrame extends JPanel and is the main class for the plan details window
    public class MainFrame extends JFrame implements WindowListener
         * the container for this window
        private Container contentPane;
         * a string value containing the name of the plan being viewed
        private String labelText;
         * a string value containing the name of the window (GCAS - plan list)
        private static String title;
         * an instance of JDialog class
        private static MainFrame dialog;
         * hashTable that correlates the task name to its id as found in the
         * plan
        private Hashtable taskNameToId = new Hashtable();
         * an instance of taskSetPane.  This is the current instance of taskSetPane
         * being viewed
        private PlanTaskSet currentPane;
         * instance of TaskData class.  Each instance will hold information on
         * an individual task
        private TaskData taskData;
         * hashTable containing instances of the taskSetPane class
        private Hashtable taskSetPanes = new Hashtable();
         * an instance of the OuterPanel class
        OuterPanel mainPanel;
         * an instance of the ButtonPanel class
        ButtonPanel buttonsPanel;
         * an instance of the LeftPanel class
        LeftPanel leftPanel;
         * an instance of the the GCASProperties class
        GCASProperties gcasProps;
        private static MainFrame thisPlanMain = null;
        private MainPanel planListMain;
         * constructor for MainFrame
         * @param frame the parent frame calling this class
         * @param locationComp the location of the component that initiated the opening of the dialog
         * @param labelText the name of the plan that is being viewed
         * @param title title of window
        private MainFrame(JFrame frame, Component locationComp, String labelText,
                String title)
            super(title);
            gcasProps = GCASProperties.getInstance();
            mainPanel = new OuterPanel(labelText, currentPane,
                    taskNameToId, taskSetPanes);
            leftPanel = mainPanel.getLeftPanel();
            System.out.println("LABLE: " + labelText);
            leftPanel.setMainPanelContents();
            buttonsPanel = new ButtonPanel(labelText, taskSetPanes,
                    taskNameToId, leftPanel);
            contentPane = getContentPane();
            contentPane.add(mainPanel, BorderLayout.CENTER);
            contentPane.add(buttonsPanel, BorderLayout.PAGE_END);
            this.addWindowListener(this);
            this.labelText = labelText;
            pack();
            setLocationRelativeTo(locationComp);
            this.setVisible(true);
            planListMain = MainPanel.getInstance();
            planListMain.setVisible(false);
        public static MainFrame getInstance(JFrame frame, Component locationComp, String labelText,
                String title)
            if (thisPlanMain == null)
                thisPlanMain = new MainFrame(frame, locationComp, labelText,
                        title);
            return thisPlanMain;
        public static MainFrame getDialogObject()
        {   //from the location this is called (ButtonPanel), this will never
            //be null
            return thisPlanMain;
        public static void setABMDDialogNull()
            thisPlanMain = null;
         * returns an instance of MainFrame
         * @return MainFrame instance
        public static MainFrame getDialog()
            return dialog;
         * setter for MainFrame
         * @param aDialog a MainFrame instance
        public static void setDialog(MainFrame aDialog)
            dialog = aDialog;
         * window opened event
         * @param windowEvent the window event passed to this method
        public void windowOpened(WindowEvent windowEvent)
         * The window event when a window is closing
         * @param windowEvent the window event passed to this method
        public void windowClosing(WindowEvent windowEvent)
            gcasProps.storeProperties("PlanList");
            MainPanel abmd = MainPanel.getInstance();
    //        planMain = this.getDialogObject();
    //        if(planMain != null)
    //            planMain.setVisible(false);
    //            abmd.setVisible(true);
    //            planMain.setABMDDialogNull();
            if(this.getDialogObject()!= null)
                abmd.setVisible(true);
                setVisible(false);
                setABMDDialogNull(); 
         * Invoked when the Window is set to be the active Window
         * @param windowEvent the window event passed to this method
        public void windowActivated(WindowEvent windowEvent)
         * Invoked when a window has been closed as the result of calling dispose on the window
         * @param windowEvent the window event passed to this method
        public void windowClosed(WindowEvent windowEvent)
         * Invoked when a Window is no longer the active Window
         * @param windowEvent the window event passed to this method
        public void windowDeactivated(WindowEvent windowEvent)
            System.out.println("HI");
         * Invoked when a window is changed from a minimized to a normal state
         * @param windowEvent the window event passed to this method
        public  void windowDeiconified(WindowEvent windowEvent)
            //we could have code here that changed the way alerts are done
           System.out.println("Invoked when a window is changed from a minimized to a normal state.");
         * Invoked when a window is changed from a normal to a minimized state
         * @param windowEvent the window event passed to this method
        public  void windowIconified(WindowEvent windowEvent)
            //we could have code here that changed the way alerts are done
    //        System.out.println("Invoked when a window is changed from a normal to a minimized state.");
    }anyone know whats wrong?

    It turned out that my ide was running the old jar and not updating it, so no matter what code i added, it wasn't being seen. Everything should be fine now.

  • Problem with Archive and Install - Second disc won't complete

    I'm trying to run an archive and install for my iMac, OS 10.4.11. I get through the first disc fine, but after I put in the 2nd install disc, it gets all the way to the "finishing installation" and then won't move past "running GarageBand Demo Songs Installer Script". it says less than a minute remaining, and the downloading bar is swirling, but there is nothing happening and it hangs here for hours. I've tried reinstalling, but it will only ask me to load the 2nd disk again, and the same thing happens over and over. I even tried a different install disc 2, and the same thing happened. Is there a way to push past this, or start the entire archive and install again? when i reboot to the disc drive with the 1st install disk, it ask me to put in the 2nd disc.
    This all started because iTunes was acting up after I got an ipod touch, no prior problems with the computer. Can anyone help?

    I've seen this reported before. What some have had some success with is to do a custom install so the second disk is not needed. See BDAqua's tip to someone with the same issue in the Tiger forum.
    http://discussions.apple.com/message.jspa?messageID=9959537#9959537

  • Is there still problems with cs6 and  hidpi windows laptops?

    I consider to buy a windows laptop with a high resolution (3200x1800) but only if i can get photoshop, illustrator and indesign work??

    What is it that you are asking? There never was HighDPI support in CS6 on the Windows side and there never will be. Nobody goes back and reworks 3 year old software just because the hardware industry decided that HD monitors are no longer good enough...
    Mylenium

  • Is there a problem with tdms and 64bit vista?

    I have an executable developed on a vista ultimate 32bit platform and am trying to run it on a 64bit vista home edition.
    the program writes and reads .ini files with no problem but it will not create and write to a TDMS file on the 64bit version
    it works fine on vista 32bit
    any thoughts?
    - James
    Using LV 2012 on Windows 7 64 bit

    LabVIEW generates an error on the (open create) function  ( i cann't recall what the actual error is)
    I also tried running the .exe in 32bit compatibility mode and no luck
    I will see if the TDMS component exists
    - James
    Using LV 2012 on Windows 7 64 bit

  • Is there a problem with Airport and Mountain Lion?

    Since upgrading to Mountain Lion, I am having all kinds of trouble connecting to the web. My connection drops and my network will not relaunch? Is anyone else having this problem?
    Thanks
    Chuck

    It wasn't Mountain Lion, it was my moving my stuff to a place that had a internet address conflict. I redid all of mine, and now is working fine.

  • Extreme Music - Problems with Driver and Installation

    Hi guys,
    ?After the my computer has given up it's life on the last friday, I bought a new one and wanted yesterday to install everything like OS, driver and so on.
    I started the install of the driver(which is the version from the creative website , released in july 2009) for my soundcard, the X-FI Extreme Music and when the information was given, that the Windows drivers will be updated and it will take some minutes, something happend:
    At my first try a bluescreen appered. You can imagine, that I was shocked to see a bluescreen on my new pc after an hour.
    I run CCleaner to remove some rests of the "maybe installed" driver and started it again. There was no bluescreen, but the mouse freezes and the setup does nothing anymore. I can close it with may keyboard, but the driver wasn't installed.
    After a new clean up with CCleaner I tried it again. I put out my cable of the mouse , so maybe this was the problem(ofc, WHY is there a problem with USB and PCI Cards ?). The installations works, no hang up or freezes. After a restart nothing happend. No sound. I looked at the hardware manager(do not know, whether it is the correct word, I'm german and have a german windows ) of windows and at audio, video and gamecontroller, there is a warning of not working driver.
    I remember, that on my old system the driver was titled something like
    X-FI Audio[800] or something like that.
    But here it was named with?
    X-FI Processor WDM
    I thing the system is installing the wrong driver.
    I looked at some forums , find the hint to change the PCI slot. I did it, but nothing changed.
    So, here are some information of my system configuration, maybe someone can help.
    Old system(where the soundcard works fine with no problems):
    - Athlon X2 4200+(socket was the "old" 939)
    - Asus A8N-E
    - DDR 400 RAM, 2GB
    - Windows XP Professional(32 Bit) with SP3
    New System:
    - Phenom II X4 80(quadcore)
    - Gigabyte MA790XT-UD4P
    - DDR3 333 RAM , 4GB
    - same OS as used in the old configuration
    Ofc all chipdriver were installed and seems to work fine.
    The onboard soundchip is disabled too.
    Hope for help ^^
    Mel
    Message Edited by Meldanor on 08--2009 2:20 [email protected]

    Hi guys,
    I'm very sry for the wasted bytes and bits in this forum, but my problem was solved some minuetes after this post >.< .
    I tried once again to install the driver and everything is working ... until yet, but only the future will show me, whether it will work or not ^^
    What I've done? Just a restart after the post.

  • Discussion Forum Portlet - Problems with JAVA and UTF8?

    Hi
    I installed the Discussion Forum Portlet successfully. It also seems that almost everything works fine. There's only a problem if I have new posts that include special German characters (Umlaute) like ä, ö, ü or special French characters like é, è or ç. They are saved correctly in the table but if you view the post the characters are not displayed correctly.
    Example
    input: ça va?
    result: ça va?
    I know that there are problems with Java and UTF8 Database. Is there a possibility to change this (bug)?
    Regards
    Mark

    Here's what I got. I don't see anything that helps but I'm kinda new to using SQL and java together.
    D:\javatemp\viddb>java videodb
    Problem with SQL java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver
    ] Syntax error in CREATE TABLE statement.
    Driver Error Number-3551
    java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver] Syntax error in
    CREATE TABLE statement.
    at sun.jdbc.odbc.JdbcOdbc.createSQLException(Unknown Source)
    at sun.jdbc.odbc.JdbcOdbc.standardError(Unknown Source)
    at sun.jdbc.odbc.JdbcOdbc.SQLExecDirect(Unknown Source)
    at sun.jdbc.odbc.JdbcOdbcStatement.execute(Unknown Source)
    at sun.jdbc.odbc.JdbcOdbcStatement.executeUpdate(Unknown Source)
    at videodb.main(videodb.java:31)
    D:\javatemp\viddb>

  • Is there a problem with FaceTime, can not connect. When dial it connects and drops. When friends are calling me they have calling message and I have connecting but it does not connect. Need help, face time is my life line.

    Face time not working. When dialled it says connecting and drops immediately. When my friends calling it show connecting but it does not.
    Is there a problem with face time. I am in south Africa, it was working perfectly up to Easter. Please help this is my life line.

    There is a barely acknowledged issue. For Mac users Apple has released an update to the app, but for iOS users the recommendation is for users to update their ipad to the most recent operating system.
    There may be a fix coming for iOS6 users (which seem to be many of those having problems) or there may not be. If your ipad isn't up to date then you can update it and see if that helps, or if you don't want to update then you may want to wait and see if there is either a fix or if it fixes itself.

  • Im having problems with my Kids facetime accounts that seem to be because they are both using my itunes and there are conflicts with multiple email addresses? Is it possible to now set the kids up with their own accounts without losing their apps etc

    Hi All,
    I have my kids using iTunes via thier ipods etc through my own account and this hase been the case for some time?
    This has started to cause issues lately with imessaging and facetime, as there seems to be a limit on email addresses that can be associated with one account?
    I wonder if I would be best off setting the kids up with their own accounts, but want to be able to do this without them losing their existing apps, music etc?
    Is this possible, if so is there a simple process cos I can seem to find anything relating to this?
    many thanks, Jim

    Not going to happen the way you want it to.
    When you add a gift card balance to the Apple ID, it's available for the Apple ID.
    Probably best to create unique Apple ID's for each... this will also make things easier in the future as purchases are eternally tied to the Apple ID they were purchased with.

  • My app store wont let me download apps, says the card is expired and theres a problem with previous purchase can someone help me pls?

    My app store wont let me download apps, asks me to update my payment details then says theres a problem with previous purchase and card is expired which is untrue someone help me pls

    This is a User to User Forum...
    See Here for
    Mac Apps Store Customer Service
    http://www.apple.com/support/mac/app-store/contact.html?form=account
    iTunes Customer Service Contact
    http://www.apple.com/support/itunes/contact.html

Maybe you are looking for

  • Backup AVCHD Camcorder using Final Cut Express

    I have previously used Final Cut Express to create a backup copy of all the video on my AVCHD Hard Drive Camcorder. However, since that time, I had to reinstall Final Cut Express. I can no longer remember or find how to do this again. Can someone ple

  • Hardware Requirement for Implementing Oracle Business Intelligence

    Gooday all, We run our E-business suite on HP-UX servers. Our Application run on HP-UX PA-RISC while Database run on HP-UX PA-Itanium. We use Oracle Discoverer BI but we want to go on Oracle Business Intelligence. What hardware requirement to we need

  • Unable to update a record using PAI, in Module pool

    Hi Experts,                     I m unable to update the records in to the table using P A I in module pool, could any one help me out dear. The prg is as follows: INCLUDE MZFIRSTPAGETOP                          .    " global Data TABLES: ZCHP_CUST_I

  • Mini SAP on Vista 64

    Hi all, Trying to install Mini SAP on Vista 64. I have downloaded from the following page: http://www.sdn.sap.com/irj/scn/downloads;jsessionid=%28J2EE3414800%29ID1969710750DB00238006277026100109End?rid=/library/uuid/80fd9a0a-e306-2a10-c896-b84c77c13e

  • Color Correction Advice Needed

    Hi all - Below is a screen shot that is typical of my sequence: I've applied the Three-Way Color Corrector and have been able to make minor adjustments here and there, but my main concern is the washed-out front man. I can't seem to bring any detail