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

Similar Messages

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

  • 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

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

  • TS4079 Both my wife and I have iPhone 5 and we use Siri a lot. Ever since we upgraded to IOS 7 we found that frequently we get a reply from Siri something like "This is embarrassing but I cannot handle a request right now". Prior to IOS 7 this did not hap

    Both my wife and I have iPhone 5 and we use Siri a lot. Ever since we upgraded to IOS 7 we found that frequently we get a reply from Siri something like "This is embarrassing but I cannot handle a request right now". Prior to IOS 7 this did not happen.

    tonefox is probably right.  Server overload.  I also notice that when siri does respond correctly, it is slower.  My wife has a 4s and same story, and she has not upgraded to IOS 7.
    So it's not just you (if that makes you feel any better).

  • My TMG server cannot connect with Outlook .

    I have TMG server connected with proxy server , i have added the record for email and added the IP address for my mail server ( outcoming , incoming ) now i can ping to the mail server but when i configure the outlook still cannot connect to your server
    what  should i do

    Hi
    As per the information and details provided by you, to connect the TMG server with Outlook please follow these steps: -
    We first need to import the SSL certificate for the site on the TMG firewall. For that, click Start/Run and then type mmc.exe. From the drop
    down menu, choose File > Add > Remove Snap-in. Select Cetificates, and then click on Add.
    After that, follow these steps: -
    Select the
    Computer Account option.
    Select the option to manage the
    Local Computer.
    In the console tree, expand the
    Certificates node. Expand the Personal folder, then right click the
    Certificates folder and choose Import.
    Enter the location of the certificate file you exported previously.
    Enter the password and optionally mark the private key exportable.
    Accept the password and optionally mark the private key exportable.
    Accept the default option to
    Place all certificates in the following store.
    In the TMG management console, right click the Firewall Policy node in the console tree and choose New, then
    Exchange Web Client Access Publishing Rule.
    After that, give the publishing rule a descriptive name.
    Select Exchange Server 2010 from the drop down list, and then select the option to publish
    Outlook Web Access.
    For demonstration purposes, we are publishing a single CAS server, so we will choose the option to Publish a single web site or load balancer.
    Select the option to
    Use SSL to connect the published web server or server farm.
    Enter the name
    of internal web site.
    Select the option to accept requests for a specific domain, and then enter the
    Public name of the web site.
    Create a web listener for the site by selecting New, and then enter a descriptive name for the listener.
    Select the option to
    Require SSL secure connection with clients.
    Select the network to listen for incoming web requests.
    Choose Select Certificate and then select the certificate you imported previously.
    Select the option to use HTML Form Authentication and Windows to validate credentials.
    If required Enable the SSO.
    The authentication method used by
    TMG must match the authentication method configured on the web site. Since we enabled basic authentication on the web site, we will choose
    Basic Authentication here.
    If you wish to grant access to OWA only to specific users and /or groups, add them here,. Otherwise, accept the
    default All Authenticated Users group.
    To confirm operation, click the Test Rule button.
    TMG will test the rule and report the success or failure accordingly.
    I hope this information will be helpful for you.
    Thanks and regards
    Shweta@G

  • HT201210 I have loaded IOS 6 but when it says I have just a few more steps to complete and asks me to sign in with my apple id, it says it cannot connect to server.   Now my ipad won't function at all and it is completely stuck even after turning it off a

    I was having trouble purchasing candy crush updates (for no apparent reason, as it has been fine previously).   I thought perhpas I needed to download some new software and promptly started the IOS 6 update.   It installed and then asked me to complete the final few steps by signing in with my apple id.   When I try to do that it says "it cannot connect to the server".   I have tried turing it off and on and over riding it, but it won't let me do anything at all now on my ipad mini.
    Can anyone help?   I literally can't function!!!!

    You can't override it no matter what you do. The device has to connect to the server to complete the iOS update. You could try rebooting the iPad and see if that lets you connect to the server after it starts up.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.
    If that will not work, you can try connecting to iTunes on your computer and see if the activation will complete. Sometimes when thes activation issues arise, you end up having to restore the device again, but first things first. Reboot and see what happens.

  • All of the sudden I cannot connect to my email the message says the mail server is not responding can someone help with this issue?

    woke up this morning could not connect to my email. Message just says unable to connect to server, hopefully someone can help me resolve this issue.

    Cannot connect to the incoming server, or were you trying to send mail? Who is your email provider? Have you checked email settings? Try a reset first, hold the sleep/wake and home buttons together until you see the Apple logo and then release. After the phone restarts, check again. Are you showing a signal for cellular data, or a wifi signal if you are on wifi?

  • HT5457 I can't get passbook to open I get a cannot connect to the iTunes Store message

    I updated my iPhone 4 last night. I am trying to find a way to use the new Passbook App. when I open it and hit the app store button, I get a message that I cannot connect to iTunes Store, BUT I can connect to the iTunes Store via iTunes on the phone. I have already shut down and synced to my computer. Is anyone else having this problem OR does anyone know how to fix it?

    Try this: http://www.macworld.com/article/2010185/fix-passbooks-app-store-error-in-ios-6.h tml

  • I cannot connect my outlook email with Mac mail

    I am trying to connect my outlook email to my mac mail. I have tried it through Exchange, but it is not working. It keeps saying server is unavailable. Help!

    Hi there! I have a 2014 kia C'eed and I also can't get my ipod nano to connect to the bluetooth. Works ok when I plug it into the usb port though, but  didn't want to have to be constantly unplugging it when leaving the car. The nano sees the BT in car but car can't seem to find my nano. If you find a solution can you let us know please?!!!
    Thanks!

  • When I updated my iPad to 6.1.3 os it installed only upto 70% then it says cannot connect to iTunes until now, can somebody help me?

    I am at a lost why my iPad cannot connect to iTune store and Apple Store.
    This has occurred when I did updating to os 6.1.3. During the update, the installation only reach around 70% complete
    When suddenly it says Internet connection was lost. When I check the Internet is quite ok and when I tried to update
    It says cannot connect to iTune store. It has been like that since then, mean cannot connect to iTune ....
    Can somebody help?

    Reboot your router. Unplug it for about 30 seconds and then plug it in again.
    Then restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    If that doesn't work - Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.
    If still no luck - sign out of your account, restart the iPad and then sign in again.
    Settings>iTunes & App Store>Apple ID. Tap your ID and sign out. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Go back to Settings>iTunes & App Store>Sign in and then try to update again.

  • Cannot connect Ipod to Itunes, error messages

    I just unpacked my brand new Ipod Touch 16 Gb, in version 1.1.2.
    I have the most serious problems to get a reliable connection to ITunes. In 1 case out of 20 it works, but usually I get a couple of error messages:
    a) itunes could not connect to Iphone because error while reading from device
    b) Itunes could not connect to Iphone because unknown error 0xE8000001.
    after 2 hours I managed to upgrade to version 1.1.3., managed to sync a few songs, but now connections are impossible, with above error messages.
    Please help.
    Patrick

    have you tried unplugging all usb devices, including any usb hubs? Plug ipod directly into usb 2 port and try again.

  • AIM cannot connect in Mountain Lion's Messages app

    I upgraded to Moutain Lion yesterday and my AIM account will no longer connect in Messages. Prior to this I was using the Messages beta under Lion and it was working fine. Messages connects fine to my gTalk and iCloud accounts. Adium connects fine to my AIM account using the same credentials. But for some reason, when I add the AIM account in Messages, it just sits there saying "Offline" with the little jagged line icon. I continuously try to change my status to "Available", un-check and re-check the "Enable this Account" checkbox in Preferences>Accounts, and delete it and re-add it. Nothing seems to get it to sign on.
    Any ideas?

    Ok. Stand-down. After following Ralph's tip here and restarting the computer, things are now working fine. Thanks!

  • Cannot connect to iTunes store - error messages in Win XP event log

    I've been reading the posts and trying to connect to the iTunes store unsuccessfully for at least a week since installing the latest iTunes 9 update.
    I've tried every suggestion I have found without success including uninstalling and reinstalling iTunes. I also used MSCONFIG to do a selective startup without services and then started iTunes, no luck with that.
    I just went to Administrative Tools->Event View to look for clues.
    Every day since March 31, 2010 there are multiple error messages for Bonjour Service. Probably one error for every time I tried to go to the iTunes store.
    All of the Bonjour error messages are the same.
    The error message follows:
    ERROR: read_msg errno 10054 (An exsisting connection was forcibly closed by the remote host)
    I can see my store account information, but when I click DONE the process hangs.
    When I click on iTunes Store, the status bar goes about half way and hangs. No error messages.
    When I run iTunes network connectivity tests the results show a "Secure link to iTunes Store verified"
    Any help would be appreciated.

    Update to my original post
    Still cannot see the iTunes store. Here is a list of what I have tried so far in addition to what I mentioned in the original post:
    Changed parental controls to only allow access to iTunes U - cannot see iTunes U
    Changed parental controls back to allow all access - cannot see the store
    Updated my network driver - no change
    Investigated the Error code 10054 on the internet for a solution.
    Found this posting:
    http://www.sqlservermart.com/resources/SynAttackProtect.aspx
    Changed the registry as they recommended to include:
    HKEYLOCALMACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\SycAttackProtect{DWOR D} = 0
    Rebooted and no change.
    iTunes network diagnositcs indicates I am able to connect to the store, but the status bar still hangs up about 1/2 way into the attempt to connect.
    iTunes Network diagnostic results shown below:
    Microsoft Windows XP Home Edition Service Pack 3 (Build 2600)
    Dell Computer Corporation DIM4500
    iTunes 9.1.0.79
    QuickTime 7.6.6
    FairPlay 1.7.16
    Apple Application Support 1.2.1
    iPod Updater Library 9.0d11
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 3.0.0.102
    Apple Mobile Device Driver 1.46.0.0
    Bonjour 2.0.0.34 (214.3)
    iTunes Serial Number 64B00F8F5E0A51EF
    Current user is an administrator.
    The current local date and time is 2010-04-10 13:39:14.
    iTunes is not running in safe mode.
    Video Display Information
    ATI Technologies Inc. RAGE 128 PRO Ultra GL AGP
    ** External Plug-ins Information **
    No external plug-ins installed.
    iPodService 9.1.0.79 is currently running.
    iTunesHelper 9.1.0.79 is currently running.
    Apple Mobile Device service 3.0.0.0 is currently running.
    ** Network Connectivity Tests **
    Network Adapter Information
    Adapter Name: {4CDE1A2C-0018-45E9-BA18-009425BD110D}
    Description: CNet PRO200WL PCI Fast Ethernet Adapter - Packet Scheduler Miniport
    IP Address: 192.168.1.101
    Subnet Mask: 255.255.255.0
    Default Gateway: 192.168.1.1
    DHCP Enabled: Yes
    DHCP Server: 192.168.1.1
    Lease Obtained: Sat Apr 10 12:16:18 2010
    Lease Expires: Sun Apr 11 12:16:18 2010
    DNS Servers: 72.240.13.35
    72.240.13.35
    72.240.13.5
    72.240.13.6
    Active Connection: LAN Connection
    Connected: Yes
    Online: Yes
    Using Modem: No
    Using LAN: Yes
    Using Proxy: No
    SSL 3.0 Support: Enabled
    TLS 1.0 Support: Enabled
    Firewall Information
    Windows Firewall is on.
    iTunes is enabled in Windows Firewall.
    Connection attempt to Apple web site was successful.
    Connection attempt to iTunes Store was successful.
    Secure connection attempt to iTunes Store was successful.
    Secure connection attempt to iPhone activation server was successful.
    Last successful store access was 2010-04-10 12:21:51.

  • Exchange Server 2013 cannot connect to Shell getting error Message

    New-PSSession : ******* Connecting to remote server ki-edm-vsrv-01 failed with the following error message :
    [************,TimeStamp=2014-03-18 3:05:46 PM] Access is
    denied. For more information, see the about_Remote_Troubleshooting Help topic.
    At line:1 char:1
    + New-PSSession -ConnectionURI "$connectionUri" -ConfigurationName Microsoft.Excha ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : OpenError: (System.Manageme....RemoteRunspace:RemoteRunspace) [New-PSSession], PSRemotin
       gTransportException
        + FullyQualifiedErrorId : -2144108173,PSSessionOpenFailed

    It will be nice if you provide more info:
    What version of Exchange 2013 are we talking about - RTM, CU1, CU2, CU3 or SP1
    Is this a CAS, MBX or multirole server
    Did you remove the default Exchange self-signed certificate
    Are you trying to connect locally or remotely
    Step by Step Screencasts and Video Tutorials

Maybe you are looking for