How group by works internally

Hi,
I would like to know how group by works internally using data and index cache( informatica uses data and index cache... not sure oracle uses the same). Consider the following table T with columns A and B.
A      B
A1    1
A2    2
A1    3I am selecting SUM(B) GROUP BY A
My understanding is as follows
1. Reads row 1 and stores in data cache.
2. scans entire table to find the A1s. As an when a row is found, cache them to data cache.
3. Perform SUM for A1 and store result in index cache.
4. Above steps repeated for A2 also.
Please let me know if this is true.
Thanks,
Saff
Edited by: saffron on Nov 19, 2009 9:18 AM

saffron wrote:
I would like to know how group by works internallyWhy?
using data and index cache( informatica uses data and index cache... not sure oracle uses the same).It caches data and indexes but it doesn't use those terms
I am selecting SUM(B) GROUP BY A
My understanding is as follows
1. Reads row 1 and stores in data cache.
2. scans entire table to find the A1s. As an when a row is found, cache them to data cache.
3. Perform SUM for A1 and store result in index cache.
4. Above steps repeated for A2 also.
Please let me know if this is true.
Very unlikely.
The grouping algorithms are internal, undocumented and subject to change and of little use to know outside of the Oracle development team.
If you just want to learn about Oracle you would probably be better off reading about the documented features for your database version.
http://tahiti.oracle.com/

