Outlook tries to connect to a dumb CAS Server

Hi team,
I set up a lab environment with a Single Ex server(lets say EX1.domain.com) with both CAS/MBX collocated. No internet, just internal testing. Created mail.domain.com and autodiscover.domain.com and pointed out to EX1 server. All connections are smoothly
going.
Then I decided to add another two CAS servers (EX2, EX3) to the organization and did nothing more than installing, didn't configure array even.
Now, I'm seeing that whenever I disconnect my NIC on EX2 and EX3, some of the clients(Outlook) disconnects and some keeps working. What I'm confused is even after NOT doing anything other than installing, why is my client connecting to the new CAS Server(s)?
Thank you.
Cheers!

You have probably seen this:
http://technet.microsoft.com/en-us/library/bb124251(v=exchg.150).aspx
Using the user credentials, the Outlook 2007, Outlook 2010, or Outlook 2013 client authenticates to Active Directory and searches for the Autodiscover SCP objects. After the client obtains and enumerates the instances of the Autodiscover service, the client
connects to the first Client Access server in the enumerated list and obtains the profile information in the form of XML data that's needed to connect to the user's mailbox and available Exchange features.
Now, for your specific question:
And how does the client select which CAS to connect to in case of a multiple CAS Server entries in
the Autodiscover info, is it a random selection or round-robin etc?
in the instance of multiple CAS that arent in a load balanced array, the domain-joined client enumerates that list and attempts to connect to the oldest CAS ( I.e. the one installed first) and then tries each one in the list after that - usually.  :)
Twitter!: Please Note: My Posts are provided “AS IS” without warranty of any kind, either expressed or implied.

