Unable to drop schema-user with AQTables

Hello,
Due to dirty manipulation on a schema (Oracle 9ir2), somes queues tables had been deleted, and others aq$_ tables exist.
I'm not able to drop the user ;-(
Impossible to drop the user, ORA-00604 error occured at recursive SQL level 1 - ORA-24005 must use DBMS_AQADM.DROP_QUEUE_TABLE to drop queues tables.
and using DROP_QUEUE_TABLE return queue_tables does not exist.
Any idea to drop the schema ?
Thanks
Rafael.

Hy
I had a similar problem with 8i and drop user cascade.
Try this:
1) create the same queues in another schema
2) search the 'missing' tables in the new schema
3) rebuild this tables in the corrupted schema (you may use dbastudio to get the DDL)
4) use stop_queue, drop_queue and drop_queue_table to drop
Lars Tetzlaff

Similar Messages

  • Unable to drop database user

    Hi All,
    I am unable to drop database user and getting the folllowing error:
    " must use DBMS_AQADM.DROP_QUEUE_TABLE to drop queue tables "
    I find 3 table with AQ prefix in the schema but unable to drop these table even by using "sys" user.
    Any idea how can I do that ?
    Regards,

    Hi,
    select object_name,object_type from dba_objects where owner='USERNAME' and object_name like '%AQ%';TO drop the queue table, login as the owner and
    exec DBMS_AQADM.DROP_QUEUE_TABLE(queue_table=>'PASTE_THE_OBJECT_NAME_FROM_ABOVE',force =>TRUE);Anand

  • Unable to drop materialized view with corrupted data blocks

    Hi,
    The alert log of our database is giving this message
    Wed Jan 31 05:23:13 2007
    ORACLE Instance mesh (pid = 9) - Error 1578 encountered while recovering transaction (6, 15) on object 13355.
    Wed Jan 31 05:23:13 2007
    Errors in file /u01/app/oracle/admin/mesh/bdump/mesh_smon_4369.trc:
    ORA-01578: ORACLE data block corrupted (file # 5, block # 388260)
    ORA-01110: data file 5: '/u03/oradata/mesh/mview.dbf'
    No one is using this mview still oracle is trying to recover this transaction (6, 15).
    when i tried to drop this mview it gives me this error
    ERROR at line 1:
    ORA-01578: ORACLE data block corrupted (file # 5, block # 388260)
    ORA-01110: data file 5: '/u03/oradata/mesh/mview.dbf'
    ORA-06512: at "SYS.DBMS_SNAPSHOT", line 2255
    ORA-06512: at "SYS.DBMS_SNAPSHOT", line 2461
    ORA-06512: at "SYS.DBMS_SNAPSHOT", line 2430
    ORA-06512: at line 1
    I have tried to fix the corrupted data blocks by using dbms_repair package, but of no use.
    I have marked this block to be skipped by using dbms_repair.skip_block but still unable to drop it.
    Please suggest what should I do?
    Thanks in advance
    Anuj

    You are lucky if only your undesirable MV is affected by theese corrupted blocks. This is an advice to do a complete-super-full-hot-cold-middle backup of ypur database and search for any disk for a "possible replace".
    God save us!

  • Unable to access the objects with out schema as prefix.. can any body help

    Hi,
    i am using 10g.I have one problem like i unable to get the table access with out mention prefix for that table.
    but i created public synonym and gave all grants to all users also. but still i need to mention schema name as prefix otherwise it give the error..
    can any body tell me reason and give me solution.
    ex: owner:eiis table:eiis_wipstock
    connect to: egps schema
    in this position if i try with eiis.wipstock it gives error but if i mention like eiis.wiis_wipstock then its working fine.

    Pl do not spam the forums with duplicate posts - Unable to access the objects with out schema as prefix.. can any body help

  • Export user permissions  - dropping schema

    Hey, i created a new database from an export of the old database.
    So, for the import I need the user on the new db to import the users schema.
    How can I export the user ( with all his roles and permissions) on the old database and import this on the new database before I start the import.
    Reason:
    I need to drop the users schema from time to time. so the user is dropped with dropping the schema.
    Any ideas ?
    Chris

    If you don't know datapump you will find that a bit difficult but it's definitely a thing to consider.
    expdb user/pw consistent=Y
    correct syntax ?
    No Oracle changed the syntax (they reintroduce the syntax in 11.2 to help people but in 10.2 there is only the datapump syntax)
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/dp_export.htm#SUTIL200
    You have to use flashback_time and flashback_scn to replace consistent=y
    Will this export the user the the import will create the user on the new database ?
    Yes it can create the user.
    Whats the syntax for the import ?
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/dp_import.htm
    Notice you can do directly the import without the need of an export, directly with a database link !
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/dp_import.htm#i1007380
    There are restrictions (LONG columns etc.) but it can be interesting.
    The schema already exists, is there a need to delete the schema ?
    Not necessarily but it can make things easier.
    Best regards
    Phil

  • User with read only access on a schema - How?

    Hi all,
    I want to create a user with ready only access to a particular schema. The user should have only 'SELECT' option on all objects of the schema.
    Thanks !

    Ven wrote:
    Hi all,
    I want to create a user with ready only access to a particular schema. The user should have only 'SELECT' option on all objects of the schema.
    Thanks !There is no single command. You have to grant object privelges by object.
    Use sql to write sql
    connect <schema_owner>
    spool doit.sql
    select 'grant select on ' || table_name || 'to <selected_user>;'
    spool off;Probably best if <selected_use> is a role instead of a specific user, then grant the role to whoever.

  • Create user with select privilege only one schema

    can someone tell me how i can create user with select priviliges only one schema.
    i don't want the user to have any select privileges with other schema.
    can someone advise me.
    Thansk

    In general, you would do something like
    CREATE ROLE abc_read_only;
    FOR x IN (SELECT * FROM dba_tables WHERE owner='ABC')
    LOOP
      EXECUTE IMMEDIATE 'GRANT SELECT ON abc.' || x.table_name || ' TO abc_read_only';
    END LOOP;
    CREATE USER your_user ...;
    GRANT abc_read_only TO your_userYou create a role, grant the role SELECT access to all the tables in the ABC schema (you can extend this to grant access to views, functions, etc depending on the requirements), and then grant that role to your user.
    Justin

  • Drop a  user/schema

    Under a user/schema (such as tester), I created tables, indexes, packages, stored procedures, functions, etc.
    1)Now If I issue a statement for dropping the user/schema, in order to delete the user/schema from the system, will those said tables, indexes, packages, stored procedures, functions, etc, be all deleted from the database system, too?
    2)My understanding that the user and the schema are actually the same thing. So to drop the user tester will also drop the schema tester, or vice versa. --Is this statement correct?
    Thanks

    scott,
    It's an eternal question : difference between schema and user.
    You create a user to connect in your db.
    This user, if granted, can read objects from others users;
    If this user, if granted, create any objects (tables, views, etc...), he create a schema. A schema is a set of object for which the user is the owner.
    Also, if you drop a user, you drop all his objects... and so his schema. We don't say that you drop schema, but you drop user, it is a little nuance...
    Nicolas.

  • How to drop schema objects without dropping user in one pass?

    HI,
    I am after some PL/SQL that can drop all the objects that a user has, without dropping the user himself.
    I can write a query that spool SQL to a script to drop all the appropriate objects, but it has to be run multiple times as some things can not be dropped before other objects which may appear later in the script.
    I want a script that developers can run once to drop all their objects.
    Can anyone point me in the right direction?
    Thanks

    Hi,
    but it has to be run multiple times as some things can not be dropped beforeDid you use cascade constraints ?
    select 'drop '||object_type||' '|| object_name||  DECODE(OBJECT_TYPE,'TABLE',' CASCADE CONSTRAINTS;',';')
    from user_objects
    I want a script that developers can run once to drop all their objects.With a PL/SQL, and a loop on user_object.
    But if you drop all objects, why not drop/recreate user ?
    Nicolas.
    Message was edited by:
    N. Gasparotto

  • Systemcopy: problems with different schema users

    Hi,
    I'm working on a systemcopy of an abap system with java addin.  It is an Netweaver 7.01 SR1 installation.
    The oracle version is 10.2.0.4.
    The following problem occoured:
    The source system had the ID P13. Therefore the schema users were SAPP13 and SAPP13DB.
    The traget system has the ID P14. Therefore normally the schema users are SAP14 and SAPP14DB.
    I read oss note 534765 I changed the dbs_ora_schema to the old ABAP schema, and the installtion of the abap went trough.
    But now it stopps in the java part "Run Java migration tool kit".
    The installtion wants to get information from the table SAPP14DB.j2ee_config which is not existent, but the table SAPP13DB.j2ee_config is existent.
    I tried to change the scheme name in the keydb.xml and the inifile.xml in the installtion directory, and restaret the installation, but it still does not work.
    Has anyone an idea how ti solve it?
    Regards
    Ulrike

    Hi Ashish,
    here is the log file runJmt.log:
    com.sap.engine.frame.core.configuration.ConfigurationException: Error occurred d
    uring DB access: cluster_data/dispatcher,
            at com.sap.engine.core.configuration.impl.persistence.rdbms.PersistenceH
    andler.readConfig(PersistenceHandler.java:108)
            at com.sap.engine.core.configuration.impl.cache.CachedConfiguration.<ini
    t>(CachedConfiguration.java:62)
            at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.getCa
    chedConfiguration(ConfigurationCache.java:848)
            at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.getCa
    chedConfiguration(ConfigurationCache.java:882)
            at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.openC
    onfiguration(ConfigurationCache.java:748)
            at com.sap.engine.core.configuration.impl.ConfigurationHandlerImpl.openC
    onfiguration(ConfigurationHandlerImpl.java:734)
            at com.sap.engine.core.configuration.impl.ConfigurationHandlerImpl.openC
    onfiguration(ConfigurationHandlerImpl.java:693)
            at com.sap.sdt.serviceframework630.impl.ClusterDataImpl._getSourceIds0(C
    lusterDataImpl.java:54)
            at com.sap.sdt.serviceframework630.impl.ClusterDataImpl.getDispatcherIds
    (ClusterDataImpl.java:91)
            at com.sap.sdt.serviceframework630.impl.ClusterDataImpl.createIdMapping(
    ClusterDataImpl.java:172)
            at com.sap.sdt.jmt.migrationtool.MigrationToolImport.prepareSwitch(Migra
    tionToolImport.java:1129)
            at com.sap.sdt.jmt.migrationtool.MigrationToolImport.startTool(MigrationToolImport.java:403)
            at com.sap.sdt.jmt.migrationtool.MigrationToolImport.main(MigrationToolImport.java:1561)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:88)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:61)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60)
            at java.lang.reflect.Method.invoke(Method.java:391)
            at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    Caused by: java.sql.SQLException: ORA-00942: table or view does not exist
            at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
            at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:331)
            at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:288)
            at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:745)
            at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:219)
            at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:813)
            at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1049)
            at oracle.jdbc.driver.T4CPreparedStatement.executeMaybeDescribe(T4CPreparedStatement.java:85
    4)
            at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1154)
            at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3
    370)
            at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3415
            at com.sap.sql.jdbc.basic.BasicPreparedStatement.executeQuery(BasicPreparedStatement.java:97
            at com.sap.sql.jdbc.direct.DirectPreparedStatement.executeQuery(DirectPreparedStatement.java
    :281)
            at com.sap.sql.jdbc.direct.DirectPreparedStatement.executeQuery(DirectPreparedStatement.java
    :248)
            at com.sap.engine.core.configuration.impl.persistence.rdbms.DBAccessDefault.getConfiguration
    (DBAccessDefault.java:578)
            at com.sap.engine.core.configuration.impl.persistence.rdbms.PersistenceHandler.readConfig(Pe
    rsistenceHandler.java:102)
            ... 18 more
    com.sap.engine.frame.core.configuration.ConfigurationException: Error occurred during DB access: clu
    ster_data/dispatcher,
            at com.sap.engine.core.configuration.impl.persistence.rdbms.PersistenceHandler.readConfig(Pe
    rsistenceHandler.java:108)
            at com.sap.engine.core.configuration.impl.cache.CachedConfiguration.<init>(CachedConfigurati
    on.java:62)
            at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.getCachedConfiguration(Co
    nfigurationCache.java:848)
            at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.getCachedConfiguration(Co
    nfigurationCache.java:882)
            at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.openConfiguration(Configu
    rationCache.java:748)
            at com.sap.engine.core.configuration.impl.ConfigurationHandlerImpl.openConfiguration(Configu
    rationHandlerImpl.java:734)
            at com.sap.engine.core.configuration.impl.ConfigurationHandlerImpl.openConfiguration(Configu
    rationHandlerImpl.java:693)
            at com.sap.sdt.serviceframework630.impl.ClusterDataImpl._getSourceIds0(ClusterDataImpl.java:
    54)
            at com.sap.sdt.serviceframework630.impl.ClusterDataImpl.getDispatcherIds(ClusterDataImpl.jav
    a:91)
            at com.sap.sdt.serviceframework630.impl.ClusterDataImpl.createIdMapping(ClusterDataImpl.java
    :172)
            at com.sap.sdt.jmt.migrationtool.MigrationToolImport.prepareSwitch(MigrationToolImport.java:
    1129)
            at com.sap.sdt.jmt.migrationtool.MigrationToolImport.startTool(MigrationToolImport.java:403)
            at com.sap.sdt.jmt.migrationtool.MigrationToolImport.main(MigrationToolImport.java:1561)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:88)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:61)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60)
            at java.lang.reflect.Method.invoke(Method.java:391)
            at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    Caused by: java.sql.SQLException: ORA-00942: table or view does not exist
            at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
            at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:331)
            at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:288)
            at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:745)
            at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:219)
            at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:813)
            at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1049)
            at oracle.jdbc.driver.T4CPreparedStatement.executeMaybeDescribe(T4CPreparedStatement.java:85
    4)
            at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1154)
            at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3
    370)
            at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3415
            at com.sap.sql.jdbc.basic.BasicPreparedStatement.executeQuery(BasicPreparedStatement.java:97
            at com.sap.sql.jdbc.direct.DirectPreparedStatement.executeQuery(DirectPreparedStatement.java
    :281)
            at com.sap.sql.jdbc.direct.DirectPreparedStatement.executeQuery(DirectPreparedStatement.java
    :248)
            at com.sap.engine.core.configuration.impl.persistence.rdbms.DBAccessDefault.getConfiguration
    (DBAccessDefault.java:578)
            at com.sap.engine.core.configuration.impl.persistence.rdbms.PersistenceHandler.readConfig(Pe
    rsistenceHandler.java:102)
            ... 18 more
    Error executing Migration Tool Import
    java.lang.IllegalArgumentException
            at com.sap.sdt.serviceframework630.impl.ClusterDataImpl.createBoxNumberMapping(ClusterDataIm
    pl.java:137)
            at com.sap.sdt.serviceframework630.impl.ClusterDataImpl.createIdMapping(ClusterDataImpl.java
    :172)
            at com.sap.sdt.jmt.migrationtool.MigrationToolImport.prepareSwitch(MigrationToolImport.java:
    1129)
            at com.sap.sdt.jmt.migrationtool.MigrationToolImport.startTool(MigrationToolImport.java:403)
            at com.sap.sdt.jmt.migrationtool.MigrationToolImport.main(MigrationToolImport.java:1561)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:88)
            at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:61)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:60)
            at java.lang.reflect.Method.invoke(Method.java:391)
            at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    Additiononal information are int the log file /tmp/sapinst_instdir/NW701/LM/COPY/ORA/SYSTEM/CENTRAL/AS/jmt/
    system.log
    #1.5^H#C00086F783A30000000000150C720C72000482F1A7986410#1269874317354#/System/Database/sql/jdbc/direct##com.sap.sql.jdbc.direct.DirectPreparedStatement#######Thread[main,5,main]##0#0#Error#1#com.sap.sql.jdbc.direct.DirectPreparedStatement#Java#com.sap.sql_0003#com.sap.sql.log.OpenSQLResourceBundle#SQL error occurred on connection : code={0,number,integer}, state="", message="";
    SQL statement is "".#5#942#42000#ORA-00942: table or view does not exist
    #fmgp14:P14:SAPP14DB#SELECT "CPATH","CID","PARENTCID","CACHEMODE","CTYPE" FROM "J2EE_CONFIG" WHERE "PATHHASH" = ?#
    #1.5^H#C00086F783A30000000000160C720C72000482F1A79867F8#1269874317355#/System/Server##com.sap.engine.core.configuration#######Thread[main,5,main]##0#0#Error#1#com.sap.engine.core.configuration#Plain###ORA-00942: table or view does not exist
    Regards
    Ulrike

  • IOS Users with 4/22/2014 client update unable to connect

    Hi all,
    I'm going to provide as much information as I can, but i'm by no means an expert on Lync, but I am the person that installed and configured it for our environment. I have had tickets coming in starting on 4/23 from users
    that have taken the latest iOS client update reporting that they can no longer connect internally (corporate wifi with no firewalls or ACLs blocking connectivity) or externally over Cellular data. Internally, they are getting a message that the server cannot
    be found if they are connected to the corporate wifi network, and lync just sits there trying to connect (Android Clients on over a dozen different models are happy as a clam). Externally, they get a message that the certificate could not be verified. We have
    all the latest server side updates installed as of last night when I took the latest cumulative update and everything else on the edge and front end servers. The certificate that is available externally is a Geosign cert (Wildcard) for our external domain
    name, and we are using a domain signed cert for the internal connectivity on the edge server. Like wise we are using domain signed certs for the internal stuff on the front end server. 
    If you want other information please feel free to ask. Everything was working for all clients until this last software update. Also it doesn't matter if they are on 7.0, 7.1, or 7.1.1 if they updated the Lync client it's broken.

    Here's the log -- Edited to remove domain name, internal domain name, username, etc
    2014-04-24 11:00:01.072 Lync[201:707] INFO UTILITIES /Users/comobuildadmin/icomo/main/src/dev/lyncmobile/platform/tracing/privateIos/CMTrace.mm/174:Version Information 5.4.1485
    date 2014-04-16 05:16:44 +0000
    2014-04-24 11:00:02.197 Lync[201:707] is not a valid email address.
    2014-04-24 11:00:18.234 Lync[201:3b1ce18c] INFO APPLICATION CUcwaDataSynchronizer.cpp/1031:Mode 1 scheduled to timeout in 120sec
    2014-04-24 11:00:18.878 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:18.879 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:18.879 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:18.879 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:18.879 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:18.880 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/705:desired view is alert, size 1
    2014-04-24 11:00:18.880 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/718:desired view is same as the current view
    2014-04-24 11:00:18.880 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/480:reposition floating views
    2014-04-24 11:00:18.880 Lync[201:3b1ce18c] INFO UI CMAlertViewController.mm/110:showalert is 0
    2014-04-24 11:00:18.881 Lync[201:3b1ce18c] INFO UI CMDismissButtonBaseViewController.mm/89:before: view height 45.000000, width 320.000000, x 0.000000, y 64.000000
    2014-04-24 11:00:18.881 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/1088:viewFrame: origin x 0.000000, origin y 64.000000, height 45.000000, width 320.000000
    2014-04-24 11:00:18.881 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/1194:resize alert label, origin x 44.000000, origin y 2.000000, height 41.000000, width 232.000000
    2014-04-24 11:00:18.882 Lync[201:3b1ce18c] INFO UI CMDismissButtonBaseViewController.mm/104:after: self.label.frame height 41.000000, width 232.000000, x 44.000000, y 2.000000
    2014-04-24 11:00:20.845 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:20.846 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:20.846 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:20.846 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:20.846 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:20.847 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/705:desired view is alert, size 1
    2014-04-24 11:00:20.847 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/718:desired view is same as the current view
    2014-04-24 11:00:20.847 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/480:reposition floating views
    2014-04-24 11:00:20.847 Lync[201:3b1ce18c] INFO UI CMAlertViewController.mm/110:showalert is 0
    2014-04-24 11:00:20.848 Lync[201:3b1ce18c] INFO UI CMDismissButtonBaseViewController.mm/89:before: view height 45.000000, width 320.000000, x 0.000000, y 64.000000
    2014-04-24 11:00:20.848 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/1088:viewFrame: origin x 0.000000, origin y 64.000000, height 45.000000, width 320.000000
    2014-04-24 11:00:20.848 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/1194:resize alert label, origin x 44.000000, origin y 2.000000, height 41.000000, width 232.000000
    2014-04-24 11:00:20.849 Lync[201:3b1ce18c] INFO UI CMDismissButtonBaseViewController.mm/104:after: self.label.frame height 41.000000, width 232.000000, x 44.000000, y 2.000000
    2014-04-24 11:00:26.666 Lync[201:3b1ce18c] INFO APPLICATION CApplication.cpp/1824:Initialized the sign in BRB logger
    2014-04-24 11:00:26.666 Lync[201:3b1ce18c] INFO APPLICATION CUcwaAppSession.cpp/434:SignIn. signInAsUserState=0, actualState=0
    2014-04-24 11:00:26.667 Lync[201:3b1ce18c] INFO APPLICATION CUcwaAppSession.cpp/1234:Updating URLs. For Ucwa: discoveredFqdn=, applicationsRelativeUrl=, configuredInternal=, configuredExternal=, loc=0, auto-discovery=1
    2014-04-24 11:00:26.667 Lync[201:3b1ce18c] INFO APPLICATION CUcwaAppSession.cpp/975:CUcwaAppSession canceling all requests
    2014-04-24 11:00:26.668 Lync[201:3b1ce18c] INFO APPLICATION CUcwaAppSession.cpp/674:Sending AutoDiscovery request (in sign-in sequence)
    2014-04-24 11:00:26.694 Lync[201:3b1ce18c] INFO UTILITIES CBasePersistableComponent.cpp/230:Storing 6 out-of-sync components took 8ms
    2014-04-24 11:00:26.694 Lync[201:3b1ce18c] INFO APPLICATION CUcwaAutoDiscoveryServiceRetrialWrapper.cpp/566:Timer cancelled. OnResume = 0
    2014-04-24 11:00:26.694 Lync[201:3b1ce18c] INFO APPLICATION CAlertReporter.cpp/117:Alert cleared of Category 1, Type 201, cleared 1 alerts
    2014-04-24 11:00:26.695 Lync[201:3b1ce18c] INFO APPLICATION CUcwaAutoDiscoveryService.cpp/2142:suspensionState = 2
    2014-04-24 11:00:26.695 Lync[201:3b1ce18c] INFO APPLICATION CUcwaAutoDiscoveryService.cpp/2118:adIsEnabled = 1, sipUri = sip:[email protected], m_internalADUrlInput = m_externalADUrlInput =
    2014-04-24 11:00:26.695 Lync[201:3b1ce18c] INFO APPLICATION CUcwaAutoDiscoveryService.cpp/1008:Discover UCWA urls for sip:[email protected]
    2014-04-24 11:00:26.695 Lync[201:3b1ce18c] INFO TRANSPORT TransportUtilityFunctions.cpp/491:Extracted domain.com from sip:[email protected]
    2014-04-24 11:00:26.696 Lync[201:3b1ce18c] INFO APPLICATION CUcwaAutoDiscoveryService.cpp/1082:Starting Lync Discovery with urls http://lyncdiscoverinternal.domain.com/?sipuri=sip:[email protected] and http://lyncdiscover.domain.com/?sipuri=sip:[email protected]
    2014-04-24 11:00:26.696 Lync[201:3b1ce18c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/77:Starting CUrlRedirectAndTrustResolver with url = https://lyncdiscoverinternal.domain.com/?sipuri=sip:[email protected], maxHops = 10
    2014-04-24 11:00:26.697 Lync[201:3b1ce18c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/201:CUrlRedirectAndTrustResolver::processUrl called with url = https://lyncdiscoverinternal.domain.com/, hopCount = 0, maxHops = 10
    2014-04-24 11:00:26.697 Lync[201:3b1ce18c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/610:UrlRedirectAndTrustResolver complete with url = https://lyncdiscoverinternal.domain.com/, Hops = 0, status = S_OK (S0-0-0)
    2014-04-24 11:00:26.698 Lync[201:3b1ce18c] INFO TRANSPORT CTransportThread.cpp/135:Added Request(UcwaAutoDiscoveryRequest) to Request Processor queue
    2014-04-24 11:00:26.698 Lync[201:3b1ce18c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/385:Submitting new req. GET-UnAuthenticatedGet(0x12dcf58)
    2014-04-24 11:00:26.698 Lync[201:5d09000] INFO TRANSPORT CTransportThread.cpp/347:Sent Request(UcwaAutoDiscoveryRequest) to Request Processor
    2014-04-24 11:00:26.699 Lync[201:3b1ce18c] INFO APPLICATION CUcwaAutoDiscoveryService.cpp/1931:Successfully started the GetUserUrlOperation request for https://lyncdiscoverinternal.domain.com/?sipuri=sip:[email protected]
    2014-04-24 11:00:26.699 Lync[201:5d09000] WARNING TRANSPORT CCredentialManager.cpp/317:CCredentialManager::getSpecificCredential returning NULL credential for serviceId (4) type (1)!
    2014-04-24 11:00:26.700 Lync[201:3b1ce18c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/77:Starting CUrlRedirectAndTrustResolver with url = http://lyncdiscoverinternal.domain.com/?sipuri=sip:[email protected], maxHops = 10
    2014-04-24 11:00:26.700 Lync[201:5d09000] INFO TRANSPORT TransportUtilityFunctions.cpp/634:<SentRequest>
    GET https://lyncdiscoverinternal.domain.com/?sipuri=sip:[email protected]
    Request Id: 0x12dcf58
    HttpHeader:Accept application/vnd.microsoft.rtc.autodiscover+xml;v=1
    </SentRequest>
    2014-04-24 11:00:26.701 Lync[201:3b1ce18c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/201:CUrlRedirectAndTrustResolver::processUrl called with url = http://lyncdiscoverinternal.domain.com/, hopCount = 0, maxHops = 10
    2014-04-24 11:00:26.701 Lync[201:5d09000] INFO UTILITIES CHttpStreamPool.cpp/399:Allocating stream 0x121ff80 for url - https://lyncdiscoverinternal.domain.com/ with persistent id as 6
    2014-04-24 11:00:26.702 Lync[201:3b1ce18c] INFO TRANSPORT CTransportThread.cpp/135:Added Request(UcwaAutoDiscoveryRequest) to Request Processor queue
    2014-04-24 11:00:26.702 Lync[201:5d09000] VERBOSE TRANSPORT CHttpProxyHelper.cpp/435:CHttpProxyHelper::discoverProxy : No proxy found for url https://lyncdiscoverinternal.domain.com/?sipuri=sip:[email protected]. Sending over direct connection.
    2014-04-24 11:00:26.703 Lync[201:3b1ce18c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/385:Submitting new req. UrlTrustResolver(0x5a782a8)
    2014-04-24 11:00:26.703 Lync[201:3b1ce18c] INFO APPLICATION CUcwaAutoDiscoveryService.cpp/1963:Successfully started the GetUserUrlOperation request for http://lyncdiscoverinternal.domain.com/?sipuri=sip:[email protected]
    2014-04-24 11:00:26.703 Lync[201:3b1ce18c] INFO TRANSPORT TransportUtilityFunctions.cpp/491:Extracted domain.com from sip:[email protected]
    2014-04-24 11:00:26.704 Lync[201:3b1ce18c] INFO APPLICATION CUcwaAppSession.cpp/998:CUcwaAppSession::setNewActualState() state=1
    2014-04-24 11:00:26.704 Lync[201:5d09000] INFO TRANSPORT CTransportThread.cpp/347:Sent Request(UcwaAutoDiscoveryRequest) to Request Processor
    2014-04-24 11:00:26.705 Lync[201:3b1ce18c] INFO APPLICATION CApplication.cpp/1858:CUcwaAppSession::signIn() succeeded
    2014-04-24 11:00:26.706 Lync[201:5d09000] WARNING TRANSPORT CCredentialManager.cpp/317:CCredentialManager::getSpecificCredential returning NULL credential for serviceId (4) type (1)!
    2014-04-24 11:00:26.708 Lync[201:5d09000] INFO TRANSPORT TransportUtilityFunctions.cpp/634:<SentRequest>
    GET http://lyncdiscoverinternal.domain.com/
    Request Id: 0x5a782a8
    HttpHeader:Accept application/vnd.microsoft.rtc.autodiscover+xml;v=1
    </SentRequest>
    2014-04-24 11:00:26.709 Lync[201:5d09000] INFO UTILITIES CHttpStreamPool.cpp/399:Allocating stream 0x123bc60 for url - http://lyncdiscoverinternal.domain.com/ with persistent id as 7
    2014-04-24 11:00:26.709 Lync[201:5d09000] VERBOSE TRANSPORT CHttpProxyHelper.cpp/435:CHttpProxyHelper::discoverProxy : No proxy found for url http://lyncdiscoverinternal.domain.com/. Sending over direct connection.
    2014-04-24 11:00:26.710 Lync[201:5d09000] INFO TRANSPORT CHttpStreamPool.cpp/546:Not setting TLS as the url(http://lyncdiscoverinternal.domain.com/) is not https
    2014-04-24 11:00:26.714 Lync[201:5d09000] ERROR TRANSPORT CHttpConnection.cpp/1029:Request Type = UcwaAutoDiscoveryRequest Error domain = kCFErrorDomainCFNetwork code = 0x2 ErrorDescription = The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.) ErrorFailureReason = ErrorRecoverySuggestion =
    2014-04-24 11:00:26.715 Lync[201:5d09000] ERROR UTILITIES CHttpConnection.cpp/958:GetAddrInfo returned error 0x8
    2014-04-24 11:00:26.716 Lync[201:5d09000] INFO UTILITIES CHttpStreamPool.cpp/467:Releasing stream 0x121ff80.
    2014-04-24 11:00:26.716 Lync[201:3b1ce18c] INFO UI CMAlertViewController.mm/99:ObservableListItem Removed event received
    2014-04-24 11:00:26.716 Lync[201:3b1ce18c] INFO UI CMAlertViewController.mm/103:showalert is 1
    2014-04-24 11:00:26.716 Lync[201:5d09000] INFO UTILITIES CHttpStreamPool.cpp/599:Releasing stream 0x121ff80.
    2014-04-24 11:00:26.717 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:26.717 Lync[201:5d09000] INFO TRANSPORT CHttpRequestProcessor.cpp/173:Received response of request(UcwaAutoDiscoveryRequest) with status = 0x22020001
    2014-04-24 11:00:26.717 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:26.717 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:26.718 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:26.718 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:26.718 Lync[201:5d09000] INFO TRANSPORT CHttpRequestProcessor.cpp/201:Request UcwaAutoDiscoveryRequest resulted in E_ConnectionError (E2-2-1). The retry counter is: 0
    2014-04-24 11:00:26.718 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/736:removing the current view
    2014-04-24 11:00:26.719 Lync[201:5d09000] WARNING TRANSPORT CCredentialManager.cpp/317:CCredentialManager::getSpecificCredential returning NULL credential for serviceId (4) type (1)!
    2014-04-24 11:00:26.719 Lync[201:5d09000] INFO TRANSPORT TransportUtilityFunctions.cpp/634:<SentRequest>
    GET https://lyncdiscoverinternal.domain.com/?sipuri=sip:[email protected]
    Request Id: 0x12dcf58
    HttpHeader:Accept application/vnd.microsoft.rtc.autodiscover+xml;v=1
    </SentRequest>
    2014-04-24 11:00:26.719 Lync[201:3b1ce18c] INFO UI CMUIManager.mm/982:UpdateViews
    2014-04-24 11:00:26.720 Lync[201:5d09000] INFO UTILITIES CHttpStreamPool.cpp/399:Allocating stream 0x1310470 for url - https://lyncdiscoverinternal.domain.com/ with persistent id as 6
    2014-04-24 11:00:26.720 Lync[201:3b1ce18c] INFO UI CMUIManager.mm/1050:ActualState = IsSigningIn DesiredState = BeSignedIn DataAvailable = 0 Showing UI = SigningInViewController
    2014-04-24 11:00:26.720 Lync[201:5d09000] VERBOSE TRANSPORT CHttpProxyHelper.cpp/435:CHttpProxyHelper::discoverProxy : No proxy found for url https://lyncdiscoverinternal.domain.com/?sipuri=sip:[email protected]. Sending over direct connection.
    2014-04-24 11:00:26.724 Lync[201:5d09000] ERROR TRANSPORT CHttpConnection.cpp/1029:Request Type = UcwaAutoDiscoveryRequest Error domain = kCFErrorDomainCFNetwork code = 0x2 ErrorDescription = The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.) ErrorFailureReason = ErrorRecoverySuggestion =
    2014-04-24 11:00:26.725 Lync[201:5d09000] ERROR UTILITIES CHttpConnection.cpp/958:GetAddrInfo returned error 0x8
    2014-04-24 11:00:26.725 Lync[201:5d09000] INFO UTILITIES CHttpStreamPool.cpp/467:Releasing stream 0x123bc60.
    2014-04-24 11:00:26.725 Lync[201:5d09000] INFO UTILITIES CHttpStreamPool.cpp/599:Releasing stream 0x123bc60.
    2014-04-24 11:00:26.726 Lync[201:5d09000] INFO TRANSPORT CHttpRequestProcessor.cpp/173:Received response of request(UcwaAutoDiscoveryRequest) with status = 0x22020001
    2014-04-24 11:00:26.726 Lync[201:5d09000] INFO TRANSPORT CHttpRequestProcessor.cpp/201:Request UcwaAutoDiscoveryRequest resulted in E_ConnectionError (E2-2-1). The retry counter is: 0
    2014-04-24 11:00:26.726 Lync[201:5d09000] WARNING TRANSPORT CCredentialManager.cpp/317:CCredentialManager::getSpecificCredential returning NULL credential for serviceId (4) type (1)!
    2014-04-24 11:00:26.727 Lync[201:5d09000] INFO TRANSPORT TransportUtilityFunctions.cpp/634:<SentRequest>
    GET http://lyncdiscoverinternal.domain.com/
    Request Id: 0x5a782a8
    HttpHeader:Accept application/vnd.microsoft.rtc.autodiscover+xml;v=1
    </SentRequest>
    2014-04-24 11:00:26.727 Lync[201:5d09000] INFO UTILITIES CHttpStreamPool.cpp/399:Allocating stream 0x12db430 for url - http://lyncdiscoverinternal.domain.com/ with persistent id as 7
    2014-04-24 11:00:26.727 Lync[201:5d09000] VERBOSE TRANSPORT CHttpProxyHelper.cpp/435:CHttpProxyHelper::discoverProxy : No proxy found for url http://lyncdiscoverinternal.domain.com/. Sending over direct connection.
    2014-04-24 11:00:26.728 Lync[201:5d09000] INFO TRANSPORT CHttpStreamPool.cpp/546:Not setting TLS as the url(http://lyncdiscoverinternal.domain.com/) is not https
    2014-04-24 11:00:26.729 Lync[201:5d09000] ERROR TRANSPORT CHttpConnection.cpp/1029:Request Type = UcwaAutoDiscoveryRequest Error domain = kCFErrorDomainCFNetwork code = 0x2 ErrorDescription = The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.) ErrorFailureReason = ErrorRecoverySuggestion =
    2014-04-24 11:00:26.729 Lync[201:5d09000] ERROR UTILITIES CHttpConnection.cpp/958:GetAddrInfo returned error 0x8
    2014-04-24 11:00:26.730 Lync[201:5d09000] INFO UTILITIES CHttpStreamPool.cpp/467:Releasing stream 0x1310470.
    2014-04-24 11:00:26.731 Lync[201:5d09000] INFO UTILITIES CHttpStreamPool.cpp/599:Releasing stream 0x1310470.
    2014-04-24 11:00:26.731 Lync[201:5d09000] INFO TRANSPORT CHttpRequestProcessor.cpp/173:Received response of request(UcwaAutoDiscoveryRequest) with status = 0x22020001
    2014-04-24 11:00:26.732 Lync[201:5d09000] INFO TRANSPORT CHttpRequestProcessor.cpp/201:Request UcwaAutoDiscoveryRequest resulted in E_ConnectionError (E2-2-1). The retry counter is: 1
    2014-04-24 11:00:26.732 Lync[201:5d09000] INFO TRANSPORT CHttpRequestProcessor.cpp/266:Sending event to main thread for request(0x12dcf58)
    2014-04-24 11:00:26.732 Lync[201:5d09000] ERROR TRANSPORT CHttpConnection.cpp/1029:Request Type = UcwaAutoDiscoveryRequest Error domain = kCFErrorDomainCFNetwork code = 0x2 ErrorDescription = The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 2.) ErrorFailureReason = ErrorRecoverySuggestion =
    2014-04-24 11:00:26.733 Lync[201:5d09000] ERROR UTILITIES CHttpConnection.cpp/958:GetAddrInfo returned error 0x8
    2014-04-24 11:00:26.733 Lync[201:5d09000] INFO UTILITIES CHttpStreamPool.cpp/467:Releasing stream 0x12db430.
    2014-04-24 11:00:26.733 Lync[201:5d09000] INFO UTILITIES CHttpStreamPool.cpp/599:Releasing stream 0x12db430.
    2014-04-24 11:00:26.733 Lync[201:5d09000] INFO TRANSPORT CHttpRequestProcessor.cpp/173:Received response of request(UcwaAutoDiscoveryRequest) with status = 0x22020001
    2014-04-24 11:00:26.733 Lync[201:5d09000] INFO TRANSPORT CHttpRequestProcessor.cpp/201:Request UcwaAutoDiscoveryRequest resulted in E_ConnectionError (E2-2-1). The retry counter is: 1
    2014-04-24 11:00:26.734 Lync[201:5d09000] INFO TRANSPORT CHttpRequestProcessor.cpp/266:Sending event to main thread for request(0x5a782a8)
    2014-04-24 11:00:26.737 Lync[201: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:0x5a5d5d0 UIImageView:0x1331b50.centerX == UILabel:0x5a86090.centerX>",
    "<NSLayoutConstraint:0x132d550 UIView:0x1385110.centerX == UIImageView:0x1331b50.centerX>",
    "<NSLayoutConstraint:0x5a5d250 H:|-(26)-[UILabel:0x5a86090] (Names: '|':UIView:0x1385110 )>",
    "<NSLayoutConstraint:0x133a160 H:[UILabel:0x5a86090]-(25)-| (Names: '|':UIView:0x1385110 )>"
    Will attempt to recover by breaking constraint
    <NSLayoutConstraint:0x5a5d5d0 UIImageView:0x1331b50.centerX == UILabel:0x5a86090.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-04-24 11:00:26.738 Lync[201: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:0x1319860 UIView:0x1385110.centerX == UILabel:0x5a86090.centerX>",
    "<NSLayoutConstraint:0x5a5d250 H:|-(26)-[UILabel:0x5a86090] (Names: '|':UIView:0x1385110 )>",
    "<NSLayoutConstraint:0x133a160 H:[UILabel:0x5a86090]-(25)-| (Names: '|':UIView:0x1385110 )>"
    Will attempt to recover by breaking constraint
    <NSLayoutConstraint:0x1319860 UIView:0x1385110.centerX == UILabel:0x5a86090.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-04-24 11:00:26.740 Lync[201: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:0x13ba490 UILabel:0x5a86090.centerX == UIActivityIndicatorView:0x13f3020.centerX>",
    "<NSLayoutConstraint:0x5a5d250 H:|-(26)-[UILabel:0x5a86090] (Names: '|':UIView:0x1385110 )>",
    "<NSLayoutConstraint:0x133a160 H:[UILabel:0x5a86090]-(25)-| (Names: '|':UIView:0x1385110 )>",
    "<NSLayoutConstraint:0x132fa90 UIView:0x1385110.centerX == UIActivityIndicatorView:0x13f3020.centerX>"
    Will attempt to recover by breaking constraint
    <NSLayoutConstraint:0x13ba490 UILabel:0x5a86090.centerX == UIActivityIndicatorView:0x13f3020.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-04-24 11:00:26.743 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:26.743 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:26.743 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:26.743 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:26.743 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:26.743 Lync[201:3b1ce18c] INFO UI CMAudioUtil.mm/322:stopSound
    2014-04-24 11:00:26.743 Lync[201:3b1ce18c] INFO UI CMAudioUtil.mm/322:stopSound
    2014-04-24 11:00:26.743 Lync[201:3b1ce18c] INFO UI CMAudioUtil.mm/322:stopSound
    2014-04-24 11:00:26.743 Lync[201:3b1ce18c] INFO UI CMAudioVideoToastViewController.mm/961:Cancelling local notification
    2014-04-24 11:00:26.744 Lync[201:3b1ce18c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/822:Req. completed, Stopping timer.
    2014-04-24 11:00:26.744 Lync[201:3b1ce18c] ERROR APPLICATION CUcwaAutoDiscoveryGetUserUrlOperation.cpp/325:Request failed. Error - E_ConnectionError (E2-2-1)
    2014-04-24 11:00:26.744 Lync[201:3b1ce18c] INFO APPLICATION CUcwaAutoDiscoveryGetUserUrlOperation.cpp/224:UcwaAutoDiscoveryGetUserUrlOperation completed with url = https://lyncdiscoverinternal.domain.com/?sipuri=sip:[email protected], userUrl = , status = E_ConnectionError (E2-2-1)
    2014-04-24 11:00:26.744 Lync[201:3b1ce18c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/725:Response received for req. GET-UnAuthenticatedGet(0x12dcf58): E_ConnectionError (E2-2-1) (RemoteNetworkTemporaryError); Done with req.; Stopping resend timer
    2014-04-24 11:00:26.744 Lync[201:3b1ce18c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/822:Req. completed, Stopping timer.
    2014-04-24 11:00:26.745 Lync[201:3b1ce18c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/610:UrlRedirectAndTrustResolver complete with url = http://lyncdiscoverinternal.domain.com/, Hops = 1, status = E_ConnectionError (E2-2-1)
    2014-04-24 11:00:26.745 Lync[201:3b1ce18c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/725:Response received for req. UrlTrustResolver(0x5a782a8): E_ConnectionError (E2-2-1) (RemoteNetworkTemporaryError); Done with req.; Stopping resend timer
    2014-04-24 11:00:26.745 Lync[201:3b1ce18c] INFO APPLICATION CUcwaAutoDiscoveryGetUserUrlOperation.cpp/393:CUcwaAutoDiscoverGetUserUrlOperation::onEvent received. Status = E_ConnectionError (E2-2-1), url = http://lyncdiscoverinternal.domain.com/
    2014-04-24 11:00:26.745 Lync[201:3b1ce18c] INFO APPLICATION CUcwaAutoDiscoveryGetUserUrlOperation.cpp/224:UcwaAutoDiscoveryGetUserUrlOperation completed with url = http://lyncdiscoverinternal.domain.com/?sipuri=sip:[email protected], userUrl = , status = E_ConnectionError (E2-2-1)
    2014-04-24 11:00:26.745 Lync[201:3b1ce18c] INFO APPLICATION CUcwaAutoDiscoveryService.cpp/1750:AutoDiscovery: Falling back to probing external urls
    2014-04-24 11:00:26.745 Lync[201:3b1ce18c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/77:Starting CUrlRedirectAndTrustResolver with url = https://lyncdiscover.domain.com/?sipuri=sip:[email protected], maxHops = 10
    2014-04-24 11:00:26.745 Lync[201:3b1ce18c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/201:CUrlRedirectAndTrustResolver::processUrl called with url = https://lyncdiscover.domain.com/, hopCount = 0, maxHops = 10
    2014-04-24 11:00:26.745 Lync[201:3b1ce18c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/610:UrlRedirectAndTrustResolver complete with url = https://lyncdiscover.domain.com/, Hops = 0, status = S_OK (S0-0-0)
    2014-04-24 11:00:26.746 Lync[201:3b1ce18c] INFO TRANSPORT CTransportThread.cpp/135:Added Request(UcwaAutoDiscoveryRequest) to Request Processor queue
    2014-04-24 11:00:26.746 Lync[201:3b1ce18c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/385:Submitting new req. GET-UnAuthenticatedGet(0x121b0c8)
    2014-04-24 11:00:26.746 Lync[201:5d09000] INFO TRANSPORT CTransportThread.cpp/347:Sent Request(UcwaAutoDiscoveryRequest) to Request Processor
    2014-04-24 11:00:26.746 Lync[201:3b1ce18c] INFO APPLICATION CUcwaAutoDiscoveryService.cpp/1792:Successfully started the GetUserUrlOperation request for https://lyncdiscover.domain.com/?sipuri=sip:[email protected]
    2014-04-24 11:00:26.746 Lync[201:5d09000] WARNING TRANSPORT CCredentialManager.cpp/317:CCredentialManager::getSpecificCredential returning NULL credential for serviceId (4) type (1)!
    2014-04-24 11:00:26.746 Lync[201:3b1ce18c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/77:Starting CUrlRedirectAndTrustResolver with url = http://lyncdiscover.domain.com/?sipuri=sip:[email protected], maxHops = 10
    2014-04-24 11:00:26.746 Lync[201:5d09000] INFO TRANSPORT TransportUtilityFunctions.cpp/634:<SentRequest>
    GET https://lyncdiscover.domain.com/?sipuri=sip:[email protected]
    Request Id: 0x121b0c8
    HttpHeader:Accept application/vnd.microsoft.rtc.autodiscover+xml;v=1
    </SentRequest>
    2014-04-24 11:00:26.747 Lync[201:3b1ce18c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/201:CUrlRedirectAndTrustResolver::processUrl called with url = http://lyncdiscover.domain.com/, hopCount = 0, maxHops = 10
    2014-04-24 11:00:26.747 Lync[201:5d09000] INFO UTILITIES CHttpStreamPool.cpp/399:Allocating stream 0x12f7cb0 for url - https://lyncdiscover.domain.com/ with persistent id as 6
    2014-04-24 11:00:26.747 Lync[201:3b1ce18c] INFO TRANSPORT CTransportThread.cpp/135:Added Request(UcwaAutoDiscoveryRequest) to Request Processor queue
    2014-04-24 11:00:26.747 Lync[201:3b1ce18c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/385:Submitting new req. UrlTrustResolver(0x1319ac8)
    2014-04-24 11:00:26.747 Lync[201:3b1ce18c] INFO APPLICATION CUcwaAutoDiscoveryService.cpp/1828:Successfully started the GetUserUrlOperation request for http://lyncdiscover.domain.com/?sipuri=sip:[email protected]
    2014-04-24 11:00:26.747 Lync[201:5d09000] VERBOSE TRANSPORT CHttpProxyHelper.cpp/435:CHttpProxyHelper::discoverProxy : No proxy found for url https://lyncdiscover.domain.com/?sipuri=sip:[email protected]. Sending over direct connection.
    2014-04-24 11:00:26.749 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:26.750 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:26.750 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:26.750 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:26.750 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:26.752 Lync[201:5d09000] INFO TRANSPORT CTransportThread.cpp/347:Sent Request(UcwaAutoDiscoveryRequest) to Request Processor
    2014-04-24 11:00:26.752 Lync[201:5d09000] WARNING TRANSPORT CCredentialManager.cpp/317:CCredentialManager::getSpecificCredential returning NULL credential for serviceId (4) type (1)!
    2014-04-24 11:00:26.752 Lync[201:5d09000] INFO TRANSPORT TransportUtilityFunctions.cpp/634:<SentRequest>
    GET http://lyncdiscover.domain.com/
    Request Id: 0x1319ac8
    HttpHeader:Accept application/vnd.microsoft.rtc.autodiscover+xml;v=1
    </SentRequest>
    2014-04-24 11:00:26.753 Lync[201:5d09000] INFO UTILITIES CHttpStreamPool.cpp/399:Allocating stream 0x12db430 for url - http://lyncdiscover.domain.com/ with persistent id as 7
    2014-04-24 11:00:26.753 Lync[201:5d09000] VERBOSE TRANSPORT CHttpProxyHelper.cpp/435:CHttpProxyHelper::discoverProxy : No proxy found for url http://lyncdiscover.domain.com/. Sending over direct connection.
    2014-04-24 11:00:26.753 Lync[201:5d09000] INFO TRANSPORT CHttpStreamPool.cpp/546:Not setting TLS as the url(http://lyncdiscover.domain.com/) is not https
    2014-04-24 11:00:28.146 Lync[201:6e0b] CFNetwork SSLHandshake failed (-9807)
    2014-04-24 11:00:28.149 Lync[201:5d09000] ERROR TRANSPORT CHttpConnection.cpp/1029:Request Type = UcwaAutoDiscoveryRequest Error domain = NSOSStatusErrorDomain code = 0xffffd9b1 ErrorDescription = The operation couldn’t be completed. (OSStatus error -9807.) ErrorFailureReason = ErrorRecoverySuggestion =
    2014-04-24 11:00:28.150 Lync[201:5d09000] INFO UTILITIES CHttpStreamPool.cpp/467:Releasing stream 0x12f7cb0.
    2014-04-24 11:00:28.150 Lync[201:5d09000] INFO UTILITIES CHttpStreamPool.cpp/599:Releasing stream 0x12f7cb0.
    2014-04-24 11:00:28.150 Lync[201:5d09000] INFO TRANSPORT CHttpRequestProcessor.cpp/173:Received response of request(UcwaAutoDiscoveryRequest) with status = 0x22020002
    2014-04-24 11:00:28.151 Lync[201:5d09000] INFO TRANSPORT CHttpRequestProcessor.cpp/201:Request UcwaAutoDiscoveryRequest resulted in E_SslError (E2-2-2). The retry counter is: 0
    2014-04-24 11:00:28.151 Lync[201:5d09000] INFO TRANSPORT CHttpRequestProcessor.cpp/266:Sending event to main thread for request(0x121b0c8)
    2014-04-24 11:00:28.151 Lync[201:3b1ce18c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/822:Req. completed, Stopping timer.
    2014-04-24 11:00:28.151 Lync[201:3b1ce18c] ERROR APPLICATION CUcwaAutoDiscoveryGetUserUrlOperation.cpp/325:Request failed. Error - E_SslError (E2-2-2)
    2014-04-24 11:00:28.152 Lync[201:3b1ce18c] INFO APPLICATION CUcwaAutoDiscoveryGetUserUrlOperation.cpp/224:UcwaAutoDiscoveryGetUserUrlOperation completed with url = https://lyncdiscover.domain.com/?sipuri=sip:[email protected], userUrl = , status = E_SslError (E2-2-2)
    2014-04-24 11:00:28.152 Lync[201:3b1ce18c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/725:Response received for req. GET-UnAuthenticatedGet(0x121b0c8): E_SslError (E2-2-2) (RemoteNetworkPermanentError); Done with req.; Stopping resend timer
    2014-04-24 11:00:28.223 Lync[201:5d09000] INFO UTILITIES CHttpConnection.cpp/579:Received kCFStreamEventEndEncountered (UcwaAutoDiscoveryRequest)isHeadersAvailable = true responseHeadersHandle = 1231980
    2014-04-24 11:00:28.224 Lync[201:5d09000] INFO UTILITIES CHttpConnection.cpp/653:Response status = 200 for request UcwaAutoDiscoveryRequest
    2014-04-24 11:00:28.224 Lync[201:5d09000] INFO UTILITIES CHttpStreamPool.cpp/445:Scheduling stream 0x12db430 for release.
    2014-04-24 11:00:28.225 Lync[201:5d09000] INFO TRANSPORT CHttpRequestProcessor.cpp/173:Received response of request(UcwaAutoDiscoveryRequest) with status = 0x0
    2014-04-24 11:00:28.226 Lync[201:5d09000] INFO TRANSPORT TransportUtilityFunctions.cpp/928:<ReceivedResponse>
    GET http://lyncdiscover.domain.com/
    Request Id: 0x1319ac8
    HttpHeader:Cache-Control no-cache
    HttpHeader:Content-Length 1018
    HttpHeader:Content-Type application/vnd.microsoft.rtc.autodiscover+xml; v=1
    HttpHeader:Date Thu, 24 Apr 2014 18:00:28 GMT
    HttpHeader:Expires -1
    HttpHeader:Pragma no-cache
    HttpHeader:Server Microsoft-IIS/7.5
    HttpHeader:StatusCode 200
    HttpHeader:X-AspNet-Version 4.0.30319
    HttpHeader:X-Content-Type-Options nosniff
    HttpHeader:X-MS-Server-Fqdn FMLYNCFE01.internaldomainname.com
    HttpHeader:X-Powered-By ASP.NET
    Ôªø<?xml version="1.0" encoding="utf-8"?><AutodiscoverResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" AccessLocation="External"><Root><Link token="Domain" href="https://lwe.domain.com/Autodiscover/AutodiscoverService.svc/root/domain?originalDomain=domain.com" /><Link token="User" href="https://lwe.domain.com/Autodiscover/AutodiscoverService.svc/root/user?originalDomain=domain.com" /><Link token="Self" href="https://lwe.domain.com/Autodiscover/AutodiscoverService.svc/root?originalDomain=domain.com" /><Link token="OAuth" href="https://lwe.domain.com/Autodiscover/AutodiscoverService.svc/root/oauth/user?originalDomain=domain.com" /><Link token="External/XFrame" href="https://lwe.domain.com/Autodiscover/XFrame/XFrame.html" /><Link token="Internal/XFrame" href="https://lync.internaldomainname.com/Autodiscover/XFrame/XFrame.html" /><Link token="XFrame" href="https://lwe.domain.com/Autodiscover/XFrame/XFrame.html" /></Root></AutodiscoverResponse>
    </ReceivedResponse>
    2014-04-24 11:00:28.228 Lync[201:5d09000] INFO TRANSPORT CUcwaAutoDiscoveryResponse.cpp/119:location value is external
    2014-04-24 11:00:28.229 Lync[201:5d09000] INFO TRANSPORT CUcwaAutoDiscoveryResponse.cpp/195:User url is https://lwe.domain.com/autodiscover/autodiscoverservice.svc/root/user?originaldomain=domain.com
    2014-04-24 11:00:28.230 Lync[201:5d09000] INFO TRANSPORT CHttpRequestProcessor.cpp/266:Sending event to main thread for request(0x1319ac8)
    2014-04-24 11:00:28.230 Lync[201:3b1ce18c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/822:Req. completed, Stopping timer.
    2014-04-24 11:00:28.230 Lync[201:3b1ce18c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/610:UrlRedirectAndTrustResolver complete with url = http://lyncdiscover.domain.com/, Hops = 1, status = S_OK (S0-0-0)
    2014-04-24 11:00:28.231 Lync[201:3b1ce18c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/725:Response received for req. UrlTrustResolver(0x1319ac8): S_OK (S0-0-0) (Success); Done with req.; Stopping resend timer
    2014-04-24 11:00:28.231 Lync[201:3b1ce18c] INFO APPLICATION CUcwaAutoDiscoveryGetUserUrlOperation.cpp/393:CUcwaAutoDiscoverGetUserUrlOperation::onEvent received. Status = S_OK (S0-0-0), url = http://lyncdiscover.domain.com/
    2014-04-24 11:00:28.232 Lync[201:3b1ce18c] INFO APPLICATION CUcwaAutoDiscoveryGetUserUrlOperation.cpp/449:Received a root response
    2014-04-24 11:00:28.232 Lync[201:3b1ce18c] INFO APPLICATION CUcwaAutoDiscoveryGetUserUrlOperation.cpp/456:Running trust check on user url. url = https://lwe.domain.com/autodiscover/autodiscoverservice.svc/root/user?originaldomain=domain.com
    2014-04-24 11:00:28.232 Lync[201:3b1ce18c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/77:Starting CUrlRedirectAndTrustResolver with url = https://lwe.domain.com/autodiscover/autodiscoverservice.svc/root/user?originaldomain=domain.com, maxHops = 1
    2014-04-24 11:00:28.232 Lync[201:3b1ce18c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/201:CUrlRedirectAndTrustResolver::processUrl called with url = https://lwe.domain.com/autodiscover/autodiscoverservice.svc/root/user, hopCount = 0, maxHops = 1
    2014-04-24 11:00:28.233 Lync[201:3b1ce18c] INFO APPLICATION CUrlRedirectAndTrustResolver.cpp/610:UrlRedirectAndTrustResolver complete with url = https://lwe.domain.com/autodiscover/autodiscoverservice.svc/root/user, Hops = 0, status = S_OK (S0-0-0)
    2014-04-24 11:00:28.233 Lync[201:3b1ce18c] INFO APPLICATION CUcwaAutoDiscoveryGetUserUrlOperation.cpp/224:UcwaAutoDiscoveryGetUserUrlOperation completed with url = http://lyncdiscover.domain.com/?sipuri=sip:[email protected], userUrl = https://lwe.domain.com/autodiscover/autodiscoverservice.svc/root/user?originaldomain=domain.com, status = S_OK (S0-0-0)
    2014-04-24 11:00:28.234 Lync[201:3b1ce18c] INFO TRANSPORT CCredentialManager.cpp/176:getSpecificCredential for serviceId(1) returning: credType (1) signInName ([email protected]) domain () username ([email protected]) password.empty() (0) certificate.isValid() (0) privateKey.empty() (1) compatibleServiceIds(1)
    2014-04-24 11:00:28.235 Lync[201:3b1ce18c] INFO TRANSPORT CMetaDataManager.cpp/403:Received a request to get the meta data of type 0 for url https://lwe.domain.com/autodiscover/autodiscoverservice.svc/root/user?originaldomain=domain.com
    2014-04-24 11:00:28.235 Lync[201:3b1ce18c] INFO TRANSPORT CMetaDataManager.cpp/461:Sending Unauthenticated get to get the web-ticket url
    2014-04-24 11:00:28.235 Lync[201:3b1ce18c] INFO TRANSPORT CTransportThread.cpp/135:Added Request() to Request Processor queue
    2014-04-24 11:00:28.235 Lync[201:3b1ce18c] INFO TRANSPORT CAuthenticationResolver.cpp/109:Waiting on Meta Data from https://lwe.domain.com/autodiscover/autodiscoverservice.svc/root/user?originaldomain=domain.com
    2014-04-24 11:00:28.236 Lync[201:5b81000] INFO TRANSPORT CTransportThread.cpp/347:Sent Request() to Request Processor
    2014-04-24 11:00:28.236 Lync[201:3b1ce18c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/385:Submitting new req. GET-AuthenticatedUserGetRequest(0x121eb78)
    2014-04-24 11:00:28.236 Lync[201:5b81000] WARNING TRANSPORT CCredentialManager.cpp/317:CCredentialManager::getSpecificCredential returning NULL credential for serviceId (4) type (1)!
    2014-04-24 11:00:28.237 Lync[201:3b1ce18c] INFO APPLICATION CUcwaAutoDiscoveryService.cpp/1210:Submitting Authenticated AutoDiscovery request to https://lwe.domain.com/autodiscover/autodiscoverservice.svc/root/user?originaldomain=domain.com
    2014-04-24 11:00:28.237 Lync[201:5b81000] INFO TRANSPORT TransportUtilityFunctions.cpp/634:<SentRequest>
    GET https://lwe.domain.com/autodiscover/autodiscoverservice.svc/root/user?originaldomain=domain.com
    Request Id: 0x121ab08
    HttpHeader:Accept
    HttpHeader:X-MS-WebTicket xxxxxxxxxx
    </SentRequest>
    2014-04-24 11:00:28.238 Lync[201:5b81000] INFO UTILITIES CHttpStreamPool.cpp/399:Allocating stream 0x12c0340 for url - https://lwe.domain.com/autodiscover/autodiscoverservice.svc/root/user with persistent id as 16
    2014-04-24 11:00:28.239 Lync[201:5b81000] VERBOSE TRANSPORT CHttpProxyHelper.cpp/435:CHttpProxyHelper::discoverProxy : No proxy found for url https://lwe.domain.com/autodiscover/autodiscoverservice.svc/root/user?originaldomain=domain.com. Sending over direct connection.
    2014-04-24 11:00:28.507 Lync[201:8907] CFNetwork SSLHandshake failed (-9807)
    2014-04-24 11:00:28.510 Lync[201:5b81000] ERROR TRANSPORT CHttpConnection.cpp/1029:Request Type = 0x%u0x121b0c0 Error domain = NSOSStatusErrorDomain code = 0xffffd9b1 ErrorDescription = The operation couldn’t be completed. (OSStatus error -9807.) ErrorFailureReason = ErrorRecoverySuggestion =
    2014-04-24 11:00:28.511 Lync[201:5b81000] INFO UTILITIES CHttpStreamPool.cpp/467:Releasing stream 0x12c0340.
    2014-04-24 11:00:28.511 Lync[201:5b81000] INFO UTILITIES CHttpStreamPool.cpp/599:Releasing stream 0x12c0340.
    2014-04-24 11:00:28.511 Lync[201:5b81000] INFO TRANSPORT CHttpRequestProcessor.cpp/173:Received response of request() with status = 0x22020002
    2014-04-24 11:00:28.511 Lync[201:5b81000] INFO TRANSPORT CHttpRequestProcessor.cpp/201:Request resulted in E_SslError (E2-2-2). The retry counter is: 0
    2014-04-24 11:00:28.512 Lync[201:5b81000] INFO TRANSPORT CHttpRequestProcessor.cpp/266:Sending event to main thread for request(0x121ab08)
    2014-04-24 11:00:28.512 Lync[201:3b1ce18c] INFO TRANSPORT CMetaDataManager.cpp/575:Received response for meta data request of type 60 with status 570556418
    2014-04-24 11:00:28.512 Lync[201:3b1ce18c] ERROR TRANSPORT CMetaDataManager.cpp/591:Unable to get a response to an unauthenticated get to url https://lwe.domain.com/autodiscover/autodiscoverservice.svc/root/user?originaldomain=domain.com
    2014-04-24 11:00:28.512 Lync[201:3b1ce18c] INFO TRANSPORT CAuthenticationResolver.cpp/208:MetaData retrieval for url https://lwe.domain.com/autodiscover/autodiscoverservice.svc/root/user?originaldomain=domain.com completed with status 570556418
    2014-04-24 11:00:28.513 Lync[201:3b1ce18c] INFO TRANSPORT CAuthenticationResolver.cpp/238:Deleting 1 pended Meta data requests for url https://lwe.domain.com/autodiscover/autodiscoverservice.svc/root/user?originaldomain=domain.com
    2014-04-24 11:00:28.513 Lync[201:3b1ce18c] ERROR TRANSPORT CAuthenticationResolver.cpp/334:Unable to get the meta data for server url https://lwe.domain.com/autodiscover/autodiscoverservice.svc/root/user?originaldomain=domain.com
    2014-04-24 11:00:28.513 Lync[201:3b1ce18c] INFO TRANSPORT CAuthenticationResolver.cpp/337:Failing request to the request manager
    2014-04-24 11:00:28.513 Lync[201:3b1ce18c] INFO TRANSPORT CRequestManager.cpp/273:Failing secure request UcwaAutoDiscoveryRequest with status E_SslError (E2-2-2)
    2014-04-24 11:00:28.514 Lync[201:3b1ce18c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/822:Req. completed, Stopping timer.
    2014-04-24 11:00:28.514 Lync[201:3b1ce18c] INFO APPLICATION CUcwaAutoDiscoveryService.cpp/1305:Received autodiscovery response with status E_SslError (E2-2-2)
    2014-04-24 11:00:28.514 Lync[201:3b1ce18c] INFO APPLICATION CUcwaAutoDiscoveryService.cpp/1263:Raising Autodiscovery event with status E_SslError (E2-2-2) for eventType 0
    2014-04-24 11:00:28.514 Lync[201:3b1ce18c] INFO APPLICATION CUcwaAutoDiscoveryServiceRetrialWrapper.cpp/417:Received event for type 0 with status E_SslError (E2-2-2)
    2014-04-24 11:00:28.514 Lync[201:3b1ce18c] INFO APPLICATION CUcwaAutoDiscoveryServiceRetrialWrapper.cpp/496:Raising Autodiscovery event with status E_SslError (E2-2-2) for eventType 0
    2014-04-24 11:00:28.515 Lync[201:3b1ce18c] ERROR APPLICATION CUcwaAppSession.cpp/2071:Auto-discovery failed, aborting sign-in!
    2014-04-24 11:00:28.515 Lync[201:3b1ce18c] INFO APPLICATION CUcwaAppSession.cpp/998:CUcwaAppSession::setNewActualState() state=0
    2014-04-24 11:00:28.515 Lync[201:5d09000] INFO TRANSPORT CHttpRequestProcessor.cpp/134:Clearing request processor for component UcwaAutoDiscoverySession on sign-out.
    2014-04-24 11:00:28.515 Lync[201:3b1ce18c] INFO APPLICATION CCertificateProvisioningService.cpp/541:Clearing certificate from transport: e358e12b-35fa-4603-bd89-bb36523b9675
    2014-04-24 11:00:28.516 Lync[201:5b81000] INFO TRANSPORT CHttpRequestProcessor.cpp/134:Clearing request processor for component MetaDataManager on sign-out.
    2014-04-24 11:00:28.516 Lync[201:5d09000] INFO UTILITIES CHttpStreamPool.cpp/599:Releasing stream 0x12db430.
    2014-04-24 11:00:28.516 Lync[201:3b1ce18c] INFO UTILITIES CiOsAppStateQuery.hxx/264:Clearing keep-alive timer callback
    2014-04-24 11:00:28.517 Lync[201:3b1ce18c] INFO APPLICATION CAlertReporter.cpp/64:Alert received! Category 1, Type 201, level 0, error E_SslError (E2-2-2), context '', hasAction=false
    2014-04-24 11:00:28.517 Lync[201:3b1ce18c] INFO APPLICATION CAlertReporter.cpp/117:Alert cleared of Category 1, Type 201, cleared 0 alerts
    2014-04-24 11:00:28.517 Lync[201:3b1ce18c] INFO APPLICATION CTransportRequestRetrialQueue.cpp/725:Response received for req. GET-AuthenticatedUserGetRequest(0x121eb78): E_SslError (E2-2-2) (RemoteNetworkPermanentError); Done with req.; Stopping resend timer
    2014-04-24 11:00:28.518 Lync[201:3b1ce18c] INFO UI CMUIManager.mm/982:UpdateViews
    2014-04-24 11:00:28.518 Lync[201:3b1ce18c] INFO UI CMUIManager.mm/1050:ActualState = IsSignedOut DesiredState = BeSignedIn DataAvailable = 0 Showing UI = CredentialTableViewController
    2014-04-24 11:00:28.547 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:28.547 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:28.547 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:28.548 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:28.548 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:28.548 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/705:desired view is alert, size 1
    2014-04-24 11:00:28.548 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/745:adding the desired view
    2014-04-24 11:00:28.548 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/480:reposition floating views
    2014-04-24 11:00:28.548 Lync[201:3b1ce18c] INFO UI CMAlertViewController.mm/110:showalert is 1
    2014-04-24 11:00:28.548 Lync[201:3b1ce18c] INFO UI CMAlertViewController.mm/114:showalert is 0
    2014-04-24 11:00:28.548 Lync[201:3b1ce18c] INFO UI CMUIUtil.mm/409:Mapping error code = 0x22020002, context = , type = 201
    2014-04-24 11:00:28.548 Lync[201:3b1ce18c] INFO UI CMUIUtil.mm/1722:Mapped error message is 'We can’t verify the certificate from the server. Please contact your support team.
    2014-04-24 11:00:28.549 Lync[201:3b1ce18c] INFO UI CMDismissButtonBaseViewController.mm/89:before: view height 45.000000, width 320.000000, x 0.000000, y 64.000000
    2014-04-24 11:00:28.549 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/1088:viewFrame: origin x 0.000000, origin y 64.000000, height 45.000000, width 320.000000
    2014-04-24 11:00:28.549 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/1194:resize alert label, origin x 44.000000, origin y 2.000000, height 41.000000, width 232.000000
    2014-04-24 11:00:28.549 Lync[201:3b1ce18c] INFO UI CMDismissButtonBaseViewController.mm/104:after: self.label.frame height 41.000000, width 232.000000, x 44.000000, y 2.000000
    2014-04-24 11:00:28.549 Lync[201:3b1ce18c] INFO UI CMAudioUtil.mm/322:stopSound
    2014-04-24 11:00:28.549 Lync[201:3b1ce18c] INFO UI CMAudioUtil.mm/322:stopSound
    2014-04-24 11:00:28.549 Lync[201:3b1ce18c] INFO UI CMAudioUtil.mm/322:stopSound
    2014-04-24 11:00:28.549 Lync[201:3b1ce18c] INFO UI CMAudioVideoToastViewController.mm/961:Cancelling local notification
    2014-04-24 11:00:28.550 Lync[201:3b1ce18c] INFO UI CMAlertViewController.mm/93:ObservableListItem Added event received
    2014-04-24 11:00:28.550 Lync[201:3b1ce18c] INFO UI CMAlertViewController.mm/103:showalert is 1
    2014-04-24 11:00:28.550 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:28.550 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:28.550 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:28.550 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:28.550 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:28.550 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/705:desired view is alert, size 1
    2014-04-24 11:00:28.550 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/718:desired view is same as the current view
    2014-04-24 11:00:28.550 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/480:reposition floating views
    2014-04-24 11:00:28.550 Lync[201:3b1ce18c] INFO UI CMAlertViewController.mm/110:showalert is 1
    2014-04-24 11:00:28.551 Lync[201:3b1ce18c] INFO UI CMAlertViewController.mm/114:showalert is 0
    2014-04-24 11:00:28.551 Lync[201:3b1ce18c] INFO UI CMUIUtil.mm/409:Mapping error code = 0x22020002, context = , type = 201
    2014-04-24 11:00:28.551 Lync[201:3b1ce18c] INFO UI CMUIUtil.mm/1722:Mapped error message is 'We can’t verify the certificate from the server. Please contact your support team.
    2014-04-24 11:00:28.551 Lync[201:3b1ce18c] INFO UI CMDismissButtonBaseViewController.mm/89:before: view height 45.000000, width 320.000000, x 0.000000, y 64.000000
    2014-04-24 11:00:28.551 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/1088:viewFrame: origin x 0.000000, origin y 64.000000, height 45.000000, width 320.000000
    2014-04-24 11:00:28.551 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/1194:resize alert label, origin x 44.000000, origin y 2.000000, height 41.000000, width 232.000000
    2014-04-24 11:00:28.551 Lync[201:3b1ce18c] INFO UI CMDismissButtonBaseViewController.mm/104:after: self.label.frame height 41.000000, width 232.000000, x 44.000000, y 2.000000
    2014-04-24 11:00:28.558 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:28.559 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:28.559 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:28.559 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:28.559 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:28.559 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/705:desired view is alert, size 1
    2014-04-24 11:00:28.559 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/718:desired view is same as the current view
    2014-04-24 11:00:28.559 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/480:reposition floating views
    2014-04-24 11:00:28.559 Lync[201:3b1ce18c] INFO UI CMAlertViewController.mm/110:showalert is 0
    2014-04-24 11:00:28.559 Lync[201:3b1ce18c] INFO UI CMDismissButtonBaseViewController.mm/89:before: view height 45.000000, width 320.000000, x 0.000000, y 64.000000
    2014-04-24 11:00:28.559 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/1088:viewFrame: origin x 0.000000, origin y 64.000000, height 45.000000, width 320.000000
    2014-04-24 11:00:28.559 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/1194:resize alert label, origin x 44.000000, origin y 2.000000, height 41.000000, width 232.000000
    2014-04-24 11:00:28.560 Lync[201:3b1ce18c] INFO UI CMDismissButtonBaseViewController.mm/104:after: self.label.frame height 41.000000, width 232.000000, x 44.000000, y 2.000000
    2014-04-24 11:00:32.642 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:32.643 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:32.643 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:32.643 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:32.643 Lync[201:3b1ce18c] INFO UI CMConversationCommon.mm/43:not signed in
    2014-04-24 11:00:32.644 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/705:desired view is alert, size 1
    2014-04-24 11:00:32.644 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/718:desired view is same as the current view
    2014-04-24 11:00:32.644 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/480:reposition floating views
    2014-04-24 11:00:32.644 Lync[201:3b1ce18c] INFO UI CMAlertViewController.mm/110:showalert is 0
    2014-04-24 11:00:32.644 Lync[201:3b1ce18c] INFO UI CMDismissButtonBaseViewController.mm/89:before: view height 45.000000, width 320.000000, x 0.000000, y 64.000000
    2014-04-24 11:00:32.645 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/1088:viewFrame: origin x 0.000000, origin y 64.000000, height 45.000000, width 320.000000
    2014-04-24 11:00:32.645 Lync[201:3b1ce18c] INFO UI CMNotificationManager.mm/1194:resize alert label, origin x 44.000000, origin y 2.000000, height 41.000000, width 232.000000
    2014-04-24 11:00:32.645 Lync[201:3b1ce18c] INFO UI CMDismissButtonBaseViewController.mm/104:after: self.label.frame height 41.000000, width 232.000000, x 44.000000, y 2.000000
    2014-04-24 11:00:33.017 Lync[201:3b1ce18c] INFO APPLICATION CUcwaDataSynchronizer.cpp/1031:Mode 1 scheduled to timeout in 120sec
    2014-04-24 11:00:33.092 Lync[201:707] is not a valid email address.

  • Using an NT user with DBA privileges does not permit to create schema : why ?

    Hi,
    I use an Oracle 8 on an Windows NT server.
    I have two NT users with DBA privileges.
    But, when I use the migration workbench to create the oracle schema, my users are not granted.
    Why ?
    Regards.
    Pascal

    Please clarify your problem.
    The workbench creates users (which are visible in the oracle model within the tool) with the password oracle .
    I am not sure if you are asking about accessing the database using your OS user identity, or have you found that the users exist but do not have dba privileges.
    Turloch
    Oracle Migration Workbench Team
    null

  • Unable to delete photos from  my desktop , I get a drop down box with continued blue/ white bars - now 6 hours

    Having dragged 8 photos onto my desktop from iphoto  for the purpose of easy addition to an email , I now find that when I  dragged them to the Trash bin , they fail to delete.
    I get a drop down box with continued blue/ white bars , stating "moving to trash " .
    It's now  6 hours and I cannot stop either. Tried to shut down my computer and reboot but it won't let me . I tried  turning the power off , but the problem remains .
    Any help would be welcome.

    Hey ! 
    I have found the solution myself  !!!
    Go ..... Apple in the toolbar - Force quite - select finder - then relaunch .
    Brilliant

  • Users with read access to the site unable to view Managed Metadata Navigation

    Hi everyone,
    I created a Managed Metadata service and created group, term-set and terms
    I gave read access to users
    I set up navigation to use Managed Navigation
    I am logged in as farm admin and able to view the navigation when i browse site. But user are not seeing navigation.
    One thing i noticed is when i give users full access or designer access to site they will be able to see the navigation. but i don't want to give users full access or designer access to the site.
    How can users with read only access to site can view Managed Metadata Navigation...Please help?

    Hi Sunil,
    Have you given your users permissions to actually read the MMS data from the service application?
    http://technet.microsoft.com/en-us/library/ff625176.aspx covers permissions on the MMS.
    Regards
    Paul.
    <<edit>> On reflection you might be hitting the issue in this Stackexchange post..
    http://sharepoint.stackexchange.com/questions/75636/permissions-and-managed-metadata-in-navigation Is yours behaving the same way?
    Please ensure that you mark a question as Answered once you receive a satisfactory response. This helps people in future when searching and helps prevent the same questions being asked multiple times.

  • Unable to assign all security roles to a user with a new custom security role

    Dear All,
    Happy New Year.!
    I have a query regarding the assignment of Security Roles to new users in CRM. Normally we assign the security roles to new users via an Admin user who has 'System Administrator' security role assigned to him/her. This works perfectly fine, and we can assign
    any desired security role to the new user.
    However, in our case, we need to delegate the user creation rights to some of the client partners. We do not want to give them access to all the Administration functions; hence we created a new Security Role, lets say 'Support User Role'. We have provided
    'Create', 'Append', 'Append To', and 'Assign' rights on 'User' entity for this new security role. With this security role, we are able to create new users now, but we are only able to assign 'Agent' security role, not any other security roles.
    For example, if user 'x' has Security Role defined as 'Support User Role'. If 'x' tries to add a new user 'y', then 'x' is only able to assign 'Agent' security role to 'y', but not any other security role. As per business requirement, 'x' should be able
    to assign some other security roles, including 'Support User Role', to new user 'y'.
    I believe that there is something missing in Security Role configuration, which is causing the above problem. We compared both 'Support User Role' and 'System Administrator' security roles, but not able to figure out which minimum rights we can provide to
    'Support User Role' so that users with this security role can only add new users (with any security role), and that they are not having access on any other Administration features as well.
    Appreciate any help that you can provide on the above issue.
    Thanks in anticipation.

    Hi,
    Can you check if you have organization level Read access for Securitity Role and Organization level Assign access for Security role.
    Refer:-
    http://www.magnetismsolutions.com/blog/paulnieuwelaar/2013/04/22/permissions-required-to-manage-roles-in-dynamics-crm-2011
    Hope this helps!!!
    Thanks,
    Prasad
    Make sure to "Vote as Helpful" and "Mark As Answer",if you get answer of your question

Maybe you are looking for