Problems with iMessage – not able to log in

I am having some extreme difficulty with iMessage. This morning, it was being unresponsive and saying that the contacts i was messaging were "not registered with imessage" even though they are. I was logged out and now it will not allow me to log back into my account. I am able to input my ID and password but within seconds of logging in, something pops up and says "could not sign in to iMessage. the server encountered an error processing registration. Please try again later."
Does anyone know how to handle this?
Thanks,
clubas

I am having some extreme difficulty with iMessage. This morning, it was being unresponsive and saying that the contacts i was messaging were "not registered with imessage" even though they are. I was logged out and now it will not allow me to log back into my account. I am able to input my ID and password but within seconds of logging in, something pops up and says "could not sign in to iMessage. the server encountered an error processing registration. Please try again later."
Does anyone know how to handle this?
Thanks,
clubas

Similar Messages

  • Ajx problem with jsp .not able to show  ajax response data in table rows

    hi evryone
    i m new to ajax .i m not able solve this problem .pls help if anyone understood my problem
    probelm scenario is like this:
    take a example of shopping page where a field amount changes every time (time interval) ,the amount data is coming from database .ok...
    this i m trying to do with ajax and want to display the value in table rows one by one ..but response whihc i m getting is different .....same value is diaplying in evry rows .which i dont want
    the output it coming now is:like this
    item amount
    item 1 20
    item2 20
    item 3 20
    i want like thi s
    item amount
    item 1 20
    item2 30
    item 3 40
    even in database the value is 20,30,40
    here is the code of two jsp page
    one is ajaxitem_amount.jsp
    <%
    try
    stmt3 = con.createStatement();
    String itemQ="select item_ref_id,quantity from item_master where shop_ref_id="+shopid+" and (status is null or status<>'w') order by item_ref_id";
    //out.println(railQ);
    rs_details=stmt3.executeQuery(itemQ);
    while(rs_details.next())
    item2 = rs_details.getInt("ITEM_REF_ID");
    v.add(new Integer(item2));
    String aString = Integer.toString(item2);
    itemids.add(aString);
    Enumeration enum = v.elements();
    for (j=0; j<v.size(); j++)
    //out.println("v[" + j + "] = " + v.elementAt(j));
    sql3="select max(shop_amount) from shop_floor_temp where item_ref_id="+v.elementAt(j);
    rs_bid=stmt3.executeQuery(sql3);
    if(rs_price.next())
    last_price=rs_price.getDouble(1);
    if(last_price != 0)
    lprice= last_price;
    else
    lprice=1;
    out.print("<response>");
    out.print(lprice+"|");
    out.print("</response>");
    out.print("\n");
    catch(Exception ex)
    out.print("ERROR"+ex);
    // out.println("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
    _another is main shopping
    <td bgcolor="#C5B9AB" width="10%" align="center">
    <strong><font face="Verdana" size="2">Last price</font></strong>
    int tabrowcounter=0;
    while(rs_details.next())//some query
    tabrowcounter++;
    //*some more data is displayed here one by one all are working instead of this which i am calling from another page ajaxitem_amount.jsp page*
    <td bgcolor='<%=colorjava%>' width="50%" align="center">
    <div id="responseimage<%=tabrowcounter%>"></div>
    <div id="responseOutput<%=tabrowcounter%>"></div>
    <SCRIPT LANGUAGE="JavaScript">
    function createXHR<%=tabrowcounter%>()
    try { return new XMLHttpRequest(); } catch(e) {}
    try { return new ActiveXObject("Msxml2.XMLHTTP.6.0"); } catch (e) {}
    try { return new ActiveXObject("Msxml2.XMLHTTP.3.0"); } catch (e) {}
    try { return new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) {}
    try { return new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) {}
    alert("XMLHttpRequest not supported");
    return null;
    function sendRequest<%=tabrowcounter%>()
    document.getElementById('responseimage<%=tabrowcounter%>').innerHTML ="<IMG SRC='load.gif'> ";
    document.getElementById('responseimage<%=tabrowcounter%>').style.display = 'block';
    document.getElementById('responseOutput<%=tabrowcounter%>').style.display = 'none'
    var url="ajaxauct_floor.jsp";
    var xhr = createXHR<%=tabrowcounter%>();
    if (xhr)
    xhr.open("get",url,true);
    xhr.onreadystatechange = function()
    handleResponse<%=tabrowcounter%>(xhr);
    xhr.send(null);
    function handleResponse<%=tabrowcounter%>(xhr)
    if (xhr.readyState == 4 && xhr.status == 200)
    try
    var data = xhr.responseText.split("|");
    //document.write(data);
    //updatePage<%=tabrowcounter%>(xhr.responseText);
    //document.write(xhr.responseText);
    setTimeout('sendRequest<%=tabrowcounter%>()',10000);
    for(var x=0;x<data.length-1;x++)
    //alert(data);
    document.getElementById('responseOutput<%=tabrowcounter%>').innerHTML = data[x];
    document.getElementById('responseimage<%=tabrowcounter%>').style.display = 'none'; // HIDE
    document.getElementById('responseOutput<%=tabrowcounter%>').style.display = 'block'
    //document.getElementById('responseOutput<%=tabrowcounter%>').innerHTML = data[0];
    //document.getElementById('responseOutput<%=tabrowcounter%>').innerHTML = data[0];
    catch(e)
    alert('1 '+e)
    sendRequest<%=tabrowcounter%>();
    </SCRIPT>
    </td>
    </tr></table>
    if anyone have understood my problem pls help me .i have tried lot but not working .anyone genius here ?thnak you

    thanks baluc
    thanks for correcting me and giving me a good advice .anyway i m trying make you understand once again ...
    if you have understood this time please do reply .else i m sorry for placing wrong question ....
    hi everyone
    I m new to Ajax .I m not able solve this problem .pals help if anyone understood my problem
    problem scenario is like this:
    take a example of shopping page where a field amount changes every time (time interval) ,the amount field* (this data is coming from database )
    this I m trying to do with Ajax and want to display the value in table rows one by one ..But response which I m getting is different.....same value is displaying in every rows .which I don't want
    The output it coming now is: like this
    item amount
    item 1 20
    item2 20
    item 3 20
    I want like this s
    item amount
    item 1 20
    item2 30
    item 3 40
    even in database the value is 20,30,40
    here is the code of jsp page
    one page is ajaxitemamount.jsp_*
    <%
    try
    stmt3 = con.createStatement();
    String itemQ="select item_ref_id,quantity from item_master where shop_ref_id="+shopid+" and (status is null or status<>'w') order by item_ref_id";
    //out.println(railQ);
    rs_details=stmt3.executeQuery(itemQ);
    while(rs_details.next())
    item2 = rs_details.getInt("ITEM_REF_ID");
    v.add(new Integer(item2));
    String aString = Integer.toString(item2);
    itemids.add(aString);
    Enumeration enum = v.elements();
    for (j=0; j<v.size(); j++)
    //out.println("v[" + j + "] = " + v.elementAt(j));
    sql3="select max(shop_amount) from shop_floor_temp where item_ref_id="+v.elementAt(j);
    rs_bid=stmt3.executeQuery(sql3);
    if(rs_price.next())
    last_price=rs_price.getDouble(1);
    if(last_price != 0)
    lprice= last_price;
    else
    lprice=1;
    out.print("<response>");
    out.print(lprice+"|");
    out.print("</response>");
    out.print("\n");
    catch(Exception ex)
    out.print("ERROR"+ex);
    // out.println("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
    another is main shopping page page 2*
    <td bgcolor="#C5B9AB" width="10%" align="center">
    <strong><font face="Verdana" size="2">Last price</font></strong>
    int tabrowcounter=0;
    while(rs_details.next())//some query
    tabrowcounter++;
    <td bgcolor='<%=colorjava%>' width="50%" align="center">
    <div id="responseimage<%=tabrowcounter%>"></div>
    <div id="responseOutput<%=tabrowcounter%>"></div>
    <SCRIPT LANGUAGE="JavaScript">
    function createXHR<%=tabrowcounter%>()
    try { return new XMLHttpRequest(); } catch(e) {}
    try { return new ActiveXObject("Msxml2.XMLHTTP.6.0"); } catch (e) {}
    try { return new ActiveXObject("Msxml2.XMLHTTP.3.0"); } catch (e) {}
    try { return new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) {}
    try { return new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) {}
    alert("XMLHttpRequest not supported");
    return null;
    function sendRequest<%=tabrowcounter%>()
    document.getElementById('responseimage<%=tabrowcounter%>').innerHTML ="<IMG SRC='load.gif'> ";
    document.getElementById('responseimage<%=tabrowcounter%>').style.display = 'block';
    document.getElementById('responseOutput<%=tabrowcounter%>').style.display = 'none'
    var url="ajaxauct_floor.jsp";
    var xhr = createXHR<%=tabrowcounter%>();
    if (xhr)
    xhr.open("get",url,true);
    xhr.onreadystatechange = function()
    handleResponse<%=tabrowcounter%>(xhr);
    xhr.send(null);
    function handleResponse<%=tabrowcounter%>(xhr)
    if (xhr.readyState == 4 && xhr.status == 200)
    try
    var data = xhr.responseText.split("|");
    //document.write(data);
    //updatePage<%=tabrowcounter%>(xhr.responseText);
    //document.write(xhr.responseText);
    setTimeout('sendRequest<%=tabrowcounter%>()',10000);
    for(var x=0;x<data.length-1;x++)
    //alert(data);
    document.getElementById('responseOutput<%=tabrowcounter%>').innerHTML = data[x];
    document.getElementById('responseimage<%=tabrowcounter%>').style.display = 'none'; // HIDE
    document.getElementById('responseOutput<%=tabrowcounter%>').style.display = 'block'
    //document.getElementById('responseOutput<%=tabrowcounter%>').innerHTML = data[0];
    //document.getElementById('responseOutput<%=tabrowcounter%>').innerHTML = data[0];
    catch(e)
    alert('1 '+e)
    sendRequest<%=tabrowcounter%>();
    </SCRIPT>
    </td>
    </tr></table>
    if anyone have understood my problem please help me .i have tried lot but not working .anyone genius here ?thank you

  • Problem with OC4J:: not able to deploy map

    hello
    i have downloaded the OC4J stand alone.
    Then i have run the oc4j START Script- it is running.
    then went to browser and runhttp://localhost:8888/mapviewer to access its functions.
    oracle application server MAP VIEWER starts and home page opens..
    but I AM NOT ABLE TO ACTUALLY DEPLOY THE MAP??
    i have also installed the demo database given in mvdemo.zip.
    But actally i dont know how to link it to map viewer??
    PLEASE HELP!!!!

    http://localhost:8888/mapviewer/fsmc/tutorial/setup.html
    contains a set of instructions to set up the mapviewer metadata and data sources once you've loaded the mvdemo.dmp data into a database.
    Have you tried that?

  • Problem with applet , Not able to detect class file

    Hello friends,
    I have a swing/applet class file, and i am trying to integrate it with Tomcat webapps
    My HTMl code goes like this...........
    <APPLET ALIGN="CENTER"
                   CODEBASE="/../../classes/org/jgraph/"
                   CODE="SimpleGraph.class"
                   WIDTH="800" HEIGHT="500">
                   </APPLET>
    My classes are found inside the code base URL............
    CODEBASE="/../../classes/org/jgraph/"
    My folder structure is like below.....in which "SimpleGraph.class" is found
    D:\June5WF\Archicentro\web\WEB-INF\classes\org\jgraph\SimpleGraph.class
    My HTML resides in the following directory structure...
    D:\June5WF\Archicentro\web\WEB-INF\jsp\secure\admin\ramesh.jsp
    But When I run the JSP page .... I am Getting Class not found exception..........
    Please can anyone tell me how to solve this problem....
    I have spent 4 hrs in this......PLZ help me out.....

    Hi,
    I did not mean file object. I meant workbook object. The problem is that I can not see from your code how do you get that OLE object reference. It should be something like this
    GET PROPERTY OF h_excel 'ActiveWorkbook' = h_workbook.
    CALL METHOD OF h_workbook 'SAVEAS' EXPORTING #1 = l_file
    Regards

  • HT1349 I own an Ipad 1. Recently, my imessage does not work as i am not able to log in using my Apple ID and password which before this I had been using to log in. How do i resolve this? Tq

    Own an Ipad1. Recently, my imessage does not work and i am not able to log in using my existing name and passwrd. However, this existing username and password can be used to login into my itunes etc.
    How do I resolve this? Tq

    If the problem persists, you'll probably have to make another apple id, it wont take off any games or music or apps or anything you've bought it will all stay there, i have two apple id's and i don't have a problem with anything.

  • Why isn't my iMessage on my Mac working? I'm not able to log in-there's a error message.

    why isn't my iMessage on my Mac working? I'm not able to log in…there's a error message.

    Place the iOS device in recovery mode with one of thes programs and then restore via iTunes
    For PC
    RecBoot: Easy Way to Put iPhone into Recovery Mode
    If necessary:
    Download QTMLClient.dll & iTunesMobileDevice.dll for RecBoot
    For MAC or PC       
    The Firmware Umbrella - TinyUmbrella
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: How to back up     
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:

  • Please can anyone help me to download some apps for my iphone .. i am simply not able to log in to the itunes store , when i enter my apple id it says that it has not yet been used with the itunes store

    please can anyone help me to download some apps for my iphone .. i am simply not able to log in to the itunes store , when i enter my apple id it says that it has not yet been used with the itunes store

    Ok, you should generally only get this when you are converting your ID to an iTS account for the first time.
    Sign into iTunes with your Apple ID and you should get this.... IRC once you agree or accept it's now an iTS account and you wont get that again.

  • Not able to log in with correct details

    Hi,
    I have been trying to log into the skype app on my mac and it just keeps saying that my user and password is invalid. I have reset the password andbeen using it every day for ages so i know my user is correct. It starts to sign in and then says details are incorrect. I have uninstalled and reinstalled the app incase its the app but its still doing it. When the error comes up it says it doesnt reccognise my skype ID but its my microsoft ID i am putting in in the right area for the misrosoft ID. I am also able to sign in else where with my MS ID so it id defo correct!
    Please help i use it all day for work!
    Thanks
    H

    As it appears that NO one reads anything on these posts it is probably a good idea to find another supplier of Voice over IP supplier.  I have some AUD 35 in credit for the last 3 months. I have my log in details copy pasted on to an excel sheet so they MUST be correct. I have tried many times to log in, recently, with out being able to log on. . . the last time it took over an hour and eventually I did get my contacts and was able to make a call.... about a  month ago. Now it refuses to let me onsite saying my log in details are incorrect. I have tried logging in with my Facebook details, but that also does not work. 
    I do not have a MSN Account,OR a GOOGLE account and do NOT want one  either. I drive a MacBook Air, and do not have an APPLE ID EITHER. I do NOT have a Mobile Phone any more, and no longer want one. the last was an HTC "one" and had far too much "FEED" material on it.  I HAVE paid MY money to Skype and used it for years to phone UK from Africa or Australia on this or other PC machines etc. Now I am reduced to using the land line from anywhere. . . this is basically a kind of theft. . . you have my money and I cannot use it. . . it is not my fault if Skype got bought by Microsoft. It Is STILL my money.  Please have the decency to reply to this message. I have also now removed my birth date and alternative e-mail address from your records. . you dont need either, and this whole thing is getting a way to introusive. between what Facebook has on me and then Microsoft and Google AND now skype, there basically IS no privacy of my contacts or conversations. That is the reason I do not wish to have a Google/ Microsoft Acc. Google is controled by USA and Chinese laws. I am a British Subject, who lives variously in Australia, Ireland or Scotland.  I DO NOT REPORT OR OWE ALLEGIANCE TO THE USA OR ITS SECURITY or TAX SERVICES. I do however still expect to be able to use MY PAID FOR account on a system which was used accross the world as the computer Phone system for the last half a dozen years by many people. 
    Please reply to My Australian e-mail account: I will put it on the profile temporally. 
    Failing this my wife and I will have to move to another suplier: but before that happens I would need access to my page on your site to delete all my contacts on the page.
    I will await your reply, Name and address suplied. . These are a matter of public record, and give you way enough information to check the validity of my credentials. 
    Regards,
    Kevin Target
    76 Rowella Road,
    SIDMOUTH,
    TASMANIA 7270
    AUSTRALIA 
    +363 947468
    OR:
    Kinghorn Farmhouse,
    Straloch,
    Newmachar,
    Aberdeenshire,
    AB21 0RQ SCOTLAND
    UNITED KINGDOM OF GREAT BRITAIN..

  • PROBLEM with iMessage (Messages) on iPod touch HELPPP

    We had a problem with iMessage. We're both using iPod touch with iOS5 version.
    but we can't send messages. It says our emails/apple ids are not registered on iMessage.
    I checked it on already on the Settings>iMessage> ON .
    but still we cant use it. HELP PLEASE THANKS

    Same isue when tryn to change advanced setting :
    +Mon Jul 5 15:51:39 iPhone profiled[266] <Warning>: profiled|Service starting...+
    +Mon Jul 5 15:51:39 iPhone profiled[266] <Warning>: MC|Profile MCConfigurationProfile 0x113b30 has no friendly name.+
    +Mon Jul 5 15:51:41 iPhone ReportCrash[267] <Notice>: Formulating crash report for process profiled[266]+
    +Mon Jul 5 15:51:42 iPhone com.apple.launchd[1] (com.apple.managedconfiguration.profiled[266]) <Warning>: (com.apple.managedconfiguration.profiled) Job appears to have crashed: Bus error+
    +Mon Jul 5 15:51:42 iPhone ReportCrash[267] <Error>: Saved crashreport to /var/mobile/Library/Logs/CrashReporter/profiled2010-07-05-155139iPhone.plist using uid: 0 gid: 0, synthetic_euid: 501 egid: 0+
    Did you solved this issue ?
    Message was edited by: lbarbisan

  • Very URGENT:am not able to log in to my account on installation of OSX lion...tried to resolve this issue by calling apple support centre ,but was left in vain...am not able to access my documents nor do any work...plz help me resolve this issue asap...

    am not able to log in to my user account after installation of OSXLion,have called up the support centre many times,but was left in vain ...i belief its a simple problem ,but why is apple support center not able to help me out ...have given them all the required information with respect to everything...somebody plz help me to log in as am not able to access my docs and do any work...

    My phone works all fine when am in mumbai but as soon s i leave mumbai I am not able to make an otgoing call
    This is entirely a carrier issue.  If your carrier (airtel) doesn't provide service outside of Mumbia, this has nothing to do with your iPhone.
    i feel i need to change my brand
    This is a user-to-user tech support forum, not Apple.  No one here cares at all about your threats.
    NEVER post personal info in this public forum

  • REAL problems with iMessage activation same with Face Time

    I'm having real problems with IMessage activation same with FaceTime, the phone shows the activation is being made but it does not activate!
    Apple ID and password is OK, it's working with other applications
    Any ideas guys?!

    My daughters had the same problem with both of their iPod Touches.  One logged back into iMessage and FaceTime, the other consistently would not login with the same error, "An error occurred during activation.  Try again." 
    Check your date and time.  Its likely incorrect.  Once the date is corrected.  Restart the device. 
    For what ever reason, some devices lose track of the date.  In my case, apparently, my daughters change the date to affect a particular game by advancing the date.  Little cheaters. (LOL)
    Hope this helps!

  • I'm not able to log in as J2EE_ADMIN through the Web Browser.

    If I try to log into the server using http://<server>:50000/ I get the SAP Nteweaver SAP Web Application screen. I click on System Information, I get prompted for the username and password. I enter the username J2EE_ADMIN and then the password, but it keep asking for the username and password until I get the 401 unauthorized screen. I can log into Visual Administrator using the J2EE_ADMIN and the same password with no problems.
    I activated the sap* account, but the same thing is happenning, I'm not able to log in as sap*!
    Any suggestions or tips?

    In the Security Provider Service choose Runtime --> Policy Configurations -->Authentication tab, please check whether you have the below settings correctly, if not set as below.
    Login Modules                                              Flag
    EvaluateTicketLoginModule                           SUFFICIENT
    BasicPasswordLoginModule                          REQUISITE
    CreateTicketLoginModule                              OPTIONAL
    Thank you,
    Shyam

  • Not able to log in Portal(irj or nwa). MYSAPSSO2???

    Hello,
    When i try to log in portal(irj or nwa), the application always redirect-me to log in screen again. So, i try to log in with another user, the message "The user was has authenticated with another user.".
    I verified and the MYSAPSSO2 cookie was not created. I think because of this i not able to login in Portal.
    When i run a service through SICF, it open correctly in Internet Explorer and the MYSAPSSO2 cookie is created. If i try to open the Portal in another TAB, it open correctly.
    Why the MYSAPSSO2 cookie is not created when i log in from portal.
    Recently we changed the SSO Ticket Log in configuration. But we returned to default configuration and we are not able to log in Portal.
    How to fix it?
    Thanks.
    João Mariano

    The problem was in the Template security.
    Thanks

  • User not able to Log in

    Hi All,
    In Entrprise Portal if an End user is not able to log in with his user id or his login is failed , then as a Portal Administrator what we need to check or can anybody tell me where the problem might be .
    Thanks a lot .

    Hi Jain,
    As they said above, first check the user ID in UME.  If the user exists, check if it is locked. 
    To unlock the user , select the user and click on unlock tab.  a message "object unlocked successfully" will display.
    To reset the password for the particular user,
    1) goto user administration --> identity management --> search for the user ID --> click on the Id which is displayed below.
    2)  click on modify tab
    3)  select define initial password button and type password in define password & confirm password fields
    4)  save the changes
    hope this helps you. pls reward points if it is helpful
    regards,
    vv.

  • I am not able to log-in to web sites (banking, g-mail, etc.)

    Using firefox, I am not able to log in to accounts that I have had access to for years. I have been using Firefox for a few years with no problem up until recently. I've tried deleting cookies and history but I am not able to log into an account once I lose it. (as long as I have an account open, there is no problem

    Hi hp323,
    Welcome to the HP Support forums.  I understand that you are unable to get the apps to work on your Photosmart 7520 series printer and that you are unable to log into HP Connected.
    HP Connected has only been rolled out to the USA and the UK.  Please try logging into HP's ePrintCenter with a country other than the USA or UK as the your country choice (this can be chosen in the lower left hand corner of the screen, please see the screen shot below).  That will stop the redirection to HP Connected.  What is occurring is you are trying to log into the USA/UK ePrintCenter which automatically redirects.  The redirect is using the country from the computer and is trying to redirect to the HP Connected for your country and it fails as there is not an HP Connected for your country.
    As for the apps,  HP is aware of the issue and is working on a solution. It is recommended that you have your product updates set to automatic on the front panel of the printer in order to be able to receive the update when it becomes available. If you wish to discuss this with a phone support agent, please call HP's Cloud Services at 1-855-785-2777 if you live in the USA/Canada region. If you live outside of the USA/Canada region please click the link below to find the Technical Support number for your country/region.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

Maybe you are looking for