TS4079 All I get from Siri is "Sorry, I cannot take requests right now. Please try again later." I've done all the resetting of the phone and Siri. What's wrong?

Any answers about Siri not working that doesn't have to do with resetting?

Whenever Siri says that to me I have one of the following situations,
- there is an Internet connection but it is heavily congested and therefore poor
- I am trying to use Siri at a popular time and it Siri or the network is simply overloaded. If this is the case, trying again in about 10 seconds normally works okay.
I hope that this is of some help.

Similar Messages

  • TS4079 Why does Siri say "I'm really sorry about this but I can't take any requests right now Please try again in a little while" ? Is she broke? How do I reset? Thanks

    Why does Siri say "I'm really sorry about this but I can't take any requests right now Please try again later"?
    I haven't had any trouble up to this morning. Is there a reset?
    Thanks for your help.

    Thanks James, I just tried Siri again and it worked fine on two tests.
    Does this Problem happen often? I have had my Iphone5 for about two weeks and this is the first time I have
    had the problem. My 3gs used Siri to dial phone numbers or use the address book to dial and I never had a problem with it.
    Thanks for posting the system status page.

  • TS4079 siri say ( i'm really sorry about this , but i can't take any request right now , please try again in a little while )

    siri say ( i'm really sorry about this , but i can't take any request right now , please try again in a little while )
    please help me >>>>

    Thanks James, I just tried Siri again and it worked fine on two tests.
    Does this Problem happen often? I have had my Iphone5 for about two weeks and this is the first time I have
    had the problem. My 3gs used Siri to dial phone numbers or use the address book to dial and I never had a problem with it.
    Thanks for posting the system status page.

  • HT204389 Whenever I wanna use Siri, it says : sorry, I can't take any request right now please try again in a while. What can I do?

    Whenever I wanna use Siri, it says : sorry, I can't take any request right now please try again in a while. What can I do?

    http://support.apple.com/kb/TS4079
    Read "Ensure that iPhone 4S is connected to the Internet"

  • About siri  siri say  im really sorry about this but i can not take any requests right now please  try again a little while.      this more 1 month

    about siri  siri say  im really sorry about this but i can not take any requests right now please  try again a little while.      this more 1 month

    Re: about siri  siri say  im really sorry about this but i can not take any requests right now please  try again a little while.      this more 1 month
    Aug 7, 2012 8:17 PM (in response to paulcb)
    Im try  and try restore but  like the problem and
    Like (0) Reply

  • TS4079 i'm really sorry, i can't take any requests right now, please try again in a little while

    i'm really sorry, i can't take any requests right now, please try again in a little while
    Why is happening? And this as been going for two week now

    This type of response means that Siri can't connect to Apple's servers, so this means Apple's severs are down. if this continues over a long amount of time ask someone at an Apple store.

  • TS4079 siri keeps saying she cant take any request right now please try again in a little while she was working fine when i first talked to her

    siri keeps saying she cant take any request right now please try again in a little while she was working fine when i first talked to her please help

    You may want to try and reset all settings
    Settings>General>Reset>Reset All Settings
    Note: Data will not be affected but settings for Wi-Fi, FaceTime, Message, Home Sharing, Wall Paper, Sound etc will be reset

  • Why am I getting ExchangeWebServices Inbox Error: Error, ErrorServerBusy. The server cannot service this request right now. Try again later

    I recently switched my application that uses EWS from an on-premise Exchange Server to Exchage Online through Office356.
    The process worked just fine for several days, then I started getting the following errors;
    Error accessing [USERNAME] email account.; ExchangeWebServices Inbox Error: Error, ErrorServerBusy, The server cannot service this request right now. Try again later. --> 
    This has been happening for the past 14 hours now. 
    I contacted my Office365 support team and they acted like they had never heard of the Exchange Web Services API, so no help there.
    I can access the mailbox using the O365 web portal and I can access the mailbox account using the Outlook 2013 desktop client. The issue seems specific to EWS
    My program is a Windows service, written in VB.Net. It connects to EWS, goes to the user account inbox, iterates through the inbox extracting attachments from messages, then moves the messages to a saved folder below the inbox.
    I created the wrapper for EWS that I can reference in my project code using the following, run from an elevated VS2012 command prompt;
    wsdl.exe /namespace:ExchangeWebServices /out:EWS.cs https://outlook.office365.com/ews/services.wsdl /username:[email protected] /password:p@ssw0rd
    csc /out:EWS_E2K13_release /target:library EWS.cs
    I bind to EWS in my class, using the following code;
    Imports System.Net
    Imports ExchangeWebServices
    Public Class Exchange2013WebServiceClass
        Private ExchangeBinding As New ExchangeServiceBinding
        Public Sub New(ByVal userEmail As String, ByVal userPassword As String, ByVal URL As String)
            ExchangeBinding.Credentials = New NetworkCredential(userEmail, userPassword)
            ExchangeBinding.Url = URL
        End Sub
    The error that is logged gets triggered when my code makes a call to the following method;
        Public Function GetInboxMessageIDs() As ArrayOfRealItemsType
            Dim returnInboxMessageIds As ArrayOfRealItemsType = Nothing
            Dim errMsg As String = String.Empty
            'Create the request and specify the travesal type.
            Dim FindItemRequest As FindItemType
            FindItemRequest = New FindItemType
            FindItemRequest.Traversal = ItemQueryTraversalType.Shallow
            'Define which item properties are returned in the response.
            Dim ItemProperties As ItemResponseShapeType
            ItemProperties = New ItemResponseShapeType
            ItemProperties.BaseShape = DefaultShapeNamesType.IdOnly
            'Add properties shape to the request.
            FindItemRequest.ItemShape = ItemProperties
            'Identify which folders to search to find items.
            Dim FolderIDArray(0) As DistinguishedFolderIdType
            FolderIDArray(0) = New DistinguishedFolderIdType
            FolderIDArray(0).Id = DistinguishedFolderIdNameType.inbox
            'Add folders to the request.
            FindItemRequest.ParentFolderIds = FolderIDArray
            Try
                'Send the request and get the response.
                Dim FindItemResponse As FindItemResponseType
                FindItemResponse = ExchangeBinding.FindItem(FindItemRequest)
                'Get the response messages.
                Dim ResponseMessage As ResponseMessageType()
                ResponseMessage = FindItemResponse.ResponseMessages.Items
                Dim FindItemResponseMessage As FindItemResponseMessageType
                If ResponseMessage(0).ResponseClass = ResponseClassType.Success Then
                    FindItemResponseMessage = ResponseMessage(0)
                    returnInboxMessageIds = FindItemResponseMessage.RootFolder.Item
                Else
                    '' Server error
                    Dim responseClassStr As String = [Enum].GetName(GetType(ExchangeWebServices.ResponseClassType), ResponseMessage(0).ResponseClass).ToString
                    Dim responseCodeStr As String = [Enum].GetName(GetType(ExchangeWebServices.ResponseCodeType), ResponseMessage(0).ResponseCode).ToString
                    Dim messageTextStr As String = ResponseMessage(0).MessageText.ToString
                    Dim thisErrMsg As String = String.Format("ExchangeWebServices Inbox Error: {0}, {1}, {2}", responseClassStr, responseCodeStr, messageTextStr)
                    errMsg = If(errMsg.Equals(String.Empty), String.Empty, errMsg & "; ") & thisErrMsg
                End If
            Catch ex As Exception
                'errMsg = String.Join("; ", errMsg, ex.Message)
                errMsg = If(errMsg.Equals(String.Empty), String.Empty, errMsg & "; ") & ex.Message
            End Try
            If Not errMsg.Equals(String.Empty) Then
                returnInboxMessageIds = Nothing
                Throw New System.Exception(errMsg)
            End If
            Return returnInboxMessageIds
        End Function  
    Since the code worked just fine for several days and then suddenly stopped working with a server busy error, I have to think that this is some type of limit or throttling by EWS on the account. I process several thousand emails per day, in chunks of 300
    at a time. 
    But I have no idea how to check for any limits exceeded. I am nowhere close to my O365 mailbox size limit. Right now, there are over 4,000 messages in my inbox, and growing. 
    Thanks in advance for any ideas you can offer.
    Dave

    All the API's EWS, MAPI, ActiveSync,Remote powershell are throttled on Office365 (based around what 1 particular user could resonably do). If you have had a read of this already i would recommend
    http://msdn.microsoft.com/en-us/library/office/jj945066(v=exchg.150).aspx
     You can't adjust or even find your current throttle usage so you have to try to design your code around living inside the default limits. If your using One Service Account to access multiple Mailboxes (or if that account is because used across multiple
    applications) that can cause problems. In this case using EWS Impersonation is good solution as described in
    http://blogs.msdn.com/b/exchangedev/archive/2012/04/19/more-throttling-changes-for-exchange-online.aspx (this basically means the Target Mailbox is charged instead of the Service Account).
     Looking at the code one thing I notice missing is your don't appear to be paging the results of FindItems, also have versioned your requests to Exchagne2013. eg ". When the value of the
    RequestServerVersion element indicates Exchange 2010 or an earlier version of Exchange, the server sends a failure response with error code
    ErrorServerBusy. If the value of the RequestServerVersion
    element indicates a version of Exchange starting with Exchange 2010 SP1
    or Exchange Online, and the client is using paging, EWS may return a
    partial result set instead of an error"
    To Page FindItems Correctly you should use the IndexedPageViewType class and page the Items at no more the 1000 at a time eg something like
    IndexedPageViewType indexedPageView = new IndexedPageViewType();
    indexedPageView.BasePoint = IndexBasePointType.Beginning;
    indexedPageView.Offset = 0;
    indexedPageView.MaxEntriesReturned = 1000;
    indexedPageView.MaxEntriesReturnedSpecified = true;
    FindItemType findItemrequest = new FindItemType();
    findItemrequest.Item = indexedPageView;
    findItemrequest.ItemShape = new ItemResponseShapeType();
    findItemrequest.ItemShape.BaseShape = DefaultShapeNamesType.IdOnly;
    BasePathToElementType[] beAdditionproperties = new BasePathToElementType[3];
    PathToUnindexedFieldType SubjectField = new PathToUnindexedFieldType();
    SubjectField.FieldURI = UnindexedFieldURIType.itemSubject;
    beAdditionproperties[0] = SubjectField;
    PathToUnindexedFieldType RcvdTime = new PathToUnindexedFieldType();
    RcvdTime.FieldURI = UnindexedFieldURIType.itemDateTimeReceived;
    beAdditionproperties[1] = RcvdTime;
    PathToUnindexedFieldType ReadStatus = new PathToUnindexedFieldType();
    ReadStatus.FieldURI = UnindexedFieldURIType.messageIsRead;
    beAdditionproperties[2] = ReadStatus;
    findItemrequest.ItemShape.AdditionalProperties = beAdditionproperties;
    DistinguishedFolderIdType[] faFolderIDArray = new DistinguishedFolderIdType[1];
    faFolderIDArray[0] = new DistinguishedFolderIdType();
    faFolderIDArray[0].Mailbox = new EmailAddressType();
    faFolderIDArray[0].Mailbox.EmailAddress = "[email protected]";
    faFolderIDArray[0].Id = DistinguishedFolderIdNameType.inbox;
    bool moreAvailible = false;
    findItemrequest.ParentFolderIds = faFolderIDArray;
    int loopCount = 0;
    do
    FindItemResponseType frFindItemResponse = esb.FindItem(findItemrequest);
    if (frFindItemResponse.ResponseMessages.Items[0].ResponseClass == ResponseClassType.Success)
    foreach (FindItemResponseMessageType firmtMessage in frFindItemResponse.ResponseMessages.Items)
    Console.WriteLine("Number of Items retreived : " + ((ArrayOfRealItemsType)firmtMessage.RootFolder.Item).Items.Length);
    if (firmtMessage.RootFolder.IncludesLastItemInRange == false)
    moreAvailible = true;
    else
    moreAvailible = false;
    ((IndexedPageViewType)findItemrequest.Item).Offset += ((ArrayOfRealItemsType)firmtMessage.RootFolder.Item).Items.Length;
    Console.WriteLine("Offset : " + ((IndexedPageViewType)findItemrequest.Item).Offset);
    if (firmtMessage.RootFolder.TotalItemsInView > 0)
    foreach (ItemType miMailboxItem in ((ArrayOfRealItemsType)firmtMessage.RootFolder.Item).Items)
    Console.WriteLine(miMailboxItem.Subject);
    else
    throw new Exception("error " + frFindItemResponse.ResponseMessages.Items[0].MessageText);
    } while (moreAvailible);
    The support people should be able to help you as long as you can get past the first level. The EWS Managed API has a RequestId header that gets submitted with requests
    http://blogs.msdn.com/b/exchangedev/archive/2012/06/18/exchange-web-services-managed-api-1-2-1-now-released.aspx . In theory they should be able to take this and then from the Logs tell more information about why your request failed etc.
    Cheers
    Glen

  • Siri in iphone 4s can't take any request right now, please try again leter a little while,

    I RESTORE MY PHONE WITH ITUNES,
    RESET NETWORK SETTINGS,
    RESET PRIVECY SETTINGS,
    RESET SETTINGS.
         BUT NOT WORKING, PLEASE HELP

    With type of concern I would be thinking seriously about location services. Have there been changes made to your location services? Are you having any issues with connectivity to the internet or specifically cellular data connection?
    Siri is a dedicated service that uses cellular data connectivity to work. I would start my checking your safari to see if you are able to login to the internet. If there are no issues there I would be checking location services to see if you have all settings enabled for locatoin services. If all else fails you can restart the device to see if this will resolve the issue.
    Good luck.

  • Today is April 10, 2013. I try to login to iTunes connect and I keep getting the message "An error has occurred processing your request. Please try again later or send an email for assistance." It never tells us what email address we need to write to.

    Today is April 10, 2013. I try to login to iTunes connect and I keep getting the message "An error has occurred processing your request. Please try again later or send an email for assistance." It never tells us what email address we need to write to.

    The problem was solved by Apple Technical Help. The process is as flollows:
    1. Open Safari
    2. Menu item Safari-Reset Safari - remove all website data - reset
    3. Now if you try to login on iTunes connect it will work.

  • I upgrade to ios7 today and now when I try to speak out a messae in messages or use siri niether works siri says it cannot take request right now, and messages just clocks and never types out the message, what happened?

    I upgrade to ios7 today and now when I try to speak out a messae in messages or use siri niether works siri says it cannot take request right now, and messages just clocks and never types out the message, what happened? Has anyone else had this issue today?

    What you are experiencing is 100% related to Malware.
    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • D wont backup to icloud. it is enabled but i get  a message "There was a problem completing the backup. Please try again later. I have tried multiple times over the last 24 hrs. My iphone backs up to icloud fine

    Mo ipad 2 won't backup to icloud. I get a message "There was a problem completing the backup. Please try again later. I have tried multiple times over the last 24hrs but no luck. My iphone backs up fine on the same wireless network.

    i have this issue to any solution yet?

  • What does it mean when Siri keeps saying "I can't help you right now, please come back later."?

    What does it mean when Siri keeps saying, "I can't help you right now, please try again later."?

    Pretty much what it says, SIri can't help you right now.  I suspect it's a location, nework and/or server issue.  Siri is currently Beta and doesn't always work.

  • I down loaded iMessage for mac, but when i try to register it it say the server encountered an error processing registration. please try again later, it has been doing this all night,

    I down loaded the new imessage for mac from the mountain lion, free trial, but when i try to sign in it says the server encountered an error processing registration. Please try again later. I have put it on my other mac, and no problems with it, i have only brought this mac today, and just want to get it all set up

    Try this:
    https://discussions.apple.com/thread/3801516?tstart=0

  • I get this message when updating iMovie-There was an error in the App Store. Please try again later. (20)

    I get this message when updating installs,message is....error in the App Store. Please try again later. (20)
    Can someone help?
    Thank you much in advance!
    Carmen

    Thank you Catherine & MrToaster - Yes - I've just updated to my new credit card. All the details were correct, inc authorisation code but App Store kept prompting me to update iMovie then, not allowing me to (There was an error in the App Store. Please try again later. (20)).
    Your advice worked - I logged out and in again.
    The problem is that I'll definitely have forgotten your tip when my card next expires!

Maybe you are looking for

  • Will the full version of adobe allow you to review and scroll 2 documents at the same time?

    will the full version of adobe allow you to review and scroll 2 documents at the same time?

  • Error in opening admin tool

    Hi, I am having one problem with iplanet administration tool.I am working in iplanet,sp3 on windows2000.I have an ear file of size 9 mb which contains jsps,servlets,supporting classes and ejbs.After deploying this application in Iplanet application s

  • How to monitor Log Backups for MS SQL Server

    Hello all. We are running Solution Manager 7.1 on SP Stack 10 and have downloaded the latest template content. When configuring the templates for DB monitoring, we noticed that although there is a metric that monitors the age of the last DB backup, t

  • IWEB - Force update of media browser

    G'day All When using iWEB if I create a new image in Photoshop and add it to iPHoto it takes a few minutes before it shows up in the iWEB media browser. Does anyone know how to force the iWEB media browser to poll its database? Cheers Russell Dual 1

  • Creating a chart using ABAP OLE

    Hi all, I have a requirement to 1) Output data from an internal table into excel, and 2) Create a chart from the data in excel The ABAP program is driving the creation of the chart in excel. So far I have been able to export the data using OLE calls,