Similar Messages

  • How complete refresh works internally?

    How complete refresh works internally?
    We have 2 databases A and B. A is the master database and B is replica of A. Basically we want to implement complete refresh mechanism for our database A and B at some time mid night.
    I need to know, How complete refresh works internally?
    Actually we need our replica database up and running 7X24 for users and definitely we cannot effort any down time for that database.
    Now I would like to know:
    1.How complete refresh works internally? Whether complete refresh truncate all the tables first from Replica database and then insert or any other mechanism is there.
    2.If complete refresh truncate all tables from replica database, how can we make sure about the complete availability (7X24) of our replica database.
    Any input is going to help a lot.
    Regards,
    Sanjeev

    The Member Feedback forum is for suggestions and feedback for OTN Developer Services. This forum is not monitored by Oracle support or product teams and so Oracle product and technology related questions will not be answered. We recommend that you post this thread to the Oracle Technology Network (OTN) > Products > Database > Database - General forum.

  • How this procedure works INTERNALLY???

    HI Experts
    I have created the below procedure(It is updating 50 million records in decent time) but I have few doubts.
    1) I am not commiting till the end. Will it take up the UNDO space. How can I assure that this procedure executes till the end.
    2) If i have to increase the UNDO space how should I increase considering 50 million rows.
    3) Do I have to consider factors other than UNDO space while running this procedure if yes then wat are they.
    4) Suggest me some links where i can find out how sql queries and pl/sql objects works internally.
    CREATE OR REPLACE PROCEDURE ACCOUNTS_MIGRATION
    IS
    TYPE num_new_typ IS TABLE OF accounts.acc_no_new%TYPE ;
    TYPE num_old_typ IS TABLE OF accounts.acc_no_old%TYPE ;
    TYPE mat_records_typ IS TABLE OF mbk_audittrail.account1%TYPE;
    TYPE mat_records_typ_1 IS TABLE OF mbk_audittrail.account2%TYPE;
    TYPE mr_records_typ IS TABLE OF mbk_requests.account_no%TYPE;
    TYPE mpgn_records_typ IS TABLE OF Mtx_payment_gateway_txn.PAYMENT_METHOD_NUMBER%TYPE;
    TYPE mti_records_typ IS TABLE OF Mtx_transaction_items.ACCOUNT_ID%TYPE;
    all_num_new num_new_typ:= num_new_typ();
    all_num_old num_old_typ:= num_old_typ();
    mat_records mat_records_typ:= mat_records_typ();
    mat_records_1 mat_records_typ_1:= mat_records_typ_1();
    mr_records mr_records_typ:= mr_records_typ();
    mpgn_records mpgn_records_typ:= mpgn_records_typ();
    mti_records mti_records_typ:= mti_records_typ();
    BEGIN
       SELECT ACC_NO_OLD, ACC_NO_NEW bulk collect into all_num_old,all_num_new FROM ACCOUNTS;
       SELECT distinct ACCOUNT1 bulk collect INTO mat_records FROM MBK_AUDITTRAIL where account1 <> ' ';
       SELECT distinct ACCOUNT2 bulk collect INTO mat_records_1 FROM MBK_AUDITTRAIL where account2 <> ' ';
       SELECT distinct account_no bulk collect INTO mr_records FROM Mbk_requests where account_no <> ' ';
       SELECT distinct PAYMENT_METHOD_NUMBER bulk collect INTO mpgn_records FROM Mtx_payment_gateway_txn where PAYMENT_METHOD_NUMBER <> ' ';
       SELECT distinct ACCOUNT_ID bulk collect INTO mti_records FROM Mtx_transaction_items where ACCOUNT_ID <> ' ';
        FORALL i IN 1..mat_records.count
        UPDATE MBK_AUDITTRAIL SET ACCOUNT1=(SELECT ACC_NO_NEW FROM ACCOUNTS WHERE ACC_NO_OLD=mat_records(i) AND ROWNUM=1) WHERE ACCOUNT1=mat_records(i);
        DBMS_OUTPUT.PUT_LINE(TO_CHAR(SQL%ROWCOUNT) || ' rows updated for MBK_AUDITTRAIL->ACCOUNT1');
        FORALL j IN 1..mat_records_1.count
        UPDATE MBK_AUDITTRAIL SET ACCOUNT2=(SELECT ACC_NO_NEW FROM ACCOUNTS WHERE ACC_NO_OLD=mat_records_1(j) AND ROWNUM=1) WHERE ACCOUNT2=mat_records(j);
        DBMS_OUTPUT.PUT_LINE(TO_CHAR(SQL%ROWCOUNT) || ' rows updated for MBK_AUDITTRAIL->ACCOUNT2');
        FORALL k IN 1..all_num_old.count
        UPDATE MBK_BANK SET ACCOUNT_NO=all_num_new(k) WHERE ACCOUNT_NO=all_num_old(k);
        DBMS_OUTPUT.PUT_LINE(TO_CHAR(SQL%ROWCOUNT) || ' rows updated for MBK_BANK->ACCOUNT_NO');
        FORALL l IN 1..all_num_old.count
        UPDATE MBK_CUST_ACCOUNTS SET ACCOUNT_NO=all_num_new(l) WHERE ACCOUNT_NO=all_num_old(l);
        DBMS_OUTPUT.PUT_LINE(TO_CHAR(SQL%ROWCOUNT) || ' rows updated for MBK_CUST_ACCOUNTS->ACCOUNT_NO');
        FORALL m IN 1..all_num_old.count
        UPDATE Mtx_Payment_methods SET PAYMENT_METHOD_NUMBER=all_num_new(m) WHERE PAYMENT_METHOD_NUMBER=all_num_old(m);
        DBMS_OUTPUT.PUT_LINE(TO_CHAR(SQL%ROWCOUNT) || ' rows updated for Mtx_Payment_methods->PAYMENT_METHOD_NUMBER');
        FORALL n IN 1..mr_records.count
        UPDATE Mbk_requests SET ACCOUNT_NO=(SELECT ACC_NO_NEW FROM ACCOUNTS WHERE ACC_NO_OLD=mr_records(n) AND ROWNUM=1) WHERE ACCOUNT_NO=mr_records(n);
        DBMS_OUTPUT.PUT_LINE(TO_CHAR(SQL%ROWCOUNT) || ' rows updated for Mbk_requests->ACCOUNT_NO');
        FORALL o IN 1..mpgn_records.count
        UPDATE Mtx_payment_gateway_txn SET PAYMENT_METHOD_NUMBER=(SELECT ACC_NO_NEW FROM ACCOUNTS WHERE ACC_NO_OLD=mpgn_records(o) AND ROWNUM=1) WHERE PAYMENT_METHOD_NUMBER=mpgn_records(o);
        DBMS_OUTPUT.PUT_LINE(TO_CHAR(SQL%ROWCOUNT) || ' rows updated for Mtx_payment_gateway_txn->PAYMENT_METHOD_NUMBER');
        FORALL p IN 1..mti_records.count
        UPDATE Mtx_transaction_items SET ACCOUNT_ID=(SELECT ACC_NO_NEW FROM ACCOUNTS WHERE ACC_NO_OLD=mti_records(p) AND ROWNUM=1) WHERE ACCOUNT_ID=mti_records(p);
        DBMS_OUTPUT.PUT_LINE(TO_CHAR(SQL%ROWCOUNT) || ' rows updated for Mtx_transaction_items->ACCOUNT_ID');
        FORALL q IN 1..all_num_old.count
        UPDATE Temp_customer_mgmt SET ACCOUNT_NO=all_num_new(q) WHERE ACCOUNT_NO=all_num_old(q);
        DBMS_OUTPUT.PUT_LINE(TO_CHAR(SQL%ROWCOUNT) || ' rows updated for Temp_customer_mgmt->ACCOUNT_NO');
        FORALL r IN 1..all_num_old.count
        UPDATE MTX_HIST_PIN_REGENERATION SET ACCOUNT_NO=all_num_new(r) WHERE ACCOUNT_NO=all_num_old(r);
        DBMS_OUTPUT.PUT_LINE(TO_CHAR(SQL%ROWCOUNT) || ' rows updated for MTX_HIST_PIN_REGENERATION->ACCOUNT_NO');
    END;Thanks & Regards
    Saurabh Sharma

    Remember that besides UNDO you also have to worry about redo !
    If you create a new session for every test run at each volume level, you can query V$SESSTAT for the statistiic 'redo size' so as to identify the Bytes of Redo for each volume level. And then extrapolate from there !
    Hemant K Chitale
    http://hemantoracledba.blogspot.com
    Edited by: Hemant K Chitale on Jul 20, 2009 5:02 PM : ADDED Signature

  • How do promocodes work internationally on textbooks?

    Dear community,
    I am happy to say my textbook is approved, and is available in the iBookstore as of last week!
    Because it is a textbook it can only be purchased in the US iBookstore.
    It is a very specific book about audio engineering. (Audio Engineering : Dynamic processing)
    -> Therefor I am sending it out for reviews to several audio-magazines.
    Some of these are located in England, but they get published worldwide.. (including US)
    So I was wondering how, and if, I can send out my promocodes for reviews to a Brittish magazine for example?
    I have recieved a list with promocodes through itunes connect.
    Also, I have recieved the store instructions on email which has a list for each country that you are sending it to for a review.
    So the question is, can I send this promocode now to a Brittish magazine, and they are able to download a copy of the book in the brittish iBookstore for a review despite the fact that's it is not possible to actually purchase it in Brittish iBookstore?   (- I hope my question makes sense..)
    My second question would be, has anyone have any idea or indication when textbooks will ever be sold in other countries than US?
    Thanks a lot!
    Kind regards
    Wick.

    wickiemedia wrote:
    It actually did work...
    I could use the first promo-code I have generated and download my own book.
    This means i CAN send it to reviewers located in the Uk.
    Note that this puts you in breach with your contract with Apple. From the promo code contract:
    9. PERMITTED USE: You may distribute the Custom Codes only between the Effective Date and that date which is ten (10) days prior to the Expiration Date for the purpose of offering copies of the eBook for media review or promotional purposes. You may not distribute the Custom Codes to Holders in any country in the Territory in which You do not distribute such eBook through the Online Store.
    Michi.

  • How index works internally

    Could plz any one tell how an index works when it is created ?

    http://www.asktheoracle.net/how-do-indexes-work-internally-in-oracle.html

  • JDBC Adapter:- How does it work??

    Dear Friends,
    I would like to know the nuts and bolts of JDBC adapter.
    1.)How does it work internally?Internally what does sap use?
    2.)In my scenario i just need to access a sap table so Can i write my Java JDBC program to access it.?
    3.)Is there any other way to sent data from Idocs to map to a external database with out using XI.?
    thx,
    jeevan

    Hi Jeevan,
    As far as the JDBC adapter goes, internally it uses, obviously JDBC (Java DataBase Connectivity). Thus all the calls from this adapter are internally SQL Queries (Either Select, Insert, Update, Delete, Execute Stored Procedure) that are sent using Java JDBC API.
    In Sender Configuration, it needs a Select and an Update query to be configured into it. It polls the External Database at specific intervals (Polling Interval in the Channel Configuration),i.e., it connects to the Database via a JDBC Connection and runs the select query. The data from the query is sent to XI as an XML Document. The update query is used to update the DB such that the same data is not picked again in the next poll. This is generally done through a status field. The select query's Where clause should pick records with one status and the update should change all those statuses so that the select does not pick them again. Click [Here|http://help.sap.com/saphelp_nw70/helpdata/EN/22/b4d13b633f7748b4d34f3191529946/frameset.htm|SAP Help on JDBC Sender Adapter] for more details, including the format of the XML file sent.
    In receiver configuration, the channels creates SQL statements from the XML Document it receives. This can be either Select, Insert, Update, Delete or Stored Procedure Call Statements. This requires you to give the receiver channel an XML Document in a pre-defined Schema. Click [Here|http://help.sap.com/saphelp_nw70/helpdata/EN/22/b4d13b633f7748b4d34f3191529946/frameset.htm|SAP Help on JDBC Receiver Adapter] for more details including correct XML Schemas. Note that the kind of SQL Statement generated (Select, Update, etc) is dependent on the schema provided.
    Hope this was helpful!!!
    Thanks,
    Guru

  • I had my iphone 4s synced to itunes on my work laptop. The IT group at work stripped out that installation and will not allow me to reinstall. My iphone insists it has to sync to my work laptop itunes. How do I change iphone settings to look at an itunes

    I had my iphone 4s synced to itunes on my work laptop. The IT group at work stripped out that installation and will not allow me to reinstall. My iphone insists it has to sync to my work laptop itunes. How do I change iphone settings to look at an itunes installation on my personal laptop?

    dcotejr wrote:
    I had my iphone 4s synced to itunes on my work laptop. ... How do I change iphone settings to look at an itunes installation on my personal laptop?
    You cannot.
    By Design the iPhone can Only Sync to One iTunes Library at a time.

  • How do you get Groups to work on the IPAD? They imported and show in Address Book but when used, only the first address picks up.

    How do you get Groups to work on the IPAD. They show in address book but only the first name is used when entering.

    When you select the bookmark on the upper left, you should be able to see multiple groups.
    For the groups page, select the bookmark on the upper right to see the individual entries.

  • How do queues / mappings work internally?

    Hello,
    I have some experience in mapping tools outside XI which are "source oriented". This is quite simpy as the source message is "read" top -> down and you can define at each field which action should be done.
    So as you all knwo XI message mappings are "target oriented". There is the queue concept which seems to be one of the most complicated and frustrating issue in XI I have some experience in XI message mappings, but I really would like to understand more in detail how queues and message mappings in general work internally. How does the XI mapper "read" the target structure which actually contains the mapping code? What happens internally for example when you watch the queue of the PARVW field of the E1EDKA1 segment using a "removeContext" function afterwards? What happens without the removeContext function?
    Any information, link to blogs etc. is appreciated.
    Thanks,
    Christoph
    Message was edited by:
            Christoph G.

    HI ,
    Check below links for Mapping,
    /people/udo.martens/blog/2006/08/23/comparing-performance-of-mapping-programs
    Value Mapping and graphical mapping
    /people/sravya.talanki2/blog/2005/08/16/message-mapping-simplified--part-i
    /people/sravya.talanki2/blog/2005/12/08/message-mapping-simplified-150-part-ii
    /people/stefan.grube/blog/2006/01/09/the-use-of-suppress-in-the-xi-30-graphical-mapping-tool
    http://help.sap.com/saphelp_nw04/helpdata/en/49/1ebc6111ea2f45a9946c702b685299/frameset.htm
    Regards,
    Phani.
    Reward Points if Helpful

  • How does VFP CDX works internally ?

    Hello all,
    Are there any information how MS VFP CDX file works internally, what type of trees it use. how
    does it function on multi-user environment, memory caching etc...
    I have lots Dbf which I use for my clients, I can managed the operation of Dbf file in .Net; but not the CDX file.
    I'm starting to convert all my projects to .Net but I still want to work with DBF structure the reason
    I'm retaining all my tables. any comments or suggestion about this
    Project is greatly appreciated.
    Cheers.

    Good day sir Olaf,
       Thank's for the quick reply and some good insight ^_^y
    "Do you really want to reinvent the low level file access to DBF and CDX?"
      I don't think that Fox Software want to reinvent dBase when they release
      the first version of FoxBase which is very much a like of dBbase II.
      Not to reinvent actually, but to create my own file storage compatible
      to all of my existing DBF tables; I can now store up to "16 Gigabytes" of data
      on a single table on which a maximum file size of "2 Gigabytes" on most DBF
      file engine out in the wild.
    "If you want to use DBF data (including indexes) make use of the VFPOLEDB Provider,
    that's the easiest way to work with VFP SQL and other commands"
      As much as possible I want my probject free from other 3rd party software, as I'm
      planning to port this project on MONO upon completion.
      I'm comportable using the .NET Language-Integrated Query, making an IEnumerable
      (Cacheable) file base records list will suffice for now.
      MY main idea are : NoSQL, with a built in LINQ-like features that will
      suffice most of the querying using Where/For and While condition with ease
      and without doing a database field mapping when accessing a DBF file.
       NoODBC, No need for OLEDB, ADO.Net, VFPOLEDB, SQL SERVER or any other Database
       Connector to access the DBF file.
    "The only official file structure description of the vfp help file doesn't go deep:"
      Thanks for this link appreciated; most likely CDX is a file base B+Tree; now I'm
      just wondering how VFP balance the tree; or it will be super balanced upon the
      issuance on REINDEX something like compacting the database on MS SQL.
    Thanks ^_^y
     

  • How a update statement works internally in oracle

    Hi,
    I just wanted to know when a user issues a update (any DML) statement, what are all the steps involved?
    Like when user updated some statement, the modified block goes to the undo tablespace and new data will be stored in the user PGA and when user issues a commit statement.Does it delinked it from the uno tablespace and lgwr flushed the block to the redo logfile(does the lgwr also flushed the uncommited changes to the logfile as datafile stores the committed as well as uncomitted data).Can anybody suggest me how all the things work internally?

    Hi,
    Many of the people post across the same questions and lot of discussions carried out. You can you answer straight from Oracle Docs.
    Any how refer to the following below links
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:288016031632
    Update Statement-10G
    - Pavan kumar N

  • How does iMessage Group Chat work?

    I have a few questions about iMessage.
    How exactly does iMessage group chat work? Does it send the message to each of my recipients as a broadcast sort of thing or does it actually create a group?
    What if one of my recipients replies? Is the message seen by everyone in the group or just by the original sender?
    What if i did want to distinguish between a broadcast message and creating a group?
    Would really appreciate some help!

    I too have a question about how im works in a group setting that I came across today.
    I have a group of friends all in Canada(so there's no group messaging option in the settings->messages). Everyone had im enabled, then one person disabled it and now there is no group from my view. However, I'm receiving messages from other members and it shows up in the group view. If I were to reply it'd go as an sms. The same would happen if I were to individually msg that disabled im user(makes sense). But I'm confused as to how the group is not failing for the others but instead for me. This group was created by me, but that doesn't matter since there's another group it fails at too, so I'm completely lost here. Every other member in the group is able to use im in the group convo except me!

  • How SCCM works internally, about design concepts and working principal of ConfigMgr?

    Hi Guys,
    Could you please recommend me any sort of data or link which explians
    how SCCM works internally, about design concepts and working principal of ConfigMgr.
    I have gone through many sites and videos but they only talk about how to work on SCCM with features however they do not talk about
    how SCCM works\inner working of ConfigMgr.
    Thanks very much in Advance!
    Regards,
    Chandan

    Not really sure what you're looking for here. Not much is explicitly published on the internals and most of what is "known" is anecdotal or based on reverse engineering by the community.There are specific things that have been documented fairly
    well, but those are scattered among various blogs. We can potentially address direct questions here in the forums or point you to that info, but there's not much to really direct you to as a single source because it doesn't really exist in general.
    Jason | http://blog.configmgrftw.com | @jasonsandys

  • How crawler works internally.

    My understanding is, in case of Full crawl SharePoint Crawl Component opens each and every pages in SharePoint Site and perform the crawling. In case of incremental Crawling, SharePoint doesn't crawl SharePoint Site, instead Crawl track the incremental change
    directly from SharePoint Content Databases. So In case of Full Crawl, Web Front End comes in to picture where as in case of Incremental Crawl it doesn't.
    Hope my understanding is correct. If anyone have anyone blog or article regarding please share with me. I want to explore how crawler works internally.
    Regards Restless Spirit

    Hi,
    Incremental crawl will crwals SharePoint site too
    "Like incremental crawls, a continuous crawl crawls content that was added, changed, or deleted since
    the last crawl"
    Link:
    http://technet.microsoft.com/en-us/library/jj219802(v=office.15).aspx
    http://technet.microsoft.com/en-us/library/dn535606(v=office.15).aspx
    Whenever you see a reply and if you think is helpful, click "Alternate TextVote As Helpful"! And whenever you see a reply being an answer to the question of the thread, click "Alternate TextMark As Answer

  • Lync Mobility Not Working Internally

    Hi Experts,
    Actually i am a newbie and i have installed Lync 2013 (without Edge Server), and all services(autodiscovery with lync PC clients, A/V, IM, presence etc etc ) are working (internally and externally) except Mobility functionality. Following are the log files
    from lync 2013 mobile client for your kind reference. Please assist me that where exactly i need to start troubleshooting.
    </SentRequest>
    2014-02-25 17:25:24.357 Lync[2099:3b71618c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/201:CUrlRedirectAndTrustResolver::processUrl called with url = http://lyncdiscoverinternal.alnuaimi-group.com/, hopCount = 0, maxHops = 10
    2014-02-25 17:25:24.357 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/409:Allocating stream 0x1154a50 for url - https://lyncdiscoverinternal.alnuaimi-group.com/ with persistent id as 6
    2014-02-25 17:25:24.357 Lync[2099:3b71618c] INFO TRANSPORT CTransportThread.cpp/131:Added Request(UcwaAutoDiscoveryRequest) to Request Processor queue
    2014-02-25 17:25:24.357 Lync[2099:734c000] VERBOSE TRANSPORT CHttpProxyHelper.cpp/436:CHttpProxyHelper::discoverProxy : No proxy found for url https://lyncdiscoverinternal.alnuaimi-group.com/?sipuri=sip:[email protected]. Sending over direct connection.
    2014-02-25 17:25:24.357 Lync[2099:3b71618c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/385:Submitting new req. UrlTrustResolver(0x5c5d2a8)
    2014-02-25 17:25:24.357 Lync[2099:3b71618c] INFO APPLICATION CUcwaAutoDiscoveryService.cpp/1947:Successfully started the GetUserUrlOperation request for http://lyncdiscoverinternal.alnuaimi-group.com/?sipuri=sip:[email protected]
    2014-02-25 17:25:24.357 Lync[2099:3b71618c] INFO TRANSPORT TransportUtilityFunctions.cpp/488:Extracted alnuaimi-group.com from sip:[email protected]
    2014-02-25 17:25:24.358 Lync[2099:3b71618c] INFO APPLICATION CUcwaAppSession.cpp/998:CUcwaAppSession::setNewActualState() state=1
    2014-02-25 17:25:24.358 Lync[2099:3b71618c] INFO APPLICATION CApplication.cpp/1858:CUcwaAppSession::signIn() succeeded
    2014-02-25 17:25:24.358 Lync[2099:734c000] INFO TRANSPORT CTransportThread.cpp/343:Sent Request(UcwaAutoDiscoveryRequest) to Request Processor
    2014-02-25 17:25:24.358 Lync[2099:3b71618c] INFO UI CMUIManager.mm/982:UpdateViews
    2014-02-25 17:25:24.358 Lync[2099:3b71618c] INFO UI CMUIManager.mm/1050:ActualState = IsSigningIn DesiredState = BeSignedIn DataAvailable = 0 Showing UI = SigningInViewController
    2014-02-25 17:25:24.359 Lync[2099:734c000] INFO TRANSPORT CCredentialManager.cpp/176:getSpecificCredential for serviceId(4) returning: credType (1) signInName ([email protected]) domain () username ([email protected]) password.empty() (1) certificate.isValid() (0) privateKey.empty() (1) compatibleServiceIds(4)
    2014-02-25 17:25:24.359 Lync[2099:734c000] INFO TRANSPORT TransportUtilityFunctions.cpp/631:<SentRequest>
    GET http://lyncdiscoverinternal.alnuaimi-group.com/
    Request Id: 0x5c5d2a8
    HttpHeader:Accept application/vnd.microsoft.rtc.autodiscover+xml;v=1
    </SentRequest>
    2014-02-25 17:25:24.360 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/409:Allocating stream 0x11b7350 for url - http://lyncdiscoverinternal.alnuaimi-group.com/ with persistent id as 7
    2014-02-25 17:25:24.366 Lync[2099:734c000] VERBOSE TRANSPORT CHttpProxyHelper.cpp/436:CHttpProxyHelper::discoverProxy : No proxy found for url http://lyncdiscoverinternal.alnuaimi-group.com/. Sending over direct connection.
    2014-02-25 17:25:24.366 Lync[2099:734c000] INFO TRANSPORT CHttpStreamPool.cpp/556:Not setting TLS as the url(http://lyncdiscoverinternal.alnuaimi-group.com/) is not https
    2014-02-25 17:25:24.369 Lync[2099:734c000] ERROR TRANSPORT CHttpConnection.cpp/1024:Request Type = UcwaAutoDiscoveryRequest Error domain = kCFErrorDomainCFNetwork code = 0x2 ErrorDescription = The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.) ErrorFailureReason = ErrorRecoverySuggestion =
    2014-02-25 17:25:24.369 Lync[2099:734c000] ERROR UTILITIES CHttpConnection.cpp/953:GetAddrInfo returned has error 0x1176b40
    2014-02-25 17:25:24.369 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/477:Releasing stream 0x1154a50.
    2014-02-25 17:25:24.369 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/609:Releasing stream 0x1154a50.
    2014-02-25 17:25:24.369 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/173:Received response of request(UcwaAutoDiscoveryRequest) with status = 0x22020001
    2014-02-25 17:25:24.370 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/201:Request UcwaAutoDiscoveryRequest resulted in E_ConnectionError (E2-2-1). The retry counter is: 0
    2014-02-25 17:25:24.370 Lync[2099:734c000] INFO TRANSPORT CCredentialManager.cpp/176:getSpecificCredential for serviceId(4) returning: credType (1) signInName ([email protected]) domain () username ([email protected]) password.empty() (1) certificate.isValid() (0) privateKey.empty() (1) compatibleServiceIds(4)
    2014-02-25 17:25:24.370 Lync[2099:734c000] INFO TRANSPORT TransportUtilityFunctions.cpp/631:<SentRequest>
    GET https://lyncdiscoverinternal.alnuaimi-group.com/?sipuri=sip:[email protected]
    Request Id: 0x5cb1c18
    HttpHeader:Accept application/vnd.microsoft.rtc.autodiscover+xml;v=1
    </SentRequest>
    2014-02-25 17:25:24.370 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/409:Allocating stream 0x1139940 for url - https://lyncdiscoverinternal.alnuaimi-group.com/ with persistent id as 6
    2014-02-25 17:25:24.371 Lync[2099:734c000] VERBOSE TRANSPORT CHttpProxyHelper.cpp/436:CHttpProxyHelper::discoverProxy : No proxy found for url https://lyncdiscoverinternal.alnuaimi-group.com/?sipuri=sip:[email protected]. Sending over direct connection.
    2014-02-25 17:25:24.371 Lync[2099:734c000] ERROR TRANSPORT CHttpConnection.cpp/1024:Request Type = UcwaAutoDiscoveryRequest Error domain = kCFErrorDomainCFNetwork code = 0x2 ErrorDescription = The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.) ErrorFailureReason = ErrorRecoverySuggestion =
    2014-02-25 17:25:24.372 Lync[2099:734c000] ERROR UTILITIES CHttpConnection.cpp/953:GetAddrInfo returned has error 0x1176b40
    2014-02-25 17:25:24.372 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/477:Releasing stream 0x11b7350.
    2014-02-25 17:25:24.372 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/609:Releasing stream 0x11b7350.
    2014-02-25 17:25:24.372 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/173:Received response of request(UcwaAutoDiscoveryRequest) with status = 0x22020001
    2014-02-25 17:25:24.373 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/201:Request UcwaAutoDiscoveryRequest resulted in E_ConnectionError (E2-2-1). The retry counter is: 0
    2014-02-25 17:25:24.373 Lync[2099:734c000] INFO TRANSPORT CCredentialManager.cpp/176:getSpecificCredential for serviceId(4) returning: credType (1) signInName ([email protected]) domain () username ([email protected]) password.empty() (1) certificate.isValid() (0) privateKey.empty() (1) compatibleServiceIds(4)
    2014-02-25 17:25:24.373 Lync[2099:734c000] INFO TRANSPORT TransportUtilityFunctions.cpp/631:<SentRequest>
    GET http://lyncdiscoverinternal.alnuaimi-group.com/
    Request Id: 0x5c5d2a8
    HttpHeader:Accept application/vnd.microsoft.rtc.autodiscover+xml;v=1
    </SentRequest>
    2014-02-25 17:25:24.373 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/409:Allocating stream 0x11f0c20 for url - http://lyncdiscoverinternal.alnuaimi-group.com/ with persistent id as 7
    2014-02-25 17:25:24.373 Lync[2099:734c000] VERBOSE TRANSPORT CHttpProxyHelper.cpp/436:CHttpProxyHelper::discoverProxy : No proxy found for url http://lyncdiscoverinternal.alnuaimi-group.com/. Sending over direct connection.
    2014-02-25 17:25:24.374 Lync[2099:734c000] INFO TRANSPORT CHttpStreamPool.cpp/556:Not setting TLS as the url(http://lyncdiscoverinternal.alnuaimi-group.com/) is not https2014-02-25 17:25:24.373 Lync[2099:707] Unable to simultaneously satisfy constraints.
    Probably at least one of the constraints in the following list is one you don't want. Try this: (1) look at each constraint and try to figure out which you don't expect; (2) find the code that added the unwanted constraint or constraints and fix it. (Note: If you're seeing NSAutoresizingMaskLayoutConstraints that you don't understand, refer to the documentation for the UIView property translatesAutoresizingMaskIntoConstraints)
    "<NSLayoutConstraint:0x5cc4200 UIImageView:0x5cba360.centerX == UILabel:0x5ca2760.centerX>",
    "<NSLayoutConstraint:0x5cc4260 UIView:0x5cfa610.centerX == UIImageView:0x5cba360.centerX>",
    "<NSLayoutConstraint:0x5ca07a0 H:|-(26)-[UILabel:0x5ca2760] (Names: '|':UIView:0x5cfa610 )>",
    "<NSLayoutConstraint:0x5ca07d0 H:[UILabel:0x5ca2760]-(25)-| (Names: '|':UIView:0x5cfa610 )>"
    Will attempt to recover by breaking constraint
    <NSLayoutConstraint:0x5cc4200 UIImageView:0x5cba360.centerX == UILabel:0x5ca2760.centerX>
    Break on objc_exception_throw to catch this in the debugger.
    The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKit/UIView.h> may also be helpful.
    2014-02-25 17:25:24.375 Lync[2099:734c000] ERROR TRANSPORT CHttpConnection.cpp/1024:Request Type = UcwaAutoDiscoveryRequest Error domain = kCFErrorDomainCFNetwork code = 0x2 ErrorDescription = The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.) ErrorFailureReason = ErrorRecoverySuggestion =
    2014-02-25 17:25:24.375 Lync[2099:734c000] ERROR UTILITIES CHttpConnection.cpp/953:GetAddrInfo returned has error 0x1176b40
    2014-02-25 17:25:24.375 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/477:Releasing stream 0x1139940.
    2014-02-25 17:25:24.375 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/609:Releasing stream 0x1139940.
    2014-02-25 17:25:24.375 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/173:Received response of request(UcwaAutoDiscoveryRequest) with status = 0x22020001
    2014-02-25 17:25:24.376 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/201:Request UcwaAutoDiscoveryRequest resulted in E_ConnectionError (E2-2-1). The retry counter is: 1
    2014-02-25 17:25:24.376 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/266:Sending event to main thread for request(0x5cb1c18)
    2014-02-25 17:25:24.376 Lync[2099:734c000] ERROR TRANSPORT CHttpConnection.cpp/1024:Request Type = UcwaAutoDiscoveryRequest Error domain = kCFErrorDomainCFNetwork code = 0x2 ErrorDescription = The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.) ErrorFailureReason = ErrorRecoverySuggestion =
    2014-02-25 17:25:24.376 Lync[2099:707] Unable to simultaneously satisfy constraints.
    Probably at least one of the constraints in the following list is one you don't want. Try this: (1) look at each constraint and try to figure out which you don't expect; (2) find the code that added the unwanted constraint or constraints and fix it. (Note: If you're seeing NSAutoresizingMaskLayoutConstraints that you don't understand, refer to the documentation for the UIView property translatesAutoresizingMaskIntoConstraints)
    "<NSLayoutConstraint:0x5cf38b0 UIView:0x5cfa610.centerX == UILabel:0x5ca2760.centerX>",
    "<NSLayoutConstraint:0x5ca07a0 H:|-(26)-[UILabel:0x5ca2760] (Names: '|':UIView:0x5cfa610 )>",
    "<NSLayoutConstraint:0x5ca07d0 H:[UILabel:0x5ca2760]-(25)-| (Names: '|':UIView:0x5cfa610 )>"
    Will attempt to recover by breaking constraint
    <NSLayoutConstraint:0x5cf38b0 UIView:0x5cfa610.centerX == UILabel:0x5ca2760.centerX>
    Break on objc_exception_throw to catch this in the debugger.
    The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKit/UIView.h> may also be helpful.
    2014-02-25 17:25:24.376 Lync[2099:734c000] ERROR UTILITIES CHttpConnection.cpp/953:GetAddrInfo returned has error 0x1176b40
    2014-02-25 17:25:24.377 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/477:Releasing stream 0x11f0c20.
    2014-02-25 17:25:24.377 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/609:Releasing stream 0x11f0c20.
    2014-02-25 17:25:24.377 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/173:Received response of request(UcwaAutoDiscoveryRequest) with status = 0x22020001
    2014-02-25 17:25:24.377 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/201:Request UcwaAutoDiscoveryRequest resulted in E_ConnectionError (E2-2-1). The retry counter is: 1
    2014-02-25 17:25:24.377 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/266:Sending event to main thread for request(0x5c5d2a8)
    2014-02-25 17:25:24.377 Lync[2099:707] Unable to simultaneously satisfy constraints.
    Probably at least one of the constraints in the following list is one you don't want. Try this: (1) look at each constraint and try to figure out which you don't expect; (2) find the code that added the unwanted constraint or constraints and fix it. (Note: If you're seeing NSAutoresizingMaskLayoutConstraints that you don't understand, refer to the documentation for the UIView property translatesAutoresizingMaskIntoConstraints)
    "<NSLayoutConstraint:0x5cf3850 UILabel:0x5ca2760.centerX == UIActivityIndicatorView:0x5c59ba0.centerX>",
    "<NSLayoutConstraint:0x5ca07a0 H:|-(26)-[UILabel:0x5ca2760] (Names: '|':UIView:0x5cfa610 )>",
    "<NSLayoutConstraint:0x5ca07d0 H:[UILabel:0x5ca2760]-(25)-| (Names: '|':UIView:0x5cfa610 )>",
    "<NSLayoutConstraint:0x5c58290 UIView:0x5cfa610.centerX == UIActivityIndicatorView:0x5c59ba0.centerX>"
    Will attempt to recover by breaking constraint
    <NSLayoutConstraint:0x5cf3850 UILabel:0x5ca2760.centerX == UIActivityIndicatorView:0x5c59ba0.centerX>
    Break on objc_exception_throw to catch this in the debugger.
    The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKit/UIView.h> may also be helpful.
    2014-02-25 17:25:24.380 Lync[2099:3b71618c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-02-25 17:25:24.380 Lync[2099:3b71618c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-02-25 17:25:24.380 Lync[2099:3b71618c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-02-25 17:25:24.380 Lync[2099:3b71618c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-02-25 17:25:24.380 Lync[2099:3b71618c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-02-25 17:25:24.380 Lync[2099:3b71618c] INFO APPLICATION CEwsAttachmentManager.cpp/196:Scheduling cleanup run in 86400sec
    2014-02-25 17:25:24.380 Lync[2099:3b71618c] INFO TRANSPORT CCredentialManager.cpp/176:getSpecificCredential for serviceId(1) returning: credType (1) signInName ([email protected]) domain (alnuaimi-group) username (test2) password.empty() (0) certificate.isValid() (0) privateKey.empty() (1) compatibleServiceIds(1)
    2014-02-25 17:25:24.381 Lync[2099:3b71618c] INFO UI CMAudioUtil.mm/322:stopSound
    2014-02-25 17:25:24.381 Lync[2099:3b71618c] INFO UI CMAudioUtil.mm/322:stopSound
    2014-02-25 17:25:24.381 Lync[2099:3b71618c] INFO UI CMAudioUtil.mm/322:stopSound
    2014-02-25 17:25:24.381 Lync[2099:3b71618c] INFO UI CMAudioVideoToastViewController.mm/961:Cancelling local notification
    2014-02-25 17:25:24.381 Lync[2099:3b71618c] INFO UI CMUIManager.mm/982:UpdateViews
    2014-02-25 17:25:24.381 Lync[2099:3b71618c] INFO UI CMUIManager.mm/1050:ActualState = IsSigningIn DesiredState = BeSignedIn DataAvailable = 0 Showing UI = SigningInViewController
    2014-02-25 17:25:24.382 Lync[2099:3b71618c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-02-25 17:25:24.382 Lync[2099:3b71618c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-02-25 17:25:24.382 Lync[2099:3b71618c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-02-25 17:25:24.382 Lync[2099:3b71618c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-02-25 17:25:24.382 Lync[2099:3b71618c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-02-25 17:25:24.382 Lync[2099:3b71618c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/822:Req. completed, Stopping timer.
    2014-02-25 17:25:24.382 Lync[2099:3b71618c] ERROR APPLICATION CUcwaAutoDiscoveryGetUserUrlOperation.cpp/325:Request failed. Error - E_ConnectionError (E2-2-1)
    2014-02-25 17:25:24.382 Lync[2099:3b71618c] INFO APPLICATION CUcwaAutoDiscoveryGetUserUrlOperation.cpp/224:UcwaAutoDiscoveryGetUserUrlOperation completed with url = https://lyncdiscoverinternal.alnuaimi-group.com/?sipuri=sip:[email protected], userUrl = , status = E_ConnectionError (E2-2-1)
    2014-02-25 17:25:24.383 Lync[2099:3b71618c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/725:Response received for req. GET-UnAuthenticatedGet(0x5cb1c18): E_ConnectionError (E2-2-1) (RemoteNetworkTemporaryError); Done with req.; Stopping resend timer
    2014-02-25 17:25:24.383 Lync[2099:3b71618c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/822:Req. completed, Stopping timer.
    2014-02-25 17:25:24.383 Lync[2099:3b71618c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/610:UrlRedirectAndTrustResolver complete with url = http://lyncdiscoverinternal.alnuaimi-group.com/, Hops = 1, status = E_ConnectionError (E2-2-1)
    2014-02-25 17:25:24.383 Lync[2099:3b71618c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/725:Response received for req. UrlTrustResolver(0x5c5d2a8): E_ConnectionError (E2-2-1) (RemoteNetworkTemporaryError); Done with req.; Stopping resend timer
    2014-02-25 17:25:24.383 Lync[2099:3b71618c] INFO APPLICATION CUcwaAutoDiscoveryGetUserUrlOperation.cpp/393:CUcwaAutoDiscoverGetUserUrlOperation::onEvent received. Status = E_ConnectionError (E2-2-1), url = http://lyncdiscoverinternal.alnuaimi-group.com/
    2014-02-25 17:25:24.383 Lync[2099:3b71618c] INFO APPLICATION CUcwaAutoDiscoveryGetUserUrlOperation.cpp/224:UcwaAutoDiscoveryGetUserUrlOperation completed with url = http://lyncdiscoverinternal.alnuaimi-group.com/?sipuri=sip:[email protected], userUrl = , status = E_ConnectionError (E2-2-1)
    2014-02-25 17:25:24.383 Lync[2099:3b71618c] INFO APPLICATION CUcwaAutoDiscoveryService.cpp/1734:AutoDiscovery: Falling back to probing external urls
    2014-02-25 17:25:24.383 Lync[2099:3b71618c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/77:Starting CUrlRedirectAndTrustResolver with url = https://lyncdiscover.alnuaimi-group.com/?sipuri=sip:[email protected], maxHops = 10
    2014-02-25 17:25:24.384 Lync[2099:3b71618c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/201:CUrlRedirectAndTrustResolver::processUrl called with url = https://lyncdiscover.alnuaimi-group.com/, hopCount = 0, maxHops = 10
    2014-02-25 17:25:24.384 Lync[2099:3b71618c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/610:UrlRedirectAndTrustResolver complete with url = https://lyncdiscover.alnuaimi-group.com/, Hops = 0, status = S_OK (S0-0-0)
    2014-02-25 17:25:24.384 Lync[2099:3b71618c] INFO TRANSPORT CTransportThread.cpp/131:Added Request(UcwaAutoDiscoveryRequest) to Request Processor queue
    2014-02-25 17:25:24.384 Lync[2099:3b71618c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/385:Submitting new req. GET-UnAuthenticatedGet(0x113bad8)
    2014-02-25 17:25:24.384 Lync[2099:734c000] INFO TRANSPORT CTransportThread.cpp/343:Sent Request(UcwaAutoDiscoveryRequest) to Request Processor
    2014-02-25 17:25:24.384 Lync[2099:3b71618c] INFO APPLICATION CUcwaAutoDiscoveryService.cpp/1776:Successfully started the GetUserUrlOperation request for https://lyncdiscover.alnuaimi-group.com/?sipuri=sip:[email protected]
    2014-02-25 17:25:24.384 Lync[2099:734c000] INFO TRANSPORT CCredentialManager.cpp/176:getSpecificCredential for serviceId(4) returning: credType (1) signInName ([email protected]) domain () username ([email protected]) password.empty() (1) certificate.isValid() (0) privateKey.empty() (1) compatibleServiceIds(4)
    2014-02-25 17:25:24.384 Lync[2099:3b71618c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/77:Starting CUrlRedirectAndTrustResolver with url = http://lyncdiscover.alnuaimi-group.com/?sipuri=sip:[email protected], maxHops = 10
    2014-02-25 17:25:24.385 Lync[2099:734c000] INFO TRANSPORT TransportUtilityFunctions.cpp/631:<SentRequest>
    GET https://lyncdiscover.alnuaimi-group.com/?sipuri=sip:[email protected]
    Request Id: 0x113bad8
    HttpHeader:Accept application/vnd.microsoft.rtc.autodiscover+xml;v=1
    </SentRequest>
    2014-02-25 17:25:24.385 Lync[2099:3b71618c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/201:CUrlRedirectAndTrustResolver::processUrl called with url = http://lyncdiscover.alnuaimi-group.com/, hopCount = 0, maxHops = 10
    2014-02-25 17:25:24.385 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/409:Allocating stream 0x101b2d0 for url - https://lyncdiscover.alnuaimi-group.com/ with persistent id as 6
    2014-02-25 17:25:24.385 Lync[2099:3b71618c] INFO TRANSPORT CTransportThread.cpp/131:Added Request(UcwaAutoDiscoveryRequest) to Request Processor queue
    2014-02-25 17:25:24.385 Lync[2099:734c000] VERBOSE TRANSPORT CHttpProxyHelper.cpp/436:CHttpProxyHelper::discoverProxy : No proxy found for url https://lyncdiscover.alnuaimi-group.com/?sipuri=sip:[email protected]. Sending over direct connection.
    2014-02-25 17:25:24.385 Lync[2099:3b71618c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/385:Submitting new req. UrlTrustResolver(0x113bfd8)
    2014-02-25 17:25:24.386 Lync[2099:3b71618c] INFO APPLICATION CUcwaAutoDiscoveryService.cpp/1812:Successfully started the GetUserUrlOperation request for http://lyncdiscover.alnuaimi-group.com/?sipuri=sip:[email protected]
    2014-02-25 17:25:24.387 Lync[2099:734c000] INFO TRANSPORT CTransportThread.cpp/343:Sent Request(UcwaAutoDiscoveryRequest) to Request Processor
    2014-02-25 17:25:24.387 Lync[2099:734c000] INFO TRANSPORT CCredentialManager.cpp/176:getSpecificCredential for serviceId(4) returning: credType (1) signInName ([email protected]) domain () username ([email protected]) password.empty() (1) certificate.isValid() (0) privateKey.empty() (1) compatibleServiceIds(4)
    2014-02-25 17:25:24.388 Lync[2099:734c000] INFO TRANSPORT TransportUtilityFunctions.cpp/631:<SentRequest>
    GET http://lyncdiscover.alnuaimi-group.com/
    Request Id: 0x113bfd8
    HttpHeader:Accept application/vnd.microsoft.rtc.autodiscover+xml;v=1
    </SentRequest>
    2014-02-25 17:25:24.388 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/409:Allocating stream 0x5c90f90 for url - http://lyncdiscover.alnuaimi-group.com/ with persistent id as 7
    2014-02-25 17:25:24.388 Lync[2099:734c000] VERBOSE TRANSPORT CHttpProxyHelper.cpp/436:CHttpProxyHelper::discoverProxy : No proxy found for url http://lyncdiscover.alnuaimi-group.com/. Sending over direct connection.
    2014-02-25 17:25:24.388 Lync[2099:734c000] INFO TRANSPORT CHttpStreamPool.cpp/556:Not setting TLS as the url(http://lyncdiscover.alnuaimi-group.com/) is not https
    2014-02-25 17:25:24.389 Lync[2099:3b71618c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-02-25 17:25:24.390 Lync[2099:3b71618c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-02-25 17:25:24.390 Lync[2099:3b71618c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-02-25 17:25:24.390 Lync[2099:3b71618c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-02-25 17:25:24.390 Lync[2099:3b71618c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-02-25 17:25:24.391 Lync[2099:734c000] ERROR TRANSPORT CHttpConnection.cpp/1024:Request Type = UcwaAutoDiscoveryRequest Error domain = kCFErrorDomainCFNetwork code = 0x2 ErrorDescription = The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.) ErrorFailureReason = ErrorRecoverySuggestion =
    2014-02-25 17:25:24.391 Lync[2099:734c000] ERROR UTILITIES CHttpConnection.cpp/953:GetAddrInfo returned has error 0x1176b40
    2014-02-25 17:25:24.392 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/477:Releasing stream 0x101b2d0.
    2014-02-25 17:25:24.392 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/609:Releasing stream 0x101b2d0.
    2014-02-25 17:25:24.392 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/173:Received response of request(UcwaAutoDiscoveryRequest) with status = 0x22020001
    2014-02-25 17:25:24.392 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/201:Request UcwaAutoDiscoveryRequest resulted in E_ConnectionError (E2-2-1). The retry counter is: 0
    2014-02-25 17:25:24.392 Lync[2099:734c000] INFO TRANSPORT CCredentialManager.cpp/176:getSpecificCredential for serviceId(4) returning: credType (1) signInName ([email protected]) domain () username ([email protected]) password.empty() (1) certificate.isValid() (0) privateKey.empty() (1) compatibleServiceIds(4)
    2014-02-25 17:25:24.394 Lync[2099:734c000] INFO TRANSPORT TransportUtilityFunctions.cpp/631:<SentRequest>
    GET https://lyncdiscover.alnuaimi-group.com/?sipuri=sip:[email protected]
    Request Id: 0x113bad8
    HttpHeader:Accept application/vnd.microsoft.rtc.autodiscover+xml;v=1
    </SentRequest>
    2014-02-25 17:25:24.394 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/409:Allocating stream 0x11b8010 for url - https://lyncdiscover.alnuaimi-group.com/ with persistent id as 6
    2014-02-25 17:25:24.394 Lync[2099:734c000] VERBOSE TRANSPORT CHttpProxyHelper.cpp/436:CHttpProxyHelper::discoverProxy : No proxy found for url https://lyncdiscover.alnuaimi-group.com/?sipuri=sip:[email protected]. Sending over direct connection.
    2014-02-25 17:25:24.395 Lync[2099:734c000] ERROR TRANSPORT CHttpConnection.cpp/1024:Request Type = UcwaAutoDiscoveryRequest Error domain = kCFErrorDomainCFNetwork code = 0x2 ErrorDescription = The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.) ErrorFailureReason = ErrorRecoverySuggestion =
    2014-02-25 17:25:24.395 Lync[2099:734c000] ERROR UTILITIES CHttpConnection.cpp/953:GetAddrInfo returned has error 0x1176b40
    2014-02-25 17:25:24.395 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/477:Releasing stream 0x5c90f90.
    2014-02-25 17:25:24.395 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/609:Releasing stream 0x5c90f90.
    2014-02-25 17:25:24.396 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/173:Received response of request(UcwaAutoDiscoveryRequest) with status = 0x22020001
    2014-02-25 17:25:24.396 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/201:Request UcwaAutoDiscoveryRequest resulted in E_ConnectionError (E2-2-1). The retry counter is: 0
    2014-02-25 17:25:24.396 Lync[2099:734c000] INFO TRANSPORT CCredentialManager.cpp/176:getSpecificCredential for serviceId(4) returning: credType (1) signInName ([email protected]) domain () username ([email protected]) password.empty() (1) certificate.isValid() (0) privateKey.empty() (1) compatibleServiceIds(4)
    2014-02-25 17:25:24.396 Lync[2099:734c000] INFO TRANSPORT TransportUtilityFunctions.cpp/631:<SentRequest>
    GET http://lyncdiscover.alnuaimi-group.com/
    Request Id: 0x113bfd8
    HttpHeader:Accept application/vnd.microsoft.rtc.autodiscover+xml;v=1
    </SentRequest>
    2014-02-25 17:25:24.397 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/409:Allocating stream 0x11ce580 for url - http://lyncdiscover.alnuaimi-group.com/ with persistent id as 7
    2014-02-25 17:25:24.397 Lync[2099:734c000] VERBOSE TRANSPORT CHttpProxyHelper.cpp/436:CHttpProxyHelper::discoverProxy : No proxy found for url http://lyncdiscover.alnuaimi-group.com/. Sending over direct connection.
    2014-02-25 17:25:24.397 Lync[2099:734c000] INFO TRANSPORT CHttpStreamPool.cpp/556:Not setting TLS as the url(http://lyncdiscover.alnuaimi-group.com/) is not https
    2014-02-25 17:25:24.398 Lync[2099:734c000] ERROR TRANSPORT CHttpConnection.cpp/1024:Request Type = UcwaAutoDiscoveryRequest Error domain = kCFErrorDomainCFNetwork code = 0x2 ErrorDescription = The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.) ErrorFailureReason = ErrorRecoverySuggestion =
    2014-02-25 17:25:24.399 Lync[2099:734c000] ERROR UTILITIES CHttpConnection.cpp/953:GetAddrInfo returned has error 0x1176b40
    2014-02-25 17:25:24.399 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/477:Releasing stream 0x11b8010.
    2014-02-25 17:25:24.399 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/609:Releasing stream 0x11b8010.
    2014-02-25 17:25:24.399 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/173:Received response of request(UcwaAutoDiscoveryRequest) with status = 0x22020001
    2014-02-25 17:25:24.399 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/201:Request UcwaAutoDiscoveryRequest resulted in E_ConnectionError (E2-2-1). The retry counter is: 1
    2014-02-25 17:25:24.399 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/266:Sending event to main thread for request(0x113bad8)
    2014-02-25 17:25:24.400 Lync[2099:734c000] ERROR TRANSPORT CHttpConnection.cpp/1024:Request Type = UcwaAutoDiscoveryRequest Error domain = kCFErrorDomainCFNetwork code = 0x2 ErrorDescription = The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.) ErrorFailureReason = ErrorRecoverySuggestion =
    2014-02-25 17:25:24.400 Lync[2099:734c000] ERROR UTILITIES CHttpConnection.cpp/953:GetAddrInfo returned has error 0x1176b40
    2014-02-25 17:25:24.400 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/477:Releasing stream 0x11ce580.
    2014-02-25 17:25:24.400 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/609:Releasing stream 0x11ce580.
    2014-02-25 17:25:24.400 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/173:Received response of request(UcwaAutoDiscoveryRequest) with status = 0x22020001
    2014-02-25 17:25:24.401 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/201:Request UcwaAutoDiscoveryRequest resulted in E_ConnectionError (E2-2-1). The retry counter is: 1
    2014-02-25 17:25:24.401 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/266:Sending event to main thread for request(0x113bfd8)
    2014-02-25 17:25:24.403 Lync[2099:3b71618c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/822:Req. completed, Stopping timer.
    2014-02-25 17:25:24.403 Lync[2099:3b71618c] ERROR APPLICATION CUcwaAutoDiscoveryGetUserUrlOperation.cpp/325:Request failed. Error - E_ConnectionError (E2-2-1)
    2014-02-25 17:25:24.403 Lync[2099:3b71618c] INFO APPLICATION CUcwaAutoDiscoveryGetUserUrlOperation.cpp/224:UcwaAutoDiscoveryGetUserUrlOperation completed with url = https://lyncdiscover.alnuaimi-group.com/?sipuri=sip:[email protected], userUrl = , status = E_ConnectionError (E2-2-1)
    2014-02-25 17:25:24.403 Lync[2099:3b71618c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/725:Response received for req. GET-UnAuthenticatedGet(0x113bad8): E_ConnectionError (E2-2-1) (RemoteNetworkTemporaryError); Done with req.; Stopping resend timer
    2014-02-25 17:25:24.403 Lync[2099:3b71618c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/822:Req. completed, Stopping timer.
    2014-02-25 17:25:24.404 Lync[2099:3b71618c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/610:UrlRedirectAndTrustResolver complete with url = http://lyncdiscover.alnuaimi-group.com/, Hops = 1, status = E_ConnectionError (E2-2-1)
    2014-02-25 17:25:24.404 Lync[2099:3b71618c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/725:Response received for req. UrlTrustResolver(0x113bfd8): E_ConnectionError (E2-2-1) (RemoteNetworkTemporaryError); Done with req.; Stopping resend timer
    2014-02-25 17:25:24.404 Lync[2099:3b71618c] INFO APPLICATION CUcwaAutoDiscoveryGetUserUrlOperation.cpp/393:CUcwaAutoDiscoverGetUserUrlOperation::onEvent received. Status = E_ConnectionError (E2-2-1), url = http://lyncdiscover.alnuaimi-group.com/
    2014-02-25 17:25:24.404 Lync[2099:3b71618c] INFO APPLICATION CUcwaAutoDiscoveryGetUserUrlOperation.cpp/224:UcwaAutoDiscoveryGetUserUrlOperation completed with url = http://lyncdiscover.alnuaimi-group.com/?sipuri=sip:[email protected], userUrl = , status = E_ConnectionError (E2-2-1)
    2014-02-25 17:25:24.404 Lync[2099:3b71618c] INFO APPLICATION CUcwaAutoDiscoveryService.cpp/1247:Raising Autodiscovery event with status E_ConnectionError (E2-2-1) for eventType 0
    2014-02-25 17:25:24.404 Lync[2099:3b71618c] INFO APPLICATION CUcwaAutoDiscoveryServiceRetrialWrapper.cpp/417:Received event for type 0 with status E_ConnectionError (E2-2-1)
    2014-02-25 17:25:24.404 Lync[2099:3b71618c] INFO APPLICATION CUcwaAutoDiscoveryServiceRetrialWrapper.cpp/539:Autodiscovery scheduled retrial timer. Timer 0.000000 seconds
    2014-02-25 17:25:24.404 Lync[2099:3b71618c] INFO APPLICATION CAlertReporter.cpp/64:Alert received! Category 1, Type 201, level 0, error E_ConnectionError (E2-2-1), context '', hasAction=false
    2014-02-25 17:25:24.404 Lync[2099:3b71618c] INFO APPLICATION CAlertReporter.cpp/117:Alert cleared of Category 1, Type 201, cleared 0 alerts
    2014-02-25 17:25:24.405 Lync[2099:3b71618c] INFO APPLICATION CUcwaAutoDiscoveryService.cpp/2126:suspensionState = 2
    2014-02-25 17:25:24.405 Lync[2099:3b71618c] INFO APPLICATION CUcwaAutoDiscoveryService.cpp/2102:adIsEnabled = 1, sipUri = sip:[email protected], m_internalADUrlInput = https://lync.alnuaimi-group.comm_externalADUrlInput = https://lync.alnuaimi-group.com
    2014-02-25 17:25:24.405 Lync[2099:3b71618c] INFO APPLICATION CUcwaAutoDiscoveryService.cpp/1008:Discover UCWA urls for sip:[email protected]
    2014-02-25 17:25:24.405 Lync[2099:3b71618c] INFO TRANSPORT TransportUtilityFunctions.cpp/488:Extracted alnuaimi-group.com from sip:[email protected]
    2014-02-25 17:25:24.405 Lync[2099:3b71618c] INFO APPLICATION CUcwaAutoDiscoveryService.cpp/1066:Starting Lync Discovery with urls http://lyncdiscoverinternal.alnuaimi-group.com/?sipuri=sip:[email protected] and http://lyncdiscover.alnuaimi-group.com/?sipuri=sip:[email protected]
    2014-02-25 17:25:24.405 Lync[2099:3b71618c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/77:Starting CUrlRedirectAndTrustResolver with url = https://lyncdiscoverinternal.alnuaimi-group.com/?sipuri=sip:[email protected], maxHops = 10
    2014-02-25 17:25:24.405 Lync[2099:3b71618c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/201:CUrlRedirectAndTrustResolver::processUrl called with url = https://lyncdiscoverinternal.alnuaimi-group.com/, hopCount = 0, maxHops = 10
    2014-02-25 17:25:24.405 Lync[2099:3b71618c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/610:UrlRedirectAndTrustResolver complete with url = https://lyncdiscoverinternal.alnuaimi-group.com/, Hops = 0, status = S_OK (S0-0-0)
    2014-02-25 17:25:24.406 Lync[2099:3b71618c] INFO TRANSPORT CTransportThread.cpp/131:Added Request(UcwaAutoDiscoveryRequest) to Request Processor queue
    2014-02-25 17:25:24.406 Lync[2099:3b71618c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/385:Submitting new req. GET-UnAuthenticatedGet(0x5c65368)
    2014-02-25 17:25:24.406 Lync[2099:734c000] INFO TRANSPORT CTransportThread.cpp/343:Sent Request(UcwaAutoDiscoveryRequest) to Request Processor
    2014-02-25 17:25:24.406 Lync[2099:3b71618c] INFO APPLICATION CUcwaAutoDiscoveryService.cpp/1915:Successfully started the GetUserUrlOperation request for https://lyncdiscoverinternal.alnuaimi-group.com/?sipuri=sip:[email protected]
    2014-02-25 17:25:24.406 Lync[2099:3b71618c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/77:Starting CUrlRedirectAndTrustResolver with url = http://lyncdiscoverinternal.alnuaimi-group.com/?sipuri=sip:[email protected], maxHops = 10
    2014-02-25 17:25:24.406 Lync[2099:3b71618c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/201:CUrlRedirectAndTrustResolver::processUrl called with url = http://lyncdiscoverinternal.alnuaimi-group.com/, hopCount = 0, maxHops = 10
    2014-02-25 17:25:24.406 Lync[2099:3b71618c] INFO TRANSPORT CTransportThread.cpp/131:Added Request(UcwaAutoDiscoveryRequest) to Request Processor queue
    2014-02-25 17:25:24.406 Lync[2099:3b71618c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/385:Submitting new req. UrlTrustResolver(0x5cf9638)
    2014-02-25 17:25:24.406 Lync[2099:3b71618c] INFO APPLICATION CUcwaAutoDiscoveryService.cpp/1947:Successfully started the GetUserUrlOperation request for http://lyncdiscoverinternal.alnuaimi-group.com/?sipuri=sip:[email protected]
    2014-02-25 17:25:24.407 Lync[2099:3b71618c] INFO APPLICATION CUcwaAutoDiscoveryServiceRetrialWrapper.cpp/539:Autodiscovery scheduled retrial timer. Timer 30.000000 seconds
    2014-02-25 17:25:24.407 Lync[2099:734c000] INFO TRANSPORT CCredentialManager.cpp/176:getSpecificCredential for serviceId(4) returning: credType (1) signInName ([email protected]) domain () username ([email protected]) password.empty() (1) certificate.isValid() (0) privateKey.empty() (1) compatibleServiceIds(4)
    2014-02-25 17:25:24.407 Lync[2099:3b71618c] INFO UI CMAlertViewController.mm/93:ObservableListItem Added event received
    2014-02-25 17:25:24.407 Lync[2099:734c000] INFO TRANSPORT TransportUtilityFunctions.cpp/631:<SentRequest>
    GET https://lyncdiscoverinternal.alnuaimi-group.com/?sipuri=sip:[email protected]
    Request Id: 0x5c65368
    HttpHeader:Accept application/vnd.microsoft.rtc.autodiscover+xml;v=1
    </SentRequest>
    2014-02-25 17:25:24.407 Lync[2099:3b71618c] INFO UI CMAlertViewController.mm/103:showalert is 1
    2014-02-25 17:25:24.407 Lync[2099:3b71618c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-02-25 17:25:24.408 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/409:Allocating stream 0x11f5650 for url - https://lyncdiscoverinternal.alnuaimi-group.com/ with persistent id as 6
    2014-02-25 17:25:24.408 Lync[2099:3b71618c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-02-25 17:25:24.408 Lync[2099:734c000] VERBOSE TRANSPORT CHttpProxyHelper.cpp/436:CHttpProxyHelper::discoverProxy : No proxy found for url https://lyncdiscoverinternal.alnuaimi-group.com/?sipuri=sip:[email protected]. Sending over direct connection.
    2014-02-25 17:25:24.408 Lync[2099:3b71618c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-02-25 17:25:24.408 Lync[2099:3b71618c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-02-25 17:25:24.408 Lync[2099:3b71618c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-02-25 17:25:24.408 Lync[2099:3b71618c] INFO UI CMNotificationManager.mm/705:desired view is alert, size 1
    2014-02-25 17:25:24.408 Lync[2099:3b71618c] INFO UI CMNotificationManager.mm/745:adding the desired view
    2014-02-25 17:25:24.408 Lync[2099:734c000] INFO TRANSPORT CTransportThread.cpp/343:Sent Request(UcwaAutoDiscoveryRequest) to Request Processor
    2014-02-25 17:25:24.409 Lync[2099:734c000] INFO TRANSPORT CCredentialManager.cpp/176:getSpecificCredential for serviceId(4) returning: credType (1) signInName ([email protected]) domain () username ([email protected]) password.empty() (1) certificate.isValid() (0) privateKey.empty() (1) compatibleServiceIds(4)
    2014-02-25 17:25:24.409 Lync[2099:734c000] INFO TRANSPORT TransportUtilityFunctions.cpp/631:<SentRequest>
    GET http://lyncdiscoverinternal.alnuaimi-group.com/
    Request Id: 0x5cf9638
    HttpHeader:Accept application/vnd.microsoft.rtc.autodiscover+xml;v=1
    </SentRequest>
    2014-02-25 17:25:24.409 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/409:Allocating stream 0x1012760 for url - http://lyncdiscoverinternal.alnuaimi-group.com/ with persistent id as 7
    2014-02-25 17:25:24.409 Lync[2099:734c000] VERBOSE TRANSPORT CHttpProxyHelper.cpp/436:CHttpProxyHelper::discoverProxy : No proxy found for url http://lyncdiscoverinternal.alnuaimi-group.com/. Sending over direct connection.
    2014-02-25 17:25:24.409 Lync[2099:734c000] INFO TRANSPORT CHttpStreamPool.cpp/556:Not setting TLS as the url(http://lyncdiscoverinternal.alnuaimi-group.com/) is not https
    2014-02-25 17:25:24.411 Lync[2099:3b71618c] INFO UI CMNotificationManager.mm/480:reposition floating views
    2014-02-25 17:25:24.411 Lync[2099:3b71618c] INFO UI CMAlertViewController.mm/110:showalert is 1
    2014-02-25 17:25:24.411 Lync[2099:3b71618c] INFO UI CMAlertViewController.mm/114:showalert is 0
    2014-02-25 17:25:24.411 Lync[2099:3b71618c] INFO UI CMUIUtil.mm/410:Mapping error code = 0x22020001, context = , type = 201
    2014-02-25 17:25:24.411 Lync[2099:3b71618c] INFO UI CMUIUtil.mm/1713:Mapped error message is 'We can’t connect to the server. Check your network connection and server address, and try again.
    2014-02-25 17:25:24.411 Lync[2099:3b71618c] ERROR UI CMDismissButtonBaseViewController.mm/89:before: view height 45.000000, width 320.000000, x 0.000000, y 20.000000
    2014-02-25 17:25:24.411 Lync[2099:3b71618c] INFO UI CMNotificationManager.mm/1088:viewFrame: origin x 0.000000, origin y 20.000000, height 45.000000, width 320.000000
    2014-02-25 17:25:24.411 Lync[2099:3b71618c] INFO UI CMNotificationManager.mm/1194:resize alert label, origin x 44.000000, origin y 2.000000, height 41.000000, width 232.000000
    2014-02-25 17:25:24.412 Lync[2099:3b71618c] ERROR UI CMDismissButtonBaseViewController.mm/104:after: self.label.frame height 41.000000, width 232.000000, x 44.000000, y 2.000000
    2014-02-25 17:25:24.412 Lync[2099:734c000] ERROR TRANSPORT CHttpConnection.cpp/1024:Request Type = UcwaAutoDiscoveryRequest Error domain = kCFErrorDomainCFNetwork code = 0x2 ErrorDescription = The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.) ErrorFailureReason = ErrorRecoverySuggestion =
    2014-02-25 17:25:24.412 Lync[2099:734c000] ERROR UTILITIES CHttpConnection.cpp/953:GetAddrInfo returned has error 0x1176b40
    2014-02-25 17:25:24.412 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/477:Releasing stream 0x11f5650.
    2014-02-25 17:25:24.412 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/609:Releasing stream 0x11f5650.
    2014-02-25 17:25:24.412 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/173:Received response of request(UcwaAutoDiscoveryRequest) with status = 0x22020001
    2014-02-25 17:25:24.413 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/201:Request UcwaAutoDiscoveryRequest resulted in E_ConnectionError (E2-2-1). The retry counter is: 0
    2014-02-25 17:25:24.413 Lync[2099:734c000] INFO TRANSPORT CCredentialManager.cpp/176:getSpecificCredential for serviceId(4) returning: credType (1) signInName ([email protected]) domain () username ([email protected]) password.empty() (1) certificate.isValid() (0) privateKey.empty() (1) compatibleServiceIds(4)
    2014-02-25 17:25:24.413 Lync[2099:734c000] INFO TRANSPORT TransportUtilityFunctions.cpp/631:<SentRequest>
    GET https://lyncdiscoverinternal.alnuaimi-group.com/?sipuri=sip:[email protected]
    Request Id: 0x5c65368
    HttpHeader:Accept application/vnd.microsoft.rtc.autodiscover+xml;v=1
    </SentRequest>
    2014-02-25 17:25:24.413 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/409:Allocating stream 0x11411a0 for url - https://lyncdiscoverinternal.alnuaimi-group.com/ with persistent id as 6
    2014-02-25 17:25:24.414 Lync[2099:734c000] VERBOSE TRANSPORT CHttpProxyHelper.cpp/436:CHttpProxyHelper::discoverProxy : No proxy found for url https://lyncdiscoverinternal.alnuaimi-group.com/?sipuri=sip:[email protected]. Sending over direct connection.
    2014-02-25 17:25:24.415 Lync[2099:734c000] ERROR TRANSPORT CHttpConnection.cpp/1024:Request Type = UcwaAutoDiscoveryRequest Error domain = kCFErrorDomainCFNetwork code = 0x2 ErrorDescription = The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.) ErrorFailureReason = ErrorRecoverySuggestion =
    2014-02-25 17:25:24.415 Lync[2099:734c000] ERROR UTILITIES CHttpConnection.cpp/953:GetAddrInfo returned has error 0x1176b40
    2014-02-25 17:25:24.415 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/477:Releasing stream 0x1012760.
    2014-02-25 17:25:24.415 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/609:Releasing stream 0x1012760.
    2014-02-25 17:25:24.416 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/173:Received response of request(UcwaAutoDiscoveryRequest) with status = 0x22020001
    2014-02-25 17:25:24.416 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/201:Request UcwaAutoDiscoveryRequest resulted in E_ConnectionError (E2-2-1). The retry counter is: 0
    2014-02-25 17:25:24.416 Lync[2099:734c000] INFO TRANSPORT CCredentialManager.cpp/176:getSpecificCredential for serviceId(4) returning: credType (1) signInName ([email protected]) domain () username ([email protected]) password.empty() (1) certificate.isValid() (0) privateKey.empty() (1) compatibleServiceIds(4)
    2014-02-25 17:25:24.416 Lync[2099:734c000] INFO TRANSPORT TransportUtilityFunctions.cpp/631:<SentRequest>
    GET http://lyncdiscoverinternal.alnuaimi-group.com/
    Request Id: 0x5cf9638
    HttpHeader:Accept application/vnd.microsoft.rtc.autodiscover+xml;v=1
    </SentRequest>
    2014-02-25 17:25:24.417 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/409:Allocating stream 0x11c2490 for url - http://lyncdiscoverinternal.alnuaimi-group.com/ with persistent id as 7
    2014-02-25 17:25:24.417 Lync[2099:734c000] VERBOSE TRANSPORT CHttpProxyHelper.cpp/436:CHttpProxyHelper::discoverProxy : No proxy found for url http://lyncdiscoverinternal.alnuaimi-group.com/. Sending over direct connection.
    2014-02-25 17:25:24.417 Lync[2099:734c000] INFO TRANSPORT CHttpStreamPool.cpp/556:Not setting TLS as the url(http://lyncdiscoverinternal.alnuaimi-group.com/) is not https
    2014-02-25 17:25:24.418 Lync[2099:734c000] ERROR TRANSPORT CHttpConnection.cpp/1024:Request Type = UcwaAutoDiscoveryRequest Error domain = kCFErrorDomainCFNetwork code = 0x2 ErrorDescription = The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.) ErrorFailureReason = ErrorRecoverySuggestion =
    2014-02-25 17:25:24.418 Lync[2099:734c000] ERROR UTILITIES CHttpConnection.cpp/953:GetAddrInfo returned has error 0x1176b40
    2014-02-25 17:25:24.418 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/477:Releasing stream 0x11411a0.
    2014-02-25 17:25:24.418 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/609:Releasing stream 0x11411a0.
    2014-02-25 17:25:24.418 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/173:Received response of request(UcwaAutoDiscoveryRequest) with status = 0x22020001
    2014-02-25 17:25:24.418 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/201:Request UcwaAutoDiscoveryRequest resulted in E_ConnectionError (E2-2-1). The retry counter is: 1
    2014-02-25 17:25:24.419 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/266:Sending event to main thread for request(0x5c65368)
    2014-02-25 17:25:24.419 Lync[2099:3b71618c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/822:Req. completed, Stopping timer.
    2014-02-25 17:25:24.419 Lync[2099:3b71618c] ERROR APPLICATION CUcwaAutoDiscoveryGetUserUrlOperation.cpp/325:Request failed. Error - E_ConnectionError (E2-2-1)
    2014-02-25 17:25:24.419 Lync[2099:3b71618c] INFO APPLICATION CUcwaAutoDiscoveryGetUserUrlOperation.cpp/224:UcwaAutoDiscoveryGetUserUrlOperation completed with url = https://lyncdiscoverinternal.alnuaimi-group.com/?sipuri=sip:[email protected], userUrl = , status = E_ConnectionError (E2-2-1)
    2014-02-25 17:25:24.419 Lync[2099:3b71618c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/725:Response received for req. GET-UnAuthenticatedGet(0x5c65368): E_ConnectionError (E2-2-1) (RemoteNetworkTemporaryError); Done with req.; Stopping resend timer
    2014-02-25 17:25:24.420 Lync[2099:734c000] ERROR TRANSPORT CHttpConnection.cpp/1024:Request Type = UcwaAutoDiscoveryRequest Error domain = kCFErrorDomainCFNetwork code = 0x2 ErrorDescription = The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.) ErrorFailureReason = ErrorRecoverySuggestion =
    2014-02-25 17:25:24.420 Lync[2099:734c000] ERROR UTILITIES CHttpConnection.cpp/953:GetAddrInfo returned has error 0x1176b40
    2014-02-25 17:25:24.420 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/477:Releasing stream 0x11c2490.
    2014-02-25 17:25:24.420 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/609:Releasing stream 0x11c2490.
    2014-02-25 17:25:24.421 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/173:Received response of request(UcwaAutoDiscoveryRequest) with status = 0x22020001
    2014-02-25 17:25:24.421 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/201:Request UcwaAutoDiscoveryRequest resulted in E_ConnectionError (E2-2-1). The retry counter is: 1
    2014-02-25 17:25:24.421 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/266:Sending event to main thread for request(0x5cf9638)
    2014-02-25 17:25:24.421 Lync[2099:3b71618c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/822:Req. completed, Stopping timer.
    2014-02-25 17:25:24.421 Lync[2099:3b71618c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/610:UrlRedirectAndTrustResolver complete with url = http://lyncdiscoverinternal.alnuaimi-group.com/, Hops = 1, status = E_ConnectionError (E2-2-1)
    2014-02-25 17:25:24.421 Lync[2099:3b71618c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/725:Response received for req. UrlTrustResolver(0x5cf9638): E_ConnectionError (E2-2-1) (RemoteNetworkTemporaryError); Done with req.; Stopping resend timer
    2014-02-25 17:25:24.421 Lync[2099:3b71618c] INFO APPLICATION CUcwaAutoDiscoveryGetUserUrlOperation.cpp/393:CUcwaAutoDiscoverGetUserUrlOperation::onEvent received. Status = E_ConnectionError (E2-2-1), url = http://lyncdiscoverinternal.alnuaimi-group.com/
    2014-02-25 17:25:24.421 Lync[2099:3b71618c] INFO APPLICATION CUcwaAutoDiscoveryGetUserUrlOperation.cpp/224:UcwaAutoDiscoveryGetUserUrlOperation completed with url = http://lyncdiscoverinternal.alnuaimi-group.com/?sipuri=sip:[email protected], userUrl = , status = E_ConnectionError (E2-2-1)
    2014-02-25 17:25:24.422 Lync[2099:3b71618c] INFO APPLICATION CUcwaAutoDiscoveryService.cpp/1734:AutoDiscovery: Falling back to probing external urls
    2014-02-25 17:25:24.422 Lync[2099:3b71618c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/77:Starting CUrlRedirectAndTrustResolver with url = https://lyncdiscover.alnuaimi-group.com/?sipuri=sip:[email protected], maxHops = 10
    2014-02-25 17:25:24.422 Lync[2099:3b71618c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/201:CUrlRedirectAndTrustResolver::processUrl called with url = https://lyncdiscover.alnuaimi-group.com/, hopCount = 0, maxHops = 10
    2014-02-25 17:25:24.422 Lync[2099:3b71618c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/610:UrlRedirectAndTrustResolver complete with url = https://lyncdiscover.alnuaimi-group.com/, Hops = 0, status = S_OK (S0-0-0)
    2014-02-25 17:25:24.422 Lync[2099:3b71618c] INFO TRANSPORT CTransportThread.cpp/131:Added Request(UcwaAutoDiscoveryRequest) to Request Processor queue
    2014-02-25 17:25:24.422 Lync[2099:3b71618c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/385:Submitting new req. GET-UnAuthenticatedGet(0x5c65368)
    2014-02-25 17:25:24.422 Lync[2099:3b71618c] INFO APPLICATION CUcwaAutoDiscoveryService.cpp/1776:Successfully started the GetUserUrlOperation request for https://lyncdiscover.alnuaimi-group.com/?sipuri=sip:[email protected]
    2014-02-25 17:25:24.422 Lync[2099:3b71618c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/77:Starting CUrlRedirectAndTrustResolver with url = http://lyncdiscover.alnuaimi-group.com/?sipuri=sip:[email protected], maxHops = 10
    2014-02-25 17:25:24.423 Lync[2099:3b71618c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/201:CUrlRedirectAndTrustResolver::processUrl called with url = http://lyncdiscover.alnuaimi-group.com/, hopCount = 0, maxHops = 10
    2014-02-25 17:25:24.423 Lync[2099:3b71618c] INFO TRANSPORT CTransportThread.cpp/131:Added Request(UcwaAutoDiscoveryRequest) to Request Processor queue
    2014-02-25 17:25:24.423 Lync[2099:3b71618c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/385:Submitting new req. UrlTrustResolver(0x10272b8)
    2014-02-25 17:25:24.423 Lync[2099:734c000] INFO TRANSPORT CTransportThread.cpp/343:Sent Request(UcwaAutoDiscoveryRequest) to Request Processor
    2014-02-25 17:25:24.423 Lync[2099:3b71618c] INFO APPLICATION CUcwaAutoDiscoveryService.cpp/1812:Successfully started the GetUserUrlOperation request for http://lyncdiscover.alnuaimi-group.com/?sipuri=sip:[email protected]
    2014-02-25 17:25:24.423 Lync[2099:734c000] INFO TRANSPORT CCredentialManager.cpp/176:getSpecificCredential for serviceId(4) returning: credType (1) signInName ([email protected]) domain () username ([email protected]) password.empty() (1) certificate.isValid() (0) privateKey.empty() (1) compatibleServiceIds(4)
    2014-02-25 17:25:24.424 Lync[2099:734c000] INFO TRANSPORT TransportUtilityFunctions.cpp/631:<SentRequest>
    GET https://lyncdiscover.alnuaimi-group.com/?sipuri=sip:[email protected]
    Request Id: 0x5c65368
    HttpHeader:Accept application/vnd.microsoft.rtc.autodiscover+xml;v=1
    </SentRequest>
    2014-02-25 17:25:24.424 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/409:Allocating stream 0x10c5380 for url - https://lyncdiscover.alnuaimi-group.com/ with persistent id as 6
    2014-02-25 17:25:24.424 Lync[2099:734c000] VERBOSE TRANSPORT CHttpProxyHelper.cpp/436:CHttpProxyHelper::discoverProxy : No proxy found for url https://lyncdiscover.alnuaimi-group.com/?sipuri=sip:[email protected]. Sending over direct connection.
    2014-02-25 17:25:24.425 Lync[2099:734c000] INFO TRANSPORT CTransportThread.cpp/343:Sent Request(UcwaAutoDiscoveryRequest) to Request Processor
    2014-02-25 17:25:24.425 Lync[2099:734c000] INFO TRANSPORT CCredentialManager.cpp/176:getSpecificCredential for serviceId(4) returning: credType (1) signInName ([email protected]) domain () username ([email protected]) password.empty() (1) certificate.isValid() (0) privateKey.empty() (1) compatibleServiceIds(4)
    2014-02-25 17:25:24.425 Lync[2099:734c000] INFO TRANSPORT TransportUtilityFunctions.cpp/631:<SentRequest>
    GET http://lyncdiscover.alnuaimi-group.com/
    Request Id: 0x10272b8
    HttpHeader:Accept application/vnd.microsoft.rtc.autodiscover+xml;v=1
    </SentRequest>
    2014-02-25 17:25:24.426 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/409:Allocating stream 0x5ce6d70 for url - http://lyncdiscover.alnuaimi-group.com/ with persistent id as 7
    2014-02-25 17:25:24.426 Lync[2099:734c000] VERBOSE TRANSPORT CHttpProxyHelper.cpp/436:CHttpProxyHelper::discoverProxy : No proxy found for url http://lyncdiscover.alnuaimi-group.com/. Sending over direct connection.
    2014-02-25 17:25:24.426 Lync[2099:734c000] INFO TRANSPORT CHttpStreamPool.cpp/556:Not setting TLS as the url(http://lyncdiscover.alnuaimi-group.com/) is not https
    2014-02-25 17:25:24.427 Lync[2099:734c000] ERROR TRANSPORT CHttpConnection.cpp/1024:Request Type = UcwaAutoDiscoveryRequest Error domain = kCFErrorDomainCFNetwork code = 0x2 ErrorDescription = The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.) ErrorFailureReason = ErrorRecoverySuggestion =
    2014-02-25 17:25:24.427 Lync[2099:734c000] ERROR UTILITIES CHttpConnection.cpp/953:GetAddrInfo returned has error 0x1176b40
    2014-02-25 17:25:24.427 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/477:Releasing stream 0x10c5380.
    2014-02-25 17:25:24.427 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/609:Releasing stream 0x10c5380.
    2014-02-25 17:25:24.428 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/173:Received response of request(UcwaAutoDiscoveryRequest) with status = 0x22020001
    2014-02-25 17:25:24.428 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/201:Request UcwaAutoDiscoveryRequest resulted in E_ConnectionError (E2-2-1). The retry counter is: 0
    2014-02-25 17:25:24.428 Lync[2099:734c000] INFO TRANSPORT CCredentialManager.cpp/176:getSpecificCredential for serviceId(4) returning: credType (1) signInName ([email protected]) domain () username ([email protected]) password.empty() (1) certificate.isValid() (0) privateKey.empty() (1) compatibleServiceIds(4)
    2014-02-25 17:25:24.428 Lync[2099:734c000] INFO TRANSPORT TransportUtilityFunctions.cpp/631:<SentRequest>
    GET https://lyncdiscover.alnuaimi-group.com/?sipuri=sip:[email protected]
    Request Id: 0x5c65368
    HttpHeader:Accept application/vnd.microsoft.rtc.autodiscover+xml;v=1
    </SentRequest>
    2014-02-25 17:25:24.428 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/409:Allocating stream 0x1080a00 for url - https://lyncdiscover.alnuaimi-group.com/ with persistent id as 6
    2014-02-25 17:25:24.429 Lync[2099:734c000] VERBOSE TRANSPORT CHttpProxyHelper.cpp/436:CHttpProxyHelper::discoverProxy : No proxy found for url https://lyncdiscover.alnuaimi-group.com/?sipuri=sip:[email protected]. Sending over direct connection.
    2014-02-25 17:25:24.429 Lync[2099:734c000] ERROR TRANSPORT CHttpConnection.cpp/1024:Request Type = UcwaAutoDiscoveryRequest Error domain = kCFErrorDomainCFNetwork code = 0x2 ErrorDescription = The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.) ErrorFailureReason = ErrorRecoverySuggestion =
    2014-02-25 17:25:24.430 Lync[2099:734c000] ERROR UTILITIES CHttpConnection.cpp/953:GetAddrInfo returned has error 0x1176b40
    2014-02-25 17:25:24.430 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/477:Releasing stream 0x5ce6d70.
    2014-02-25 17:25:24.430 Lync[2099:734c000] INFO UTILITIES CHttpStreamPool.cpp/609:Releasing stream 0x5ce6d70.
    2014-02-25 17:25:24.430 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/173:Received response of request(UcwaAutoDiscoveryRequest) with status = 0x22020001
    2014-02-25 17:25:24.430 Lync[2099:734c000] INFO TRANSPORT CHttpRequestProcessor.cpp/201:Request UcwaAutoDiscoveryRequest resulted in E_ConnectionError (E2-2-1). The retry counter is: 0
    2014-02-25 17:25:24.430 Lync[2099:734c000] INFO TRANSPORT CCredentialManager.cpp/176:getSpecificCredential for serviceId(4) returning: credType (1) signInName ([email protected]) domain () username ([email protected]) password.empty() (1) certificate.isValid() (0) privateKey.empty() (1) compatibleServiceIds(4)
    2014-02-25 17:25:24.431 Lync[2099:734c000] INFO TRANSPORT TransportUtilityFunctions.cpp/631:<SentRequest>
    GET http://lyncdiscover.alnuaimi-group.com/
    Request Id: 0x10272b8
    HttpHeader:Accept application/vnd.microsoft.rtc.autodiscover+xml;v=1
    Regards,
    Sihanu N

    Hi,
    How did you set up Reverse Proxy (TMG, IIS ARR or others)?
    Did you have single FE server or an FE pool? For a Front End pool the internal SIP pool FQDN must be different from the internal web services FQDN, because web traffic comes through the hardware load balancer and the internal
    SIP pool traffic travels comes through the DNS load balancer.
    You can troubleshooting with the help below:
    1.  Please browse the following URL:
     http://lyncdiscover.contoso.com/autodiscover/autodiscoverservice.svc/root/domain
    You should receive a prompt to open or save the domain file. The URL mentioned in the domain file must be the external web services URL for the Front End Server or Director pool. If the internal web services URL is returned, the web publishing rule
    is incorrect.
    2. Please try to browse the URL https://lyncexternal. contoso.com/mcx/mcxservice.svc/mex
    You should see https://lyncexternal.contoso.com/Mcx/McxService.svc/WebTicket_Bearer in the browser or the XML SOAP information. This means the web services URL authentication setting is set to negotiate.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

Maybe you are looking for

  • Lost all my backups and TM will not backup.

    I lost all my backups today. I have MacPro with data totalling about 900GB plus a laptop with 170GB on it backing up to a 1.5TB drive. There was about 2 months of backups so I had about 200 GB free on the TM drive. There is no issue with the laptop b

  • Mail failing in new and amazing ways

    Many questions here and many frustrations. Running 10.5.6 1: Starting yesterday whenever I open Mail my Gmail account downloads my recent mail just fine. But any time after that the spinning icon next to the account spins forever and it won't downloa

  • WebUtil Mac Address

    Hello WebUtil is working in my 9i Forms in a perfect way but i can't find in the webutil.pll the function that return the PhysicalComputerName or the MacAddress of the client PC Wainting for your answer ASAP THANKS IN ADVANCE FARAH

  • How to implement two way databinding in windows form c#

    suppose my win form has textboxes, listbox, dropdown, radio button and check box. now i want to bind those control and whenever data will be changes from out side then change should be reflected in control level. how to achieve it in winform. help me

  • Help Windows 7 deployment image

    Hi, I have recently created a custom Windows 7 reference image, I have changed the background, installed programs and configured. I then uploaded to my deployment server (Using server 2012, WDS and MDT 2012) and then deployed to a test machine. Howev