Similar Messages

  • Why is Mail trying to connect to an unknown mail server (and how do I stop it)?

    Hi - I'm worried that someone has hacked into my system so that it tries to connect to a fake mail server (perhaps to send spam)? I usually have the activity window open when Mail is running, and noticed that it was trying to connect to an unfamiliar mail server the other day - it was shown as an IP address whereas all the mail servers in my mail accounts have names rather than IP addresses ... so I copied the IP address down and searched for it (196.201.4.6), to find that it is run by malawi.net ... in Africa. I recently upgraded to Mac OS Lion, so initially I had figured that it was showing the mail server address differently, but I couldn't think of any reason that my email servers would be in Malawi!
    By now I was getting worried: I checked all my mail accounts to be sure that something had not changed, and confirmed that none of my accounts used this mail server (or mentioned the IP address); and confirmed that the "Connecting to server "196.201.4.6"" activity message only appeared when I first reconnected to the internet (i.e. now when I manually clicked on "get mail") ... which suggests to me that it is a hidden process somewhere?
    I don't have a virus checker, but downloaded ClamXav and ran a check on my user folders ... but found nothing.
    Any thoughts on what this might be, or - if it is something malicious or externally controlled - how I can remove it?
    Thanks - andy

    Hi - "display remote images in HTML messages" was already deselected, so I don't think it was an HTML message connecting.
    But your response made me wonder about whether it was something else in an old email that was causing the problem - I had a search and found some emails from back in 2006 (when I did some work in Malawi for CARE) that were from the mail server (mailer.malawi.net = 196.201.4.6) that has been appearing. However, I still don't understand why (six years later) Mail is now trying to connect to this server ... I'm pretty sure that it never used to happen (and I have been a full-time Mac user since 2003), as I always have the activity window open and would have noticed, so it is only since I upgraded to Lion last week that it started. Any thoughts? I could delete/archive the old emails, but I would really like to understand what is happening?
    Thanks - andy

  • Outlook 2013 cannot connect to local Exchange 2013 server

    Server name EXCHANGE: is Domain controller for (domainname.local), DNS server and Exchange 2013 
    Has UCC CA cert successfully installed for (exchange.domainname.com)
    External Outlook connections, Web Outlook and autodiscover work fine.
    local DNS points autodiscover.domain.com & exchange.domainname.com to internal IP
    I have used the above configuration many time for Exch2010/Outlook 2010 and it works great.
    PROBLEM: Outlook 2013 clients on a local domain member autoconfigure (through autodiscover) but report a certificate error that the names do not match. When I force the acceptance for the cert error the outlook13 account setups with an exchange server
    of "BIG LONG GUID"@domainname.com which cannot resolve and outlook fails.
    Please help..

    Hi , 
    I have recently installed the exchnage 2013 as follow 
    one CAS and Two mail box DAG
    so I was facing similier issue outlook clients were not able not see the CAS 
    so here are the magic solution :
    1-created SRV recored for autodiscover same as  acbrown2010 done
    above in his reply
    2-created
    A record for autodiscover and the IP same as CAS IP
    3-created
    an internal Certificate in CAS server "create a new certificate request " and
    include all names such CAS , MB's , Autodiscover this step to avoid the warning message during outlook setup because self sign certificates in ex2013 not helping
    after that I have tested the outlook and was working fine NO GUID and NO certificates warning 

  • Keep gettig this error message when trying to connect to Firefox The proxy server is refusing connections.

    Redownloaded Firefox and continue to get this error message when trying to connect: The proxy server is refusing connections
    Firefox is configured to use a proxy server that is refusing connections.
    Check the proxy settings to make sure that they are correct.
    Contact your network administrator to make sure the proxy server is
    working.

    Go to Options > Advanced > Network > Connection > Settings and choose "No proxy".
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    It is important that you keep IE updated. The information included with your question, indicates that you are using IE7; you should update to IE8 for your own protection. IE9 will not be made available for Windows XP.
    *http://windows.microsoft.com/en-US/internet-explorer/products/ie/home

  • Error while trying to connect to a remote SQL Server DB using multiconnect

    As part of our business process, we need to connect to a SQL Server DB external to SAP.
    We have done the following:
    1. We set up an ODBC connection on our SAP sandbox server to the external SQL server DB. 
    Name: sdsdev
    Connection string: sdsdev\sqlexpress2008
    2. We tested the ODBC connection from within ODBC and it works perfectly
    3. Using transaction: DBCO we have set up a DB connection known to SAP that we can use in ABAP to retrieve the data.
        It was set up with exactly the same parameters as with the ODBC.
        We used the following connection string so it would know to use the ODBC DBSL profile parameters, with the DSN name  
    being the same as defined in the ODBC:  See below ...
        DB connection: AR_INTERFACE
        DBMS: MSS
        User Name: ARTransfer
        Password: ******
        Conn info: MSSQL_DSN=sdsdev
    4. We also made sure we installed the DBSL dynamic library (DLL) on the R/3 system server.
    5. We ran a small test program to test connectivity ... as below ...
         exec sql .
             connect to 'AR_INTERFACE'
         end exec.
         right after the above command we check the system log for status.  It failed with the following message:
    B Wed Feb 09 14:40:40 2011
    B Connect to AR_INTERFACE as ARTransfer with MSSQL_DSN=sdsdev
    MSSQL_DBNAME=ARTransfer
    C Thread ID:3900
    C dbmssslib.dll patch info
    C patchlevel 0
    C patchno 118
    C patchcomment Problems with the use of literals in non-unicode
    systems (1524929)
    C np:(local) connection used on SAPS101B
    C OpenOledbConnection : CoCreateInstance failed. rc: 8007007e.
    C failed to establish conn to np:(local).
    C Retrying without protocol specifier: (local)
    C OpenOledbConnection : CoCreateInstance failed. rc: 8007007e.
    C failed to establish conn. 0
    B ***LOG BY2=> sql error -1 performing CON [dbds#2 @
    1056] [dbds 1056 ]
    B ***LOG BY0=> <message text not available> [dbds#2 @ 1056] [dbds
    1056 ]
    The connection failed !
    We used all of the information found in OSS Notes we could find.
    Has anyone had this problem before ?  Is there something obvious we are missing in all this ?
    Thank you for your assistance.

    Is this Excel or Access?  If Excel, try this.
    Sub ADOExcelSQLServer()
    ' Carl SQL Server Connection
    ' FOR THIS CODE TO WORK
    ' In VBE you need to go Tools References and check Microsoft Active X Data Objects 2.x library
    Dim Cn As ADODB.Connection
    Dim Server_Name As String
    Dim Database_Name As String
    Dim User_ID As String
    Dim Password As String
    Dim SQLStr As String
    Dim rs As ADODB.Recordset
    Set rs = New ADODB.Recordset
    Server_Name = "EXCEL-PC\EXCELDEVELOPER" ' Enter your server name here
    Database_Name = "AdventureWorksLT2012" ' Enter your database name here
    User_ID = "" ' enter your user ID here
    Password = "" ' Enter your password here
    SQLStr = "SELECT * FROM [SalesLT].[Customer]" ' Enter your SQL here
    Set Cn = New ADODB.Connection
    Cn.Open "Driver={SQL Server};Server=" & Server_Name & ";Database=" & Database_Name & _
    ";Uid=" & User_ID & ";Pwd=" & Password & ";"
    rs.Open SQLStr, Cn, adOpenStatic
    ' Dump to spreadsheet
    With Worksheets("sheet1").Range("a1:z500") ' Enter your sheet name and range here
    .ClearContents
    .CopyFromRecordset rs
    End With
    ' Tidy up
    rs.Close
    Set rs = Nothing
    Cn.Close
    Set Cn = Nothing
    End Sub
    Knowledge is the only thing that I can give you, and still retain, and we are both better off for it.

  • Trying to connect to a WebLogic Admin server via WLST

    I am trying to write a script that will connect to a Admin Server via WLST using a stored config file. I have the written the following:
    import os
    HASCONFIGFILE = os.path.isfile("/beadev/wls10/data/UserConfigInfo/configfile.secure")
    HASKEYFILE = os.path.isfile("/beadev/wls10/data/UserConfigInfo/keyfile.secure")
    if HASCONFIGFILE:
    CONFIGFILE = "/beadev/wls10/data/UserConfigInfo/configfile.secure"
    print "INFO: CONFIGFILE = %s" % CONFIGFILE
    if HASKEYFILE:
    KEYFILE = "/beadev/wls10/data/UserConfigInfo/keyfile.secure"
    print "INFO: KEYFILE = %s" % KEYFILE
    connect(userConfigFile=CONFIGFILE, userKeyFIle=KEYFILE, url='t3://165.79.164.14:21001')
    else:
    print "ERROR:Unable to obtain authentication parameters."
    exit()
    else:
    print "Unable to find user config and keyfiles."
    exit()
    connect(userConfigFile='/beadev/wls10/data/UserConfigInfo/configfile.secure', userKeyFIle='/beadev/wls10/data/UserConfigInfo/keyfile.secure', url='t3://165.79.164.14:21001')
    How ever when I run the script, I get the following WLSTException:
    beaadmin@moorea:/home/beaadmin/bin/scripts/wlst> java weblogic.WLST findFile.py
    Initializing WebLogic Scripting Tool (WLST) ...
    Welcome to WebLogic Server Administration Scripting Shell
    Type help() for help on available commands
    INFO: CONFIGFILE = /beadev/wls10/data/UserConfigInfo/configfile.secure
    INFO: KEYFILE = /beadev/wls10/data/UserConfigInfo/keyfile.secure
    This Exception occurred at Fri Jul 24 13:10:47 PDT 2009.
    weblogic.security.internal.encryption.EncryptionServiceException: com.rsa.jsafe.JSAFE_PaddingException: Could not perform unpadding: invalid pad byte.
    at weblogic.security.internal.encryption.JSafeEncryptionServiceImpl.decryptBytes(JSafeEncryptionServiceImpl.java:78)
    at weblogic.security.internal.encryption.JSafeEncryptionServiceImpl.decryptString(JSafeEncryptionServiceImpl.java:94)
    at weblogic.security.internal.encryption.ClearOrEncryptedService.decrypt(ClearOrEncryptedService.java:87)
    at weblogic.security.UserConfigFileManager.getUandP(UserConfigFileManager.java:537)
    at weblogic.security.UserConfigFileManager.retrieveUandPValues(UserConfigFileManager.java:518)
    at weblogic.security.UserConfigFileManager.getUsernameAndPassword(UserConfigFileManager.java:179)
    at weblogic.management.scripting.WLSTHelper.connect(WLSTHelper.java:130)
    at weblogic.management.scripting.WLScriptContext.connect(WLScriptContext.java:60)
    at weblogic.management.scripting.utils.WLSTUtil.initializeOnlineWLST(WLSTUtil.java:121)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:618)
    at org.python.core.PyReflectedFunction.__call__(PyReflectedFunction.java:160)
    at org.python.core.PyMethod.__call__(PyMethod.java:96)
    at org.python.core.PyObject.__call__(PyObject.java:248)
    at org.python.core.PyObject.invoke(PyObject.java:2016)
    at org.python.pycode._pyx6.connect$1(<iostream>:16)
    at org.python.pycode._pyx6.call_function(<iostream>)
    at org.python.core.PyTableCode.call(PyTableCode.java:208)
    at org.python.core.PyTableCode.call(PyTableCode.java:404)
    at org.python.core.PyFunction.__call__(PyFunction.java:184)
    at org.python.pycode._pyx18.f$0(/home/beaadmin/bin/scripts/wlst/findFile.py:13)
    at org.python.pycode._pyx18.call_function(/home/beaadmin/bin/scripts/wlst/findFile.py)
    at org.python.core.PyTableCode.call(PyTableCode.java:208)
    at org.python.core.PyCode.call(PyCode.java:14)
    at org.python.core.Py.runCode(Py.java:1135)
    at org.python.util.PythonInterpreter.execfile(PythonInterpreter.java:167)
    at weblogic.management.scripting.WLST.main(WLST.java:106)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:79)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:618)
    at weblogic.WLST.main(WLST.java:29)
    Caused by: com.rsa.jsafe.JSAFE_PaddingException: Could not perform unpadding: invalid pad byte.
    at com.rsa.jsafe.JA_PKCS5Padding.a(Unknown Source)
    at com.rsa.jsafe.JG_BlockCipher.decryptFinal(Unknown Source)
    at weblogic.security.internal.encryption.JSafeEncryptionServiceImpl.decryptBytes(JSafeEncryptionServiceImpl.java:68)
    ... 33 more
    Problem invoking WLST - Traceback (innermost last):
    File "/home/beaadmin/bin/scripts/wlst/findFile.py", line 13, in ?
    File "<iostream>", line 22, in connect
    WLSTException: 'Error occured while performing connect : Error connecting to the servercom.rsa.jsafe.JSAFE_PaddingException: Could not perform unpadding: invalid pad byte. Use dumpStack() to view the full stacktrace'
    Any ideas why this is not working or what 'Could not perform unpadding: invalid pad byte.' means?

    Nope, that wasn't me and bless me if I'm wrong but I'm generating this error because I have a non-encrypted string where I need an encrypted string. By that I mean the following line 'CONFIGFILE = "/beadev/wls10/data/UserConfigInfo/configfile.secure" Has a non encrypted string '/beadev/wls10/data/UserConfigInfo/' concatenated to the encrypted file configfile.secure? I wonder if it would just be easier to 'cd' into the directory where the config files live and run the connect from there, either way I have something to go on, thanks for that link.

  • Outlook 2013 cannot connect to Exchange 2010 SP2 server, Outlook 2010, OWA work fine. Ideas?

    After upgrading a laptop from Outlook 2010 to 2013 it can no longer connect to our Exchange 2010 SP2 environment.  OWA works, Outlook 2010 works, but Outlook 2013 will not create a profile via AutoDiscover.  The first two checks go, the last check
    Log On To server will not.
    We can take the laptop to a different network and it works fine with Outlook 2013.
    What is different with Outlook 2013 where it will not connect.
    Jason Meyer

    Does it work when we recreate a new Outlook profile?
    At this point, We high recommand that we run Microsoft Connectivity Analyzer Tool from the folloing link to check what was happening
    https://testconnectivity.microsoft.com/
    Cheers,
    Tony Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please contact
    [email protected]

  • Mac keeps trying to connect to a non-existing server

    Title pretty much says it all. Some time ago I accessed a Windows-Share using my MacBookPro (10.6.1).
    Since then an error message along the lines of "Connection failed. Can't connect to the server AFOREMENTIONEDWINDOWSSERVER."pops up irregularly. Sometimes every 5 seconds, sometimes once in a hour.
    Things I tried:
    Repairing permissions
    deleting com.apple.finder.plist
    loggin in with a different account - no problems then!
    emptying the "recent servers" list in GoTo -> Connect to Server...
    I'm kind of stumped at the moment, especially as I can't find any log-file entries for this error.
    You guys got any additional ideas?

    Now it's getting screwy, and looks like some sort of corruption. I recently had a issue with one of my iMac's and it's network settings. All browsers were having problems going to some sites. I went through all the motions, including user account testing, reinstalling and updating SL, etc.
    Ran Onyx and cleaned every cache setting known to Mac.
    Finally determined problem happened when network location set to Static IP, but not when Location set for dynamic IP. Don't know why, but other computers were able to use the same static IP's fine. The problem machine was using a Static IP for many months, but I changed the IP number to another Static, it worked, then changed the IP number back to the original Static, it continued to work...
    So, even though I reinstalled the OS, some sort of networking preference must have been reused in the new installation. Changing the setting reset it or caused a new preferences file to be built.
    One thing, I cloned my drive and worked over the clone pretty well. You can get pretty drastic if you've got nothing to loose. With a clone you can mess with the system preferences the same way you did with the user prefs, without causing any new problems on your work drive. You could also play with setting up a new user account and importing parts of the old account to see if you can get a good working account without endangering your data.

  • Outlook 2013 stopped connecting to my Yahoo mail server

    I set up my Outlook 2013 to my yahoo mail server a week or so ago when I got my new windows 8 computer.  It's been working fine.  I signed on today.  Sent/received emails.  Toward end of day, I can't sign on to yahoo mail server. 
    I can't send or receive emails.  I did nothing to change the settings.  I checked the settings, but I still can't send or receive.  Why is it doing this and what can I do to fix it?  The same thing is happening on my laptop.  Both
    were working fine earlier.

    Hello,
    Since you use Yahoo mail server, I recommend you contact Yahoo support to verify the issue.
    Before you contact Yahoo support, please post the error when you send messages.
    Cara Chen
    TechNet Community Support

  • Trying to connect to the Master XML Server

    After researching around, I am no closer to the solution then when I started many hours ago. The only thing I found is that it was pointing to this file (Location is at DATA:\Zenworks\ for our location) zfs-startup.xml. The problem is that this file is a zero-byte file so it is absolutely useless. Our Zenworks Imaging Server is designated to serve as a stand-alone server.
    Where is this file at or can one create it. If not, how can one fix this error.
    Thanks,
    Kevin

    wheatonr3,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • Exchange 2010 - Outlook Anywhere trying to connect to internal server name first before connecting to proxy server

    Hello,
    I have an Exchange 2010 question which I will post in the Exchange 2013 section since the Ask a question button in the legacy Exchange Servers section of technet takes me back to the part of Technet where I can only ask questions regarding Exchange 2013.
    If someone can point me to a part where I can place a question in an Exchange 2010 forum please let me know.
    We have Exchange 2010 setup with a CAS array listening to outlook.internaldomain.com
    We have TMG 2010 setup with a rule for Outlook Anywhere, the rule listens to mail.externaldomain.com and traffic that meets this rule is let through to outlook.internaldomain.com.
    When I fire up my laptop, which is connected to the internet, and start Outlook and let it configure my profile through autodiscover it sets it up correct and fills the Outlook profile with a servername stating outlook.internaldomain.com and a proxyserver
    to be used stating mail.externaldomain.com. After initial setup when my Outlook starts it almost immediatly prompts me for a username and a password so this is working fine.
    At the office we have an internal network segment where DHCP is servicing the connecting clients and giving them our internal DNS servers because they need connection to some other network segments which are not available to the internet. This network segment
    does not have access to our internal Exchange environment but has full access to the internet. Clients in this network segment do want to use Outlook so using Outlook Anywhere for them is the logical way to go. When I connect my laptop to this network segment
    I get handed an IP address and our internal DNS servers, when I start Outlook it takes about two minutes before a the credential prompt pops up and another 2 to 6 minutes after entering credentials before it says all folders are in sync. This is quite long
    and our clients find this unacceptable.
    I started testing what might be going on here and I have found that when I manually enter external DNS servers the Outlook password prompt will popup in seconds and all is working as expected so it seems Outlook is trying to connect to the internal servername
    when using our internal DNS servers (which can resolve outlook.internalnetwork.com) instead of directly going to the proxy server which is to be used for Outlook Anywhere.
    When I start a network monitor trace my thoughts are confirmed because when I am connected to the internal network segment OUTLOOK.EXE first tries to connect to outlook.internaldomain.com, it almost immediately gets a response stating that this route is
    inaccessible but OUTLOOK.EXE keeps on trying to connect untill some sort of time out is reached (somewhere around two minutes) after which it connects to mail.externaldomain.com and Outlook shows the credential prompt.
    So to round it up, when connected to DNS servers that can resolve the internal servername Outlook tries to connect to the internal servername in stead of the external name, Outlook does not reckognize the answer from the network that the internal route is
    not acessible (or it does but does nothing with this information).
    Has anybody experienced this behaviour in Outlook?
    Does anyone have a solution in where I can force Outlook to connect to it's proxyserver and disregard the internal servername?

    Thank you for your reply.
    The client computers that are experiencing the issues are not domain joined, the only reason I can think of why this is occurring is because the DNS servers are able to resolve the internal hostname of the server, but I would expect Outlook to always use
    the proxy server that has been set in the configuration of the Outlook profile. Or at least acknowledging the answer that the initially tried route is inaccessible and immediately continue to the proxy server.
    For setting the same hostname for internal and external use, we use different namespaces internally and externally, do you mean setting the external hostname on the CAS array for internal use ? Wouldn't that push all internal communication to the internet
    and to the outside interface of the TMG where the server is published with that hostname ?

  • Why does Outlook 2010/2013 tries to connect by rpc over http in LAN?

    Hi All,
    I have Exchange 2010 (Two CAS) Published by TMG (Basic Authentication). Also outlook anywhere is configured with Basic Authentication.
    Some users have issues with "authentication prompt" (randomly). By the way, Outlook Clients(2007/2010/2013) are fully updated.
    What I can see when "authentication prompt" shows up, Outlook tries to connect by rpc over https.
    Is this a normal behavior?
    Regards
    Jo

    Hi,
    Firstly, I'd like to say, basic authentication requires user name and password. Thus, it's an expected behavior that credential will prompt once when users login Outlook with basic authentication.
    Additionally, I'd like to confirm how you confirm it's Outlook Anywhere when the credential prompts. Based on my knowledge, the credential issue may be caused by connectivity issue and we can confirm the connection method through the tool "connection status".
    Thus, I'd like to confirm if the connection is established when the credential issue happens.
    Press ctrl and right click Outlook icon>connection status>status, protocol
    Thanks,
    Angela Shi
    TechNet Community Support

  • Outlook disonnected / trying to connect/ server lost connection

    Dear friends,
    On my exchange 2010 i am now getting this error frequently on most of the client computers where outlook looses the connection and hosws outlook is trying to connect and in few cases it shows disconnected and then i have to close the browser and start the
    app again.. this is becoming big issue now .. Can some one please advise why this is happening and how can i resolve the same.
    MARK AS USEFUL/ANSWER IF IT DID
    Thanks
    Happiness Always
    Jatin

    Hi,
    Does the issue happen to all users, internal users or external users? What about OWA? Does it still work?
    If OWA can work normally, please try to use ping to test both the Exchange Server FQDN and the IP address of the Exchange Server.
    If OWA cannot work either, please collect some Event logs or error message/code
     for further troubleshooting.
    Additionally, here is a related KB that may be helpful:
    Outlook connection issues with Exchange 2010 mailboxes because of the RPC encryption requirement
    http://support.microsoft.com/kb/2006508
    Thanks,
    Winnie Liang
    TechNet Community Support

  • How to find out what server the outlook client is connected to/change it automatically

    Hi,
    I am performing a server migration from Exchange 2010 to Exchange 2010 (the previous installation was installed by an outsourced provider and is rubbish so I'm configuring it properly). On the of things the existing server lacks is a CAS array configured,
    so I have built the new Exchange 2010 server, configured a new DB and CASArray. I have created a brand new mailbox for a new user and the user's outlook shows it is connected to casarray.domain.local, I have migrated my own mailbox but internally my outlook
    shows it is connected to oldserver.domain.local (under the account settings when you go to change the settings for the account), this is on a domain joined internal desktop. But at home on my personal laptop non-domain joined, it has appeared to reflect the
    new casarray.domain.local. The outlook client is 2007 in both situations.
    When I run the following command, it shows my mailbox is indeed connected to the new exchange server, but this is not true in outlook
    Get-LogonStatistics -Server "new-exch2010" | where {$_.clientname -eq "new-exch2010"}| ft username,servername,clientname
    If I run the above command against the old server my name shows on that list as well. When I look at the connection status of my outlook it shows that it is connected to casarray for directory, but the old server for mail.
    A couple of other things:
    Mailflow is now going to the new exchange server from the gateway over port 25, the autodiscover record in the internal DNS is now also pointing to the new exchange server, outlook clients and users computers have been completely restarted but still don’t
    seem to pick up the new settings, both the old server and new server functions as a multi-role exchange having the Hub, CAS and MBX roles.
     Now that you have all that background info my question is two parts:
    What is the correct powershell command I can run on the exchange server to ensure that all my outlook clients are connected to the new exchange server for all connection types (or identify those which are connected against the old server)?
    How do I get the outlook clients to automatically pick up the casarray servername once their mailboxes have been migrated?
    I am considering removing the CAS from the old server which may force outlook to find it’s new server but am unsure whether this will work or not, and I think I should migrate all the mailboxes into the new DB before I do this.
    Other than that, I am out of ideas.
    Appreciate, any help. Thanks
    Steve

    I had already run the command Get-MailboxDatabase | FL Identity,RpcClientAccessServer
    and it only identified the old database as being tied to the server name, the new database has the correct casarray and all mailboxes are in this new database. should I also set the old database to point to my casarray as the second command indicates? can't
    do any harm right?
    also, I have outlook 2007 and 2013 at home and both of them had automatically reconfigured
    themselves to point to casarray, my problem is with the internal clients.
    today I have also noticed in DNS there is a Zone which points to autodiscover.domain.co.uk
    and in there it points to my old server.
    a few things to note about the above:
    1. the zone is pointing to the .co.uk domain not the .local - is this correct?
    2. should that zone even be in our internal DNS, i hadn't noticed on previous implementation
    of Exchange I have done
    3. if i change the record within that zone to point to my new server, will this likely show
    up the popup message shown in this link http://www.rackspace.com/apps/support/portal/1218 I havent yet got a certificate for the new exchange server (few more days) and i dont want users seeing any kind of untrusted unsecure connection box or it
    will only lead to panic and flooding the helpdesk
    many thanks
    Steve

  • Webdispatcher error while trying to connect portal

    Hi ,
    I am facing an issue while trying to connect portal from web dispatcher server.
    We have the portal http port as 5XX00 where XX is the instance no for portal .
    Our portal is a standalone java system.
    Now in between portal and web dispatcher there is a firewall and the required port for portal i.e. 5XX00 is opened in firewall.
    To connect message server I have to give 2 parameters.
    rdisp/mshost - portal FQDN
    ms/http_port - 5XX00
    Now I am getting the below error.
    Checking SAP Web Dispatcher Configuration
    =========================================
    maximum number of sockets supported on this host: 8192
    Server info will be retrieved from host: Porttalhost:5XX00 with protocol: http
    Checking connection to message server...
    ERROR: Unexpected HTTP OK code 404 received -
    please check that 5XX00 is really the HTTP port of the Message Server
    Check ended with 1 errors, 0 warnings.
    I have tried with the ms/http_port - 81XX parameter as well.
    Checking SAP Web Dispatcher Configuration
    =========================================
    maximum number of sockets supported on this host: 8192
    Server info will be retrieved from host: Porttalhost:81XX with protocol: http
    Checking connection to message server...
    ERROR: Connection to message server failed: NIECONN_REFUSED
    Check ended with 1 errors, 0 warnings
    Experts I need your help on this .
    Please reply.
    Thanks,
    Sandip

    Hi,
    >We have some web dynpro abap applications running in portal connected to ECC and SRM server.
    You configured successfully external access to your internal portal using the Web dispatcher but you did not give access to your SRM or ECC systems.
    I think that when an abap web dynpro application is displayed in a portal iview, the web browser needs to connect to the abap server. I think that the portal does not act as a kind of reverse proxy.
    I say "I think" because I have not yet tested this case.
    If I am right you have to configure external access to ECC or SRM using an other web dispatcher (or the same if it is 7.2) and you have to configure the portal to use the web dispatcher enabled URLs for the abap web dynpro applications.
    That should be an interesting project !
    Regards,
    Olivier

Maybe you are looking for

  • Need Help With Dreamweaver Divs

    This is a clip of my website that I am making, it is not online yet. But what I need help is with the divs, as you can see the div with the blue text is overlapping a fireworks html banner I made. Any way I can fix this so that the fireworks banner g

  • File name from path

    We are converting an application that has a table with a full path text column and want to extract only the file name and wondered how we can accomplish this. The table is named BatchImport and the column is named FilePath varchar(40). An example of

  • How to design a secure session key distribution?

    i am having some problem in key distribution using DES ,ElGamal, HMAC and MEYER 82. can any one help me with the distribution stucture?

  • Timeout waiting for Oracle WebLogic Server v10.3 at localhost to start

    I am trying to run .portal file using "Run on server" option in Workshop for weblogic. After doing this, its trying to start the server Oracle weblogic server v10.3 at localhost and then publish my module. Server view status shows as "State" as "Star

  • Match question. Are deleted songs being streamed to my Mac?

    In an attempt to clean up my Mac, after matching and uploading songs, I deleted songs from my Macbook library. If I play songs randomly, those songs that are not on my Mac still play. Are they being redownloaded or are they streamed?