"Sorry, I cannot connect the network right now" - Siri has become fairly useless for me.

I having been giving Siri a fair shake since I know it is still very new.
9 times out of 10 my Siri responds, "Sorry, I cannot connect the network right now"
I have tried disaling, and enabling in Settings
I have tried enuciating clearly, in a quiet environment.
I have tried everything I can think of, and basically just stopped using it.
Any thoughts?

A forum search would have found dozens of threads discussing this Siri server issue the last 2 days.  Some have found that resetting the phone helps, at least temporarily:
Press both the home and sleep/wake buttons until yhe Apple logo appears.

Similar Messages

  • We cannot connect to Outlook right now message

    I have been trying to connect to Outlook for weeks but cannot.  I can see my inbox and all my folders but I get a message that states "We cannot connect to Outlook right now". However I can connect to my Outlook off other computers but not
    my home computer.

    Hi,
    Did you mean to login on www.outlook.com?
    Can you login this email in other browser like Chrome or Firefox?
    Consider this issue can be caused by corrupted cookies or temp files, please clear these in IE:
    Open Internet option -> Under Browsing history -> click Delete, Check on cookies and temporarily internet files items -> click Delete.
    Then try again.
    Kate Li
    TechNet Community Support

  • I installed the latest version of iTunes on my Windows XP.  I can launch it but it won't connect to the store because it says I don't have a network connection but I do because I'm on the internet right now!  Help!

    I installed the latest version of iTunes on my Windows XP.  I can launch it but it won't connect to the store because it says I don't have a network connection but I do because I'm on the internet right now!  Help!

    The requirement shoul be on the box the iphone came in.  they are also on the website
    Syncing with iTunes on a Mac or PC requires:
    Mac: OS X v10.6.8 or later
    PC: Windows 7; Windows Vista; or Windows XP Home or Professional with Service Pack 3 or later
    iTunes 10.7 or later (free download from www.itunes.com/download)"

  • 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

  • TS1398 iphone 5 and sky hub? My phone connects intermittantly and quite often cannot find the network. Also does not reconnect automatically? Any ideas?

    My phone connects intermittantly and quite often cannot find the network. Also does not reconnect automatically? Most of the time says unable to join network? My laptop and ipad seem fine? Very annoying Please help!

    All the information you need is right here: http://www.apple.com/iphone/specs.html
    Notice there is no mention of WiMax.
    It doesn't really matter anyway as Sprint is rolling their WiMax network down for use by MVNOs. Actual Sprint customers will not have access to WiMax at all. It was a failed experiment.

  • I tried to update my iPod and now it's saying that iTunes cannot connect the iPod. What should I do?

    I updated my iTunes and then went to update my iPod to the newer 4.2 version that it kept asking me to and now it says that iTunes cannot connect the iPod. My iPod is now unusbale because the screen on the iPod itself shows that i need to connect it to iTunes, but when I do, there's an error message that pops up telling me that iTunes cannot connect it. Help!! How do I fix this?!

    See:
    iOS: Device not recognized in iTunes for Windows
    I would start with
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    or
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    Run this to help if it identifies the cause
    iTunes for Windows: Device Sync Tests
      Have you tried on another computer to help determine if you have a computer or iPod problem

  • HT1212 My iphone is Disabled and says to connect to itunes, i did the whole restore thing but then an error pops up and says' sorry we cannot restore the iphone 'iphone'" ... What do i do?

    My iphone is Disabled and says to connect to itunes, i did the whole restore thing but then an error pops up and says' sorry we cannot restore the iphone 'iphone'" ... What do i do?

    Use recovery mode, you might need to do it a few times.
    http://support.apple.com/kb/HT1808

  • The audio is played through the tv, but the picture plays the first still shot of the moment it is connected then says a message saying "we're sorry" then something about the network provider.

    The audio is played through the tv, but the picture plays the first still shot of the moment it is connected then says a message saying "we're sorry" then something about the network provider.

    Welcome to the Apple Community.
    Please provide a little more detail, such as what you are trying to do when this occurs and exactly what the message says.

  • EWS The server cannot service this request right now. Try again later.

    html,body{padding:0;margin:0;font-family:Verdana,Geneva,sans-serif;background:#fff;}html{font-size:100%}body{font-size:.75em;line-height:1.5;padding-top:1px;margin-top:-1px;}h1{font-size:2em;margin:.67em 0}h2{font-size:1.5em}h3{font-size:1.16em}h4{font-size:1em}h5{font-size:.83em}h6{font-size:.7em}p{margin:0
    0 1em;padding:0 .2em}.t-marker{display:none;}.t-paste-container{;left:-10000px;width:1px;height:1px;overflow:hidden}ul,ol{padding-left:2.5em}a{color:#00a}code, pre{font-size:1.23em}
    Hi,
    I do have a problem that Exchange 2013 CU7 is giving mit a "The server cannot service this request right now. Try again later." when trying to access some accounts using EWS and impersonation.
    I know there might be throttling involved and for that I did make an separate policy and assigned it to the users (EWS andthe mailbox - just in case...)
    Here is what I got from the EWS logs:
    .007Z,f973ffeb-b1fa-4946-a9b4-acb047ea1b37,15,0,1044,21,,NTLM,true,[email protected],domain,ExchangeServicesClient/0.0.0.0,Target=None;Req=Exchange2007_SP1/Exchange2007_SP1;,192.168.0.100,EWS15MB1,EWS15MB3.domain,FindItem,200,1041,,ErrorServerBusy,[email protected],,,cc91dc21f4c542acb64f196ec47ae727,c314fd38-a24e-4bcb-992e-e009c7adcb4e,PrimaryServer,LocalTask,0,1,0,1,0,0,1,0,0,,,,,,,,,0
    Max,0 Max,,,,EWS_BO,0.1067,[C],0,0,10,390,,,5,0,,6,15,695,713,,,BackEndAuthenticator=WindowsAuthenticator;TotalBERehydrationModuleLatency=0;AuthzFlags=AuthzSkipTokenGroups;FindItemQueryFilter=(True);AQS=False;MailboxTypeCacheSize=2039;S:WLM.Cl=InternalMaintenance;S:ServiceTaskMetadata.ADCount=0;S:WLM.Type=Ews;S:FCI.MBXT=Primary;S:ServiceTaskMetadata.ADLatency=0;S:WLM.Int=True;S:FCI.QS=;S:ServiceTaskMetadata.RpcCount=10;S:ServiceTaskMetadata.RpcLatency=420;S:WLM.SvcA=False;S:FCI.VF=All;S:ServiceTaskMetadata.WatsonReportCount=0;S:ServiceTaskMetadata.ServiceCommandBegin=16;S:ServiceTaskMetadata.ServiceCommandEnd=711;S:ActivityStandardMetadata.Component=Ews;S:WLM.BT=Ews;S:BudgetMetadata.MaxConn=Unlimited;S:BudgetMetadata.MaxBurst=Unlimited;S:BudgetMetadata.BeginBalance=$null;S:BudgetMetadata.Cutoff=Unlimited;S:BudgetMetadata.RechargeRate=Unlimited;S:BudgetMetadata.IsServiceAct=False;S:BudgetMetadata.LiveTime=00:00:00.2343945;S:BudgetMetadata.EndBalance=$null;S:FCI.CVT=689;S:FCI.CSIT=70;S:FCI.CSIC=0;S:FCI.CSIQ=2;S:FCI.CSISTC=2;S:FCI.CSIG=54;S:FCI.CRIT=613;S:FCI.CRIC=340;S:FCI.CRIQ=2;S:FCI.CRIG=381;S:FCI.CRIET=0;S:FCI.CRINI=160;S:FCI.CRIMBT=0;S:FCI.CRIMET=7;S:FCI.CRIMP=0;S:FCI.CRIMAR=37;S:FCI.CVU=False;Dbl:WLM.TS=713;Dbl:BudgUse.T[]=715.151611328125;I32:ADR.C[dc1]=1;F:ADR.AL[dc1]=3.1106;Dbl:CCpu.T[CMD]=312.5;I32:RPC.C[EWS15mb1.fb00df0b-8bdd-4dee-81a3-1696ea8bd747]=10;Dbl:RPC.T[EWS15mb1.fb00df0b-8bdd-4dee-81a3-1696ea8bd747]=420;I32:ROP.C[EWS15mb1.fb00df0b-8bdd-4dee-81a3-1696ea8bd747]=80768493;I32:MAPI.C[EWS15mb1.fb00df0b-8bdd-4dee-81a3-1696ea8bd747]=23;Dbl:MAPI.T[EWS15mb1.fb00df0b-8bdd-4dee-81a3-1696ea8bd747]=420;I32:MB.C[EWS15mb1.fb00df0b-8bdd-4dee-81a3-1696ea8bd747]=10;F:MB.AL[EWS15mb1.fb00df0b-8bdd-4dee-81a3-1696ea8bd747]=42;Dbl:ST.T[EWS15mb1.fb00df0b-8bdd-4dee-81a3-1696ea8bd747]=59;I32:ATE.C[dc1.domain-]=1;F:ATE.AL[dc1.domain-]=0;Dbl:STCPU.T[EWS15mb1.fb00df0b-8bdd-4dee-81a3-1696ea8bd747]=46,,ExceptionHandler_Execute=Microsoft.Exchange.Services.Core.Types.ServerBusyException:
    The server cannot service this request right now. Try again later.    at Microsoft.Exchange.Services.Core.Search.NormalQueryView.ThrowIfFindCountLimitExceeded(UInt32 viewLength)    at Microsoft.Exchange.Services.Core.Search.NormalQueryView.RetrieveCalendarViewData(Object[][]
    view  Int32 rowsToGet)    at Microsoft.Exchange.Services.Core.Search.CalendarPageView.ApplyPostQueryPaging(Object[][] view)    at Microsoft.Exchange.Services.Core.Search.NoGrouping.IssueQuery(QueryFilter query  Folder
    folder  SortBy[] sortBy  BasePagingType paging  ItemQueryTraversal traversal  PropertyDefinition[] propsToFetch  RequestDetailsLogger logger)    at Microsoft.Exchange.Services.Core.FindItem.FindItemsInParent(IdAndSession
    folderIdAndSession)    at Microsoft.Exchange.Services.Core.FindItem.Execute()    at Microsoft.Exchange.Services.Core.ExceptionHandler`1.Execute(CreateServiceResult createServiceResult  Int32 index  GenerateMessageXmlForServiceError
    generateErrorXml);,
    And here is the throttling policy I'm using for those users.
    ThrottlingPolicyScope                       : Regular
    IsServiceAccount                            : False
    AnonymousMaxConcurrency                     : 1
    AnonymousMaxBurst                           : 120000
    AnonymousRechargeRate                       :420000
    AnonymousCutoffBalance                      : 720000
    EasMaxConcurrency                           : 10
    EasMaxBurst                                 : 480000
    EasRechargeRate                             : 1800000
    EasCutoffBalance                            : 600000
    EasMaxDevices                               : 100
    EasMaxDeviceDeletesPerMonth                 : Unlimited
    EasMaxInactivityForDeviceCleanup            : Unlimited
    EwsMaxConcurrency                           : Unlimited
    EwsMaxBurst                                 : Unlimited
    EwsRechargeRate                             : Unlimited
    EwsCutoffBalance                            : Unlimited
    EwsMaxSubscriptions                         : Unlimited
    ImapMaxConcurrency                          : Unlimited
    ImapMaxBurst                                : 3600000
    ImapRechargeRate                            : 600000
    ImapCutoffBalance                           : Unlimited
    OutlookServiceMaxConcurrency                : 27
    OutlookServiceMaxBurst                      : 300000
    OutlookServiceRechargeRate                  : 900000
    OutlookServiceCutoffBalance                 : 3000000
    OutlookServiceMaxSubscriptions              : 5000
    OutlookServiceMaxSocketConnectionsPerDevice : 4
    OutlookServiceMaxSocketConnectionsPerUser   : 12
    OwaMaxConcurrency                           : 20
    OwaMaxBurst                                 : 480000
    OwaRechargeRate                             : 1800000
    OwaCutoffBalance                            : Unlimited
    OwaVoiceMaxConcurrency                      : 3
    OwaVoiceMaxBurst                            : 75000
    OwaVoiceRechargeRate                        : 375000
    OwaVoiceCutoffBalance                       : 525000
    PopMaxConcurrency                           : 20
    PopMaxBurst                                 : 3600000
    PopRechargeRate                             : 600000
    PopCutoffBalance                            : Unlimited
    PowerShellMaxConcurrency                    : 18
    PowerShellMaxBurst                          : Unlimited
    PowerShellRechargeRate                      : Unlimited
    PowerShellCutoffBalance                     : Unlimited
    PowerShellMaxTenantConcurrency              :
    PowerShellMaxOperations                     : Unlimited
    PowerShellMaxCmdletsTimePeriod              : Unlimited
    ExchangeMaxCmdlets                          : Unlimited
    PowerShellMaxCmdletQueueDepth               : Unlimited
    PowerShellMaxDestructiveCmdlets             : Unlimited
    PowerShellMaxDestructiveCmdletsTimePeriod   : Unlimited
    PowerShellMaxCmdlets                       : Unlimited
    PowerShellMaxRunspaces                      : Unlimited
    PowerShellMaxTenantRunspaces                :
    PowerShellMaxRunspacesTimePeriod            : Unlimited
    PswsMaxConcurrency                          : 18
    PswsMaxRequest                              : Unlimited
    PswsMaxRequestTimePeriod                    : Unlimited
    RcaMaxConcurrency                           : Unlimited
    RcaMaxBurst                                 : 150000
    RcaRechargeRate                             : 900000
    RcaCutoffBalance                            : Unlimited
    CpaMaxConcurrency                           : Unlimited
    CpaMaxBurst                                 : Unlimited
    CpaRechargeRate                             : Unlimited
    CpaCutoffBalance                            : Unlimited
    MessageRateLimit                            : Unlimited
    RecipientRateLimit                          : Unlimited
    ForwardeeLimit                              : Unlimited
    DiscoveryMaxConcurrency                     : 15
    DiscoveryMaxMailboxes                       : 20000
    DiscoveryMaxKeywords                        :2000
    DiscoveryMaxPreviewSearchMailboxes          : 5000
    DiscoveryMaxStatsSearchMailboxes            : 1000
    DiscoveryPreviewSearchResultsPageSize       : 2000
    DiscoveryMaxKeywordsPerPage                 : 500
    DiscoveryMaxRefinerResults                  : 500
    DiscoveryMaxSearchQueueDepth                : 128
    DiscoverySearchTimeoutPeriod                : 30
    PushNotificationMaxConcurrency              : 20
    PushNotificationMaxBurst                    : Unlimited
    PushNotificationRechargeRate                : Unlimited
    PushNotificationCutoffBalance               : Unlimited
    PushNotificationMaxBurstPerDevice           : 10
    PushNotificationRechargeRatePerDevice       : 6
    PushNotificationSamplingPeriodPerDevice     : 600000
    EncryptionSenderMaxConcurrency             : 200
    EncryptionSenderMaxBurst                    : 4800000
    EncryptionSenderRechargeRate                : 18000000
    EncryptionSenderCutoffBalance               : Unlimited
    EncryptionRecipientMaxConcurrency           : 20
    EncryptionRecipientMaxBurst                 : 480000
    EncryptionRecipientRechargeRate             : 1800000
    EncryptionRecipientCutoffBalance            : Unlimited
    ComplianceMaxExpansionDGRecipients          : 10000
    ComplianceMaxExpansionNestedDGs             : 25
    IsLegacyDefault                             : False
    Diagnostics                                 :
    Do you have an idea how to get rid of this?
    Thank you.
    Regards
    Carsten

    Hi,
    This issue occurs because the EWS monitoring detects that the limit for the requests that are from a Client Access server to a Mailbox server was reached. Therefore, the Client Access server returns an ErrorServerBusy response code to all EWS requests to
    the Mailbox server.
    To work around this issue, make the following changes in the Web.config file on the Client Access server, The Web.Config file is located in the following path: Drive\Program Files\Microsoft\Exchange Server\V15\ClientAccess\exchweb\ews
    1.        Find the following code in the Web.config file:
    <add key="MbxServerEnableConcurrencyControl" value="true" />
    Change the MbxServerEnableConcurrencyControl value from true to
    false.
    2.        Add the following line of code into the Web.config file:
    <add key="DefaultFindCountLimit" value="2000" />
    <add key="MdbFairUnhealthyLatencyThreshold" value="500" />
    3.        Reset IIS to check this issue.
    If this issue persists, I suggest to create a new throttling policy with unlimited settings and applying the policy to those users.
    New-ThrottlingPolicy EWSRCAunlimited
    Get-ThrottlingPolicy EWSRCAunlimited | Set-ThrottlingPolicy -EWSPercentTimeInAD:$null -EWSFindCountLimit:$null -EWSPercentTimeInMailboxRPC:$null -EWSMaxConcurrency:$null -EWSFastSearchTimeoutInSeconds:$null -EWSMaxSubscriptions:$null -EWSPercentTimeInCAS:$null
    -RCAPercentTimeInCAS:$null -RCAPercentTimeInMailboxRPC:$null -RCAMaxConcurrency:$null -RCAPercentTimeInAD:$null
    Set-Mailbox username -ThrottlingPolicy EWSRCAunlimited
    Best Regards.

  • I have done the step 1 to 3,but still cannot connect the wireless network?

    i have done the step 1 to 3,but still cannot connect the wireless network?

    Step 1 to 3 of what? Can you elaborate on the issue?

  • ODI Client cannot connect the datebase after the datebase IP changed

    ODI Client cannot connect the datebase after the datebase IP changed.
    1,the datebase on mac A,the mac changed ip
    2,on the client, tnsping db is ok.
    3,use pl/sql ,can connect on the db
    4,with odi,changed the repostry URL to the new db IP,throw the exception below
    java.sql.SQLException: Io Exception: The Network Adapter could not establish the connection
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:125)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:162)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:274)
         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:328)
         at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:361)
         at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:151)
         at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:595)
         at com.sunopsis.sql.SnpsConnection.u(SnpsConnection.java)
         at com.sunopsis.sql.SnpsConnection.c(SnpsConnection.java)
         at com.sunopsis.sql.h.run(h.java)
    Is anything we need to config after change db machine IP?

    yeah,I got it.Everything is ok now.
    After change IP,we must open TopologyManager:change the JDBC connection of workrepository which must chose in Designer.
    when we open the Designer ,it will connect to db.then coonect to workrepository with original IP.So,we must rechange workrepository's JDBC first!

  • Powerbook G4 (OS 10.4.11) cannot connect to network/internet

    Powerbook G4 (OS 10.4.11) cannot connect to network/internet via wireless.  It had been working very well before I changed my rounter to Linksys E4200.
    I had consulted Linksys on this issue and they said to check with the "MANUFACTURER"!!!  Can anyone help?
    My other Mac works fine with the new router.

    This link may help. https://kb.wisc.edu/helpdesk/page.php?id=6443
     Cheers, Tom

  • Itunes installer cannot connect to network %appdata%

    once it gets to the quicktime part it stops and says that it cannot connect to network %appdata% is there anyway to make it work?

    With the %Appdata% errors, some folks have been having some success with the following Microsoft document:
    [You receive an "Error 1606" error message when you try to install or remove a Microsoft program|http://support.microsoft.com/kb/886549]

  • Dreamweaver sudenly stopped connecting to website, fine one day then cannot connect the next. I can connect using CUTEFTP any suggestions what has stopped dreamweaver from connecting?

    Dreamweaver suddenly stopped connecting to website, fine one day then cannot connect the next. I can connect using CUTE FTP any suggestions what has stopped Dreamweaver from connecting?

    Have you tried clearing DW's program cache yet? That's usually my first step if something "just started happening"...
    Deleting a corrupted cache file
    Server updates can cause DW to need a setting change. Have you already tried toggling Use Passive FTP in your site settings yet?
    Has anything changed on your local network, like an update to a firewall?
    If you are connected via wireless router, a low likelihood but possible thing to test would be a wireless router problem. Try connecting the computer directly to your modem, bypassing the wireless router (if you aren't using an all in one modem/router setup) to see if that makes any difference.

  • My iphone 4 wont connect to any wifi. my home wifi is ok because my iPad works. it says cannot connect to network. does not ask for password

    my iphone 4 quit connecting to my home wifi. ipad works fine. won't connect at other wifi spots. Says cannot connect to network.

    Hey cgood59,
    Thanks for the question, and welcome to Apple Support Communities.
    I understand that you are having issues connecting to Wi-Fi networks with your iPhone 4. The following troubleshooting assistant may lead to a resolution:
    Apple - Support - iPhone - Join a network Assistant
    http://www.apple.com/support/iphone/assistant/wifi/
    For more in-depth troubleshooting, refer to the following article:
    iOS: Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/TS1398
    Thanks,
    Matt M.

Maybe you are looking for