VO row seen even after rollback

Hello,
I have a search page and table below, listing search results. Result table also has "Create Entity" button, when user clicks on this button, user is
taken to create entity page, whose processRequest does following (after doing standard checks).
    public void createSupplier() {
        OAViewObject vo = (OAViewObject)getXxIfmsSupplierVO();
        if(!vo.isPreparedForExecution()) {
            vo.executeQuery();
        Row row = vo.createRow();
        vo.insertRow(row);
        row.setNewRowState(Row.STATUS_INITIALIZED);
    }If on this page, user clicks on Cancel button following AM method gets called and user is redirected back to search page.
    public void rollbackSupplier() {
        if(this.getTransaction().isDirty()) {
            this.getTransaction().rollback();
    }Entity Id is auto-generated and is read-only.
Problem I am facing is as follows.
- User click on "Create Entity" button and create entity page is shown
- On this page, user sees auto-generated entity-id
- Now without entering any other values, user clicks on Cancel button and is taken back to search page, but row for the entity whose creation was cancelled is also seen in result-table.
- This new row is not seen in the db.
What can be wrong here?
regards, Yora

While going back to main page you are using "this.getTransaction().rollback();". i.e. any DML operation performed will be rolled back.
But when you enterd this page you have created a new row using "Row row = vo.createRow(); vo.insertRow(row);". You did not remove this row. Using "row.remove()" remove the empty row and check.
-Anand

Similar Messages

  • The row was not found at the Subscriber error keeps popup and stopped synchronization even after inserting missing record at subscriber - transcational replication.

    The row was not found at the Subscriber error keeps popup and stopped synchronization even after inserting missing record at subscriber - transcational replication.
    first error throws: Grab exact sequence number, find row and inserted at subscriber...
    Start synchronizing, ran fine for a while, stopped again with error with different exact sequence number, repeat again same as step 1.......
    how can we stop this and make it run without this error?
    Please advise!!!

    Hi,
    This means that your database is out of sync. You can use the continue on data consistency error profile to skip errors. However, Microsoft recommends that you use -SkipErrors parameter cautiously and only when you have a good understanding of the following:
    What the error indicates.
    Why the error occurs.
    Why it is better to skip the error instead of solving it.
    If you do not know the answers to these items, inappropriate use of the
    -SkipErrors parameter may cause data inconsistency between the Publisher and Subscriber. This article describes some problems that can occur when you incorrectly use the
    -SkipErrors parameter.
    Use the "-SkipErrors" parameter in Distribution Agent cautiously
    http://support.microsoft.com/kb/327817/en-us
    Here are two similar threads you may refer to:
    http://social.technet.microsoft.com/Forums/en-US/af531f69-6caf-4dd7-af74-fd6ebe7418da/sqlserver-replication-error-the-row-was-not-found-at-the-subscriber-when-applying-the-replicated
    http://social.technet.microsoft.com/Forums/en-US/f48c2592-bad7-44ea-bc6d-7eb99b2348a1/the-row-was-not-found-at-the-subscriber-when-applying-the-replicated-command
    Thanks.
    Tracy Cai
    TechNet Community Support

  • Index is not getting picked even after providing hint

    Hi All
    The index pk_sku is not getting picked even after providing the hints when executing the query.Please kindly give me such recommendations.I am providing the information.
    select  * from
    (select /*+ index(s pk_sku) */
          to_char(t.dstamp, 'YYYYmmDDHH24MI') as sort_1,
          t.client_id as CLIENT_ID ,
          t.site_id as SITE_ID,
          tz.time_zone_name as TIME_ZONE_NAME     ,
          t.owner_id as OWNER_ID,
          t.sku_id as SKU_ID,
          t.reason_id as ADJUST_TYPE,
          to_char(t.dstamp+tz.diff/24, 'DD/mm/YYYY HH24:MI') as ADJUST_DATETIME,
          t.reference_id as RECEIPT_ID,
          t.batch_id as BATCH_ID,
          t.update_qty as UPDATE_QTY,
          t.lock_code as LOCK_CODE,
          s.description as SKU_DESCRIPTION
    from  mv_inventory_transaction t
          JOIN timezone tz ON tz.site_id = t.site_id ,
           mv_sku s
    where   t.sku_id= s.sku_id
    and     t.client_id=s.client_id
    and   ( :client is null or :client = t.client_id)
    and    ( :site is null or t.site_id  in (:site))
    and    ( :owner is null or t.owner_id in (:owner))
    and    t.code= 'Adjustment'
    and   (t.dstamp+tz.diff/24) between  to_date(:dateFrom, 'DD/mm/yyyy') and to_date(:dateTo,'DD/mm/yyyy')+1
    and      (:sku is null or t.sku_id in (:sku))
    UNION ALL
    (select  /*+ index(s pk_sku) */
         to_char(t.dstamp, 'YYYYmmDDHH24MI') as sort_1,
        t.client_id as CLIENT_ID ,
          t.site_id as SITE_ID,
                          tz.time_zone_name as TIME_ZONE_NAME     ,
          t.owner_id as OWNER_ID,
          t.sku_id as SKU_ID,
          t.reason_id as ADJUST_TYPE,
          to_char(t.dstamp+tz.diff/24, 'DD/mm/YYYY HH24:MI') as ADJUST_DATETIME,
          t.reference_id as RECEIPT_ID,
          t.batch_id as BATCH_ID,
          t.update_qty as UPDATE_QTY,
          t.lock_code as LOCK_CODE,
          s.description as SKU_DESCRIPTION
    from  mv_inventory_transaction_arch t
          JOIN timezone tz ON tz.site_id = t.site_id,
           mv_sku s
    where   t.sku_id= s.sku_id
    and     t.client_id=s.client_id
    and   ( :client is null or :client = t.client_id)
    and    ( :site is null or t.site_id  in (:site))
    and    ( :owner is null or t.owner_id in (:owner))
    and    t.code= 'Adjustment'
    and   (t.dstamp+tz.diff/24) between  to_date(:dateFrom, 'DD/mm/yyyy') and to_date(:dateTo,'DD/mm/yyyy')+1
    and      (:sku is null or t.sku_id in (:sku))
    order by sort_1,2,3,4,5
    version = Release 10.1.0.5.0
    SQL> sho parameter optimizer
    NAME                                 TYPE        VALUE
    optimizer_dynamic_sampling           integer     2
    optimizer_features_enable            string      10.1.0.5
    optimizer_index_caching              integer     0
    optimizer_index_cost_adj             integer     100
    optimizer_mode                       string      ALL_ROWS
    sho parameter db_file_multiblock_count_read
    sho parameter cursor_sharing
    SQL> sho parameter optimizer
    NAME                                 TYPE        VALUE
    optimizer_dynamic_sampling           integer     2
    optimizer_features_enable            string      10.1.0.5
    optimizer_index_caching              integer     0
    optimizer_index_cost_adj             integer     100
    optimizer_mode                       string      ALL_ROWS
    SQL>  sho parameter db_file_multi
    NAME                                 TYPE        VALUE
    db_file_multiblock_read_count        integer     16
    SQL> sho parameter cursor_sharing
    NAME                                 TYPE        VALUE
    cursor_sharing                       string      EXACTExplain plan
    | Id  | Operation                              | Name                          | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT                       |                               |    56 | 29736 |   345K  (1)| 01:09:07 |
    |   1 |  SORT ORDER BY                         |                               |    56 | 29736 |   345K  (1)| 01:09:07 |
    |   2 |   VIEW                                 |                               |    56 | 29736 |   345K  (1)| 01:09:07 |
    |   3 |    UNION-ALL                           |                               |       |       |            |          |
    |   4 |     NESTED LOOPS                       |                               |     2 |   984 | 29686   (1)| 00:05:57 |
    |   5 |      HASH JOIN                         |                               |     1 |   326 | 26870   (1)| 00:05:23 |
    |   6 |       TABLE ACCESS FULL                | TIMEZONE                      |     4 |    88 |     3   (0)| 00:00:01 |
    |   7 |       VIEW                             | MV_INVENTORY_TRANSACTION      |    25 |  7600 | 26866   (1)| 00:05:23 |
    |   8 |        UNION-ALL                       |                               |       |       |            |          |
    |   9 |         FILTER                         |                               |       |       |            |          |
    |  10 |          MAT_VIEW ACCESS BY INDEX ROWID| MV_INVENTORY_TRANSACTION      |     1 |    67 | 24327   (1)| 00:04:52 |
    |  11 |           INDEX RANGE SCAN             | IDX_CODE_CLIENTID_690         | 79681 |       |   518   (1)| 00:00:07 |
    |  12 |         FILTER                         |                               |       |       |            |          |
    |  13 |          MAT_VIEW ACCESS BY INDEX ROWID| MV_INVENTORY_TRANSACTION      |    24 |  2328 |  2539   (1)| 00:00:31 |
    |  14 |           INDEX RANGE SCAN             | IDX_CODE_646                  |  9269 |       |    46   (0)| 00:00:01 |
    |  15 |      VIEW                              | MV_SKU                        |    37 |  6142 |  2816   (1)| 00:00:34 |
    |  16 |       UNION-ALL                        |                               |       |       |            |          |
    |  17 |        MAT_VIEW ACCESS FULL            | MV_SKU                        |   335K|    10M|  2535   (1)| 00:00:31 |
    |  18 |        MAT_VIEW ACCESS FULL            | MV_SKU                        | 37839 |  1699K|   280   (1)| 00:00:04 |
    |  19 |     NESTED LOOPS                       |                               |    54 | 26568 |   315K  (1)| 01:03:10 |
    |  20 |      HASH JOIN                         |                               |     1 |   326 |   313K  (1)| 01:02:37 |
    |  21 |       TABLE ACCESS FULL                | TIMEZONE                      |     4 |    88 |     3   (0)| 00:00:01 |
    |  22 |       VIEW                             | MV_INVENTORY_TRANSACTION_ARCH |   576 |   171K|   313K  (1)| 01:02:37 |
    |  23 |        UNION-ALL                       |                               |       |       |            |          |
    |  24 |         FILTER                         |                               |       |       |            |          |
    |  25 |          MAT_VIEW ACCESS BY INDEX ROWID| MV_INVENTORY_TRANSACTION_ARCH |     1 |    72 | 19258   (1)| 00:03:52 |
    |  26 |           INDEX RANGE SCAN             | QUI_IDX_INVTRANS_ARC1         | 36016 |       |   287   (1)| 00:00:04 |
    |  27 |         FILTER                         |                               |       |       |            |          |
    |  28 |          MAT_VIEW ACCESS BY INDEX ROWID| MV_INVENTORY_TRANSACTION_ARCH |   575 | 55200 |   293K  (1)| 00:58:45 |
    |  29 |           INDEX RANGE SCAN             | QUI_IDX_INVTRANS_ARC1         |   367K|       |  3466   (1)| 00:00:42 |
    |  30 |      VIEW                              | MV_SKU                        |    37 |  6142 |  2816   (1)| 00:00:34 |
    |  31 |       UNION-ALL                        |                               |       |       |            |          |
    |  32 |        MAT_VIEW ACCESS FULL            | MV_SKU                        |   335K|    10M|  2535   (1)| 00:00:31 |
    |  33 |        MAT_VIEW ACCESS FULL            | MV_SKU                        | 37839 |  1699K|   280   (1)| 00:00:04 |
    ------------------------------------------------------------------------------------------------------------------------when put in sql tuning advisor,It recommended with better plan using indexes
    | Id  | Operation                              | Name                          | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT                       |                               |    56 | 29736 |   340K  (1)| 01:08:01 |
    |   1 |  SORT ORDER BY                         |                               |    56 | 29736 |   340K  (1)| 01:08:01 |
    |   2 |   VIEW                                 |                               |    56 | 29736 |   340K  (1)| 01:08:01 |
    |   3 |    UNION-ALL                           |                               |       |       |            |          |
    |   4 |     NESTED LOOPS                       |                               |     2 |   848 | 26900   (1)| 00:05:23 |
    |   5 |      HASH JOIN                         |                               |     1 |   326 | 26898   (1)| 00:05:23 |
    |   6 |       TABLE ACCESS FULL                | TIMEZONE                      |     4 |    88 |     3   (0)| 00:00:01 |
    |   7 |       VIEW                             | MV_INVENTORY_TRANSACTION      |    25 |  7600 | 26894   (1)| 00:05:23 |
    |   8 |        UNION-ALL                       |                               |       |       |            |          |
    |   9 |         FILTER                         |                               |       |       |            |          |
    |  10 |          MAT_VIEW ACCESS BY INDEX ROWID| MV_INVENTORY_TRANSACTION      |     1 |    67 | 24352   (1)| 00:04:53 |
    |  11 |           INDEX RANGE SCAN             | IDX_CODE_CLIENTID_690         | 79681 |       |   518   (1)| 00:00:07 |
    |  12 |         FILTER                         |                               |       |       |            |          |
    |  13 |          MAT_VIEW ACCESS BY INDEX ROWID| MV_INVENTORY_TRANSACTION      |    24 |  2328 |  2542   (1)| 00:00:31 |
    |  14 |           INDEX RANGE SCAN             | IDX_CODE_646                  |  9269 |       |    46   (0)| 00:00:01 |
    |  15 |      VIEW                              | MV_SKU                        |    37 |  3626 |     2   (0)| 00:00:01 |
    |  16 |       UNION-ALL PARTITION              |                               |       |       |            |          |
    |  17 |        MAT_VIEW ACCESS BY INDEX ROWID  | MV_SKU                        |     1 |    34 |     3   (0)| 00:00:01 |
    |  18 |         INDEX UNIQUE SCAN              | PK_SKU                        |     1 |       |     2   (0)| 00:00:01 |
    |  19 |        MAT_VIEW ACCESS BY INDEX ROWID  | MV_SKU                        |     1 |    46 |     2   (0)| 00:00:01 |
    |  20 |         INDEX UNIQUE SCAN              | PK_SKU                        |     1 |       |     1   (0)| 00:00:01 |
    |  21 |     NESTED LOOPS                       |                               |    54 | 22896 |   313K  (1)| 01:02:38 |
    |  22 |      HASH JOIN                         |                               |     1 |   326 |   313K  (1)| 01:02:38 |
    |  23 |       TABLE ACCESS FULL                | TIMEZONE                      |     4 |    88 |     3   (0)| 00:00:01 |
    |  24 |       VIEW                             | MV_INVENTORY_TRANSACTION_ARCH |   576 |   171K|   313K  (1)| 01:02:38 |
    |  25 |        UNION-ALL                       |                               |       |       |            |          |
    |  26 |         FILTER                         |                               |       |       |            |          |
    |  27 |          MAT_VIEW ACCESS BY INDEX ROWID| MV_INVENTORY_TRANSACTION_ARCH |     1 |    72 | 19269   (1)| 00:03:52 |
    |  28 |           INDEX RANGE SCAN             | QUI_IDX_INVTRANS_ARC1         | 36016 |       |   287   (1)| 00:00:04 |
    |  29 |         FILTER                         |                               |       |       |            |          |
    |  30 |          MAT_VIEW ACCESS BY INDEX ROWID| MV_INVENTORY_TRANSACTION_ARCH |   575 | 55200 |   293K  (1)| 00:58:47 |
    |  31 |           INDEX RANGE SCAN             | QUI_IDX_INVTRANS_ARC1         |   367K|       |  3466   (1)| 00:00:42 |
    |  32 |      VIEW                              | MV_SKU                        |    37 |  3626 |     2   (0)| 00:00:01 |
    |  33 |       UNION-ALL PARTITION              |                               |       |       |            |          |
    |  34 |        MAT_VIEW ACCESS BY INDEX ROWID  | MV_SKU                        |     1 |    34 |     3   (0)| 00:00:01 |
    |  35 |         INDEX UNIQUE SCAN              | PK_SKU                        |     1 |       |     2   (0)| 00:00:01 |
    |  36 |        MAT_VIEW ACCESS BY INDEX ROWID  | MV_SKU                        |     1 |    46 |     2   (0)| 00:00:01 |
    |  37 |         INDEX UNIQUE SCAN              | PK_SKU                        |     1 |       |     1   (0)| 00:00:01 |
    ------------------------------------------------------------------------------------------------------------------------So ,after checking the recommended plan I tried to execute the query with the hints,even then it is picking up the indexes in the explain plan.So please kindly help in solving the issue
    The pk_sku is the index created on client_id and sku_id columns
    Thanks
    GV

    riedelme wrote:
    My experience is differernt - hints will be followed if the optimizer determines they will be beneficial and not if they will not, including my current project on 11gR2. The example below (unfortunately only 11gR1) disproves your theory, showing the index hint is followed and that the cost increases by a factor of five.
    The most common cases of the optimizer apparently ignoring a hint are due to operator error, the hint is not well formed, or cannot be followed. There are a couple of documented cases where a hint will be ignored - first_rows used in CTAS is one.
    Jonathan Lewis writes a lot about it on his blog showing that the optimizer always acts on a well formed hint if it is at all possible.
    SQL> create table t (n number not null, c varchar2(1000));
    Table created.
    SQL> insert into t select 1, rpad('x',1000,'x')
      2  from dual connect by level <= 50000;
    50000 rows created.
    SQL> create index t_ix on t (n);
    Index created.
    SQL> exec dbms_stats.gather_table_stats(user, 't', cascade => true)
    PL/SQL procedure successfully completed.
    SQL> explain plan for
      2  select max(c) from t where n =1;
    Explained.
    SQL> select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    Plan hash value: 2966233522
    | Id  | Operation          | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |      |     1 |  1004 |  1574   (1)| 00:00:19 |
    |   1 |  SORT AGGREGATE    |      |     1 |  1004 |            |          |
    |*  2 |   TABLE ACCESS FULL| T    | 50000 |    47M|  1574   (1)| 00:00:19 |
    Predicate Information (identified by operation id):
    PLAN_TABLE_OUTPUT
       2 - filter("N"=1)
    14 rows selected.
    SQL> explain plan for
      2  select /*+ index (t t_ix) */  max(c) from t where n = 1;
    Explained.
    SQL> select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    Plan hash value: 3231292748
    | Id  | Operation                    | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT             |      |     1 |  1004 |  7244   (1)| 00:01:27 |
    |   1 |  SORT AGGREGATE              |      |     1 |  1004 |            |          |
    |   2 |   TABLE ACCESS BY INDEX ROWID| T    | 50000 |    47M|  7244   (1)| 00:01:27 |
    |*  3 |    INDEX RANGE SCAN          | T_IX | 50000 |       |    98   (0)| 00:00:02 |
    PLAN_TABLE_OUTPUT
    Predicate Information (identified by operation id):
       3 - access("N"=1)
    15 rows selected.

  • 100% CPU! HALP! w/ Win 8.1 Pro infected by malicious content that reoccurs even after a factory restart. I've tried near everything malwarebytes, win defender, I'm still too new to effectively use MMC, or GPEDIT.MSC,

    Some form of malicious content is assaulting my PC's registrys, drivers, along with portraying as other Users, and programs. It's a constant struggle to keep my property, authority, permission under my control over security ownership of my files etc. I
    have seen PUP and PUM files in scans, I'm still learning the different forms of malicious content, but I have a feeling there's male-ware, root-kit, and ad-ware that I haven't Identified. Even though my network is private, haven't even created a home-group,
    and all my remote access is turned off, but I haven't ruled out someone still being clever enough to access my system/network remotely. I've tried to keep my computer as secure as possible, multiple passwords, and two-step verification I thought I was going
    off the deep end when I started to suspect my SYSTEM profile had been compromised. I can't tell if it's a phony, or actually my system taking away everything until I literally cant do a thing on my computer.  I didn't want to remove any files that I shouldn't.
    When ever I feel that I'm about to lose complete control over my PC I restore it to factory condition, it's about all I can do. Even after 5 restarts it's persistent. I"ve stopped short of using the more extreme programs like Anti-maleware tool Adlice,
    RogueKiller, and Combofix. I've actually learned a lot about script, and IS no thanks to my computers new little friends. I've been dealing with this malicious content since december upgrading OS from 7 up to 8.1 has really been the only thing my computer
    and I from being completely run over. Some newer up to date advice would be great, I don't want to use out of date or ineffective programs the instructions I've been following are sometimes several years, to at least months old. No point in waisting my time
    if the information is irrelevant and out of date. I'll attach some of my reports, and the progams that I have/haven't used yet. I have several MS accounts, from XboX, college, and this old one I was contemplating on putting all three of them in an admin group,
    making it more difficult to challenge my authority, or maybe just joining a workgroup/domain would also work. Last night I did use GPEDIT.MSC to disable inheratance, followed by a taking global ownership, if it I actually managed to get GPEDIT.MSC to can't
    wait to get my hands I"m kind of enjoying myself though, it's been fun teaching myself IS I always wanted to learn how to use CMD script with proper syntax, I was starting the think that my only solution was to learn command prompt, but there may be a
    newer programm that just might work. I've been using reginout, drivertoolkit, MBAM/backup/chameleon, ncleaner, cclearner, and many others. I've scanned but haven't put combofix, roguekiller, or Adlice to the grind stone, I'd probably do more harm not being
    able to tell whats more benine for beneficial. Here is a link to the instructions that I was following https://forums.malwarebytes.org/index.php?/topic/149492-pcregserviceexe-infection-pup-infections/ the members description was also very close to what I was
    dealing with, he just had better luck with MBAM

    You will find appropriate Consumer-specific support by beginning your own, new thread in this forum =>
    http://answers.microsoft.com/en-us/protect/forum/protect_scanning
    ~Robear Dyer (PA Bear) MS MVP-Windows Client since 2002 Disclaimer: MS MVPs neither represent nor work for Microsoft

  • Execution does not end even after all records updated..

    Hi,
    I have plsql code like :
    declare
    begin
    for x in ( select .......) loop -- about 4000 times
    for y in ( select ............) loop -- about 50 times
    end loop;
    -- some code goes here to manipulate clob data
    -- like creating free temp clobs - use - then free them
    -- Update statement that update some table using clob values.
    insert into tablex values(sysdate);
    commit;
    end loop;
    end;
    Here I can monitor from other window howmany records are inserted into tablex and howmany updated in update statement by...
    select count(1) from tablex;
    After 50 mins i can see that all records are updated but...
    plsql code does not end its execution it continues even after all records are updated..untill i have to kill the session or let be run for long time.. :(
    I can not understand why this it is not ending execution..
    What could be the problem ...

    Hi,
    Here it is.....
    declare
    v_text_data TableA.text_data%type;
    v_clob clob;
    type dummyclob_t is table of clob index by binary_integer;
    dummyclob dummyclob_t;
    v_str varchar2(255) := 'ddfsajfdkeiueimnrmrrttrtr;trtkltwjkltjiu4i5u43iou43i5u4io54urnmlqwmreqwnrewmnrewmreqwnm,rewqnrewqrewqljlkj';
    begin
    select data bulk collect into dummyclob from sfdl_clob; -- five rows containing clob data upto 1MB
    for x in (select object_id
    from TableA
    where object_type = 'STDTEXT' ) loop
    dbms_lob.createtemporary(v_text_data,TRUE);
    for y in (select '<IMG "MFI_7579(@CONTROL=' || ref_id || ',REF_ID=' || ref_id || ').@UDV">' temp_data
    from TableB
    where object_id = x.object_id) loop
    v_text_data := v_text_data ||
    case
    when trunc(dbms_random.value(0,7)) = 0
    then chr(10)
    else v_str
    end ||
    y.temp_data;
    end loop;
    select text_data into v_clob from TableA where object_id = x.object_id for update;
    if v_text_data is not null then
    dbms_lob.append(v_clob,v_text_data);
    end if;
    dbms_lob.append(v_clob,dummyclob(trunc(dbms_random.value(1, 6))));
    dbms_lob.freetemporary(v_text_data);
    insert into xyz values (sysdate);
    commit;
    end loop;
    end;
    Thanks for your time..:)
    Rushang.

  • ISE Wired guest portal redirect even after authentication

    Hi
    I have configured both Wired and Wireless guest authentication via guest portal. Wireless is working fine, however the when trying with Wired, the redireciton page is keep getting even after user authenticated.
    I'm not seen the redirection authorization policy in my logs however I can see only the user authentication logs (successful). Attached is my configuration and logging output.
    Here is what I see on the interface
    ABQT-3FLR-ACC-01#sh authentication sessions interface gigabitEthernet 4/0/19
                Interface:  GigabitEthernet4/0/19
              MAC Address:  a0b3.ccca.2ab1
               IP Address:  10.1.3.16
                User-Name:  A0-B3-CC-CA-2A-B1
                   Status:  Authz Success
                   Domain:  DATA
           Oper host mode:  multi-auth
         Oper control dir:  both
            Authorized By:  Authentication Server
              Vlan Policy:  N/A
         URL Redirect ACL:  ACL-WEBAUTH-REDIRECT
             URL Redirect:  https://xxxx-TW-ISE-2.xxx.xxx.qa:8443/guestportal/gateway?sessionId=AC14011F000001571E52779F&action=cwa
          Session timeout:  N/A
             Idle timeout:  N/A
        Common Session ID:  AC14011F000001571E52779F
          Acct Session ID:  0x00000309
                   Handle:  0xE6000158
    Runnable methods list:
           Method   State
           dot1x    Failed over
           mab      Authc Success
    Here is the ACL
    Extended IP access list ACL-WEBAUTH-REDIRECT
        10 deny udp any any eq domain (1344 matches)
        20 deny ip any host 172.20.5.12 (8122 matches)
        30 deny ip any host 172.20.5.14
        40 permit tcp any any eq www (3124 matches)
        50 permit tcp any any eq 443 (202927 matches)
        60 permit tcp any any eq 8080 (114 matches)
        70 permit ip any any (8056 matches)

    Hi Mohannad,
    Thanks for your response.
    Actually the as per the configuration it should work, I'm still trying to find out what is what has gone wrong with this configuration. Infact I have tested with 3560 switch with the same config and it worked. only difference here is we used 2960S switch.
    We need to find out why the next Auth policy is not hitting once user is authenticated.
    Here is the port configuration and the authen status of the port.
    ABQT-3FLR-ACC-01#sh running-config interface gig4/0/19
    Building configuration...
    Current configuration : 427 bytes
    interface GigabitEthernet4/0/19
    switchport access vlan 103
    switchport mode access
    switchport voice vlan 135
    authentication event fail action next-method
    authentication host-mode multi-auth
    authentication order dot1x mab
    authentication priority dot1x mab webauth
    authentication port-control auto
    authentication violation restrict
    mab
    dot1x pae authenticator
    dot1x timeout tx-period 10
    spanning-tree portfast
    end
    ABQT-3FLR-ACC-01#
    Mar 31 12:32:14.127: %AAA-3-BADSERVERTYPEERROR: Cannot process accounting server type tacacs+ (UNKNOWN)
    ABQT-3FLR-ACC-01#
    ABQT-3FLR-ACC-01#sh atuh
    ABQT-3FLR-ACC-01#sh atu
    ABQT-3FLR-ACC-01#sh authe
    ABQT-3FLR-ACC-01#sh authentication se
    ABQT-3FLR-ACC-01#sh authentication sessions in
    ABQT-3FLR-ACC-01#sh authentication sessions interface gi
    ABQT-3FLR-ACC-01#sh authentication sessions interface gigabitEthernet 4/0/19
                Interface:  GigabitEthernet4/0/19
              MAC Address:  0015.c5b4.fd4a
               IP Address:  10.1.3.23
                User-Name:  00-15-C5-B4-FD-4A
                   Status:  Authz Success
                   Domain:  DATA
           Oper host mode:  multi-auth
         Oper control dir:  both
            Authorized By:  Authentication Server
              Vlan Policy:  N/A
         URL Redirect ACL:  ACL-WEBAUTH-REDIRECT
             URL Redirect:  https://ABQ-TW-ISE-2.abq.gov.qa:8443/guestportal/gateway?sessionId=AC14011F0000018A32B4D906&action=cwa
          Session timeout:  N/A
             Idle timeout:  N/A
        Common Session ID:  AC14011F0000018A32B4D906
          Acct Session ID:  0x00000394
                   Handle:  0x3E00018B
    Runnable methods list:
           Method   State
           dot1x    Failed over
           mab      Authc Success

  • Im trying to download the new itunes so i can use my iphone 5 , however , the new itunes requires Mac OS X 10.6.8 or later and i cant seem to install that onto my imac even after searching for the new update (my imac is currently on 10.5.8.

    .Im trying to download the new itunes so i can use my iphone 5 , however , the new itunes requires Mac OS X 10.6.8 or later and i cant seem to install that onto my imac even after searching for the new update (my imac is currently on 10.5.8.

    You have already seen that you cannot load the new iTunes into your 10.5.8, so as Neil says, you need Snow Leopard (current cost £14).    And you'll probably need to update the disc you buy via the combo update, though that is free.
    As far as the new iTunes is concerned, there's been a certain amount of grumbling so you may want to study the forums before you update.   The main problem has been with album artwork which does not transfer easily.

  • Can't open any windows in Safari even after re-install

    I can't open any windows in Safari, even after installing Snow Leopard, not even the "About Safari" info window. I'm using Firefox to get online. I can open the program itself, but can't do anything else. I'm suspicious that it may be a virus, because I'm getting some weird messages on restart, such as asking me if I want to use some wireless network I never heard of, and if I want to give somebody access to my Twitter account - very strange. My son was using a website when this happened.
    Message was edited by: Alba17

    Greetings,
    I'm suspicious that it may be a virus
    Not possible, since there are no viruses for Mac OS X. You should ask your son what site he was one and whether or not he downloaded and installed anything. And you should turn off wireless networking and delete any networks that you didn't specifically setup. Use Ethernet to connect to your modem/router for Internet access.
    Are you sure that Twitter is asking to give somebody access to your account, or just authorize them to follow your tweets? I've never seen Twitter do the former for anyone, ever.

  • Acrobat X Pro won't open.  Even after a reinstall - what can I do?

    My Acrobat X Pro won't open - even after a reinstall.  What can I do?

    Thanks Jeff - what's strange is that I've been prompted a few times since installation to register the software, so I don't know why it would be doing that if it's already registered.
    When prompted, I would follow the links to the registration information page, and then work through the registration process, and then when prompted to enter the serial code it does not accept it. I've tried the serial code that came with the license, as well as the serial codes for the individual products (Illustrator, Photoshop, etc.), and none of those were accepted by the registration form. So "registering to an account which includes your companies information would be sufficient." does not seem to be working for me, unless there is more to "including the companies information" then I've seen in the sign up pages.
    To be clear, I'm not fumbling around blindly here, I've done a lot to try and register the product myself and have yet to succeed.
    My questions are these (and apologies if this is not directly related to the OT), 1) is there a way to confirm the product is registered, 2) if it is not registered, what specifically do I need to tell the purchasing people to do to make sure it is registered properly, and 3) after following the process here: http://helpx.adobe.com/creative-suite/kb/acrobat-failed-launch-30-days.html - does this fix the Acrobat issue for good, or will I have to repeat this process in another 30 days? Does lack of registration potentially affect other products in the Web and Design Creative Suite?
    Thanks again for the assistance, I'm hoping to get enough information to be able to give our IT folks a clear resolution to the registration issue.

  • Elements 10, windows 8, 64 bit, epson artisan 835 printer: prints are really dark even after using enhancements like adjusting lighting. Prints are darker than photoshop edit screen. Prints are acceptable using paint, windows photo viewer, or gallery.

    Elements 10, Windows 8, 64 bit, Epson Artisan 835 printer: Prints are really dark even after applying enhancements, like adjusting lighting. Prints are darker than Photoshop Edit Screen. Prints are acceptable using Paint, Windows Photoviewer, or Photo Gallery.

    In general theory, one now has the Edit button for their posts, until someone/anyone Replies to it. I've had Edit available for weeks, as opposed to the old forum's ~ 30 mins.
    That, however, is in theory. I've posted, and immediately seen something that needed editing, only to find NO Replies, yet the Edit button is no longer available, only seconds later. Still, in that same thread, I'd have the Edit button from older posts, to which there had also been no Replies even after several days/weeks. Found one that had to be over a month old, and Edit was still there.
    Do not know the why/how of this behavior. At first, I thought that maybe there WAS a Reply, that "ate" my Edit button, but had not Refreshed on my screen. Refresh still showed no Replies, just no Edit either. In those cases, I just Reply and mention the [Edit].
    Also, it seems that the buttons get very scrambled at times, and Refresh does not always clear that up. I end up clicking where I "think" the right button should be and hope for the best. Seems that when the buttons do bunch up they can appear at random around the page, often three atop one another, and maybe one way the heck out in left-field.
    While I'm on a role, it would be nice to be able to switch between Flattened and Threaded Views on the fly. Each has a use, and having to go to Options and then come back down to the thread is a very slow process. Jive is probably incapable of this, but I can dream.
    Hunt

  • Request stays in Authorizing state even after approval

    I've been trying to debug this for days now and it completely breaks my lab - until it fixes itself after some random time and then breaks again
    I created a simple approval workflow which seeks approval from [//Target/Owner] when joining an Owner Approval Group. The request makes it to the Group Owner, but when the group owner approves the request, it stays stuck in Authorizing state and the user
    doesn't become a member of the group. The WF also remains in Running status even after the request is approved. 
    I've seen some similar problems around on the internet, and all seem to suggest Exchange related issues. I don't have an exchange setup in my lab, but I don't think not being able to send an email would completely break the approval process. Besides, it
    does seem to spring back to life randomly and it all starts working again before breaking - very intermittent.
    I've been messing around with the PS WF activity (which I use to calculate custom approvers), but I have disabled that WF completely for now and I'm just using OOTB activities and approvers.
    Any suggestions on what the issue could be (apart from exchange)? There are no errors in the event logs either, but there are loads of exchange related errors/warnings which are expected. Alternatively, is there somehow I can disable the "feature"
    where FIM tries to send an email?
    Thanks

    Yep, the approval responses are generated but the request still stays in Authorizing with the workflow in Running state. 
    What makes this even more bizzare is the intermittent nature of the issue, it just seems to resolve itself after some time then break again. 
    One thing I have noticed is that the problem starts when I use my custom WF to add approvers to the WF dictionary - the first activity is a powershell activity which calculates the approvers and the next one is the OOTB approval activity which sends an email
    to [//WorkflowData/Approver]. However, the PS script runs just fine, and the approver gets the request but after approval nothing happens (although approval responses are generated)

  • Let addon run even after browser window is closed.

    I want to use this addon - "Pushbullet" even after the browser window is closed. Such an option was available in Chrome when I used it last. I migrated to Firefox recently, and would like to know how to implement the same here.
    Thanks,
    Raj

    FredMcD, You have been here long enough to know there is a "Edit This Post" link on right of your posts as three posts in a row in short order is too much.
    Some Extensions if you can find the chrome url can be used in shortcut to start a Firefox process but only with the Extension running.
    The ChatZilla irc client extension for instance can or at least used to.

  • My portal DAD is down even after all correct properties are set.

    Hi,
    could any one update my question why the DAD is down (checked from OEM console) even after the properties set are correct? is there a way to troubleshoot it? I would be thankfull if I could get the answer/How to trouble shoot it?
    Thanks,
    Vijay.

    Looks like you are referring to an earlier post -- if so, which?
    You can check the error_log files from the HTTP Server in $OH/Apache/Apache/logs for information as to why the connection to Portal could not be opened.
    This should give information as seen from mod_plsql, such as login issues to the database, or problems resolving the service name.

  • My Safari keeps restarting, even after a clean install of OSX Mountain Lion

    Even after a clean install of OS X, it restarts like almost all the time. Sometimes after a crash, I launch the app with only a page loaded and it crashes too.
    Tried some of the suggestions but it still crashes. Someone please help me. The crash report as seen below.
    Process:         WebProcess [3740]
    Path:            /System/Library/StagedFrameworks/Safari/WebKit.framework/WebProcess.app/Content s/MacOS/WebProcess
    Identifier:      com.apple.WebProcess
    Version:         8600 (8600.1.17)
    Build Info:      WebKit2-7600001017000000~7
    Code Type:       X86-64 (Native)
    Parent Process:  Safari [3738]
    User ID:         501
    Date/Time:       2014-12-21 12:21:45.677 +0800
    OS Version:      Mac OS X 10.8.5 (12F45)
    Report Version:  10
    Sleep/Wake UUID: 661E5B21-DF92-4935-92D2-C1EE177FB6F5
    Interval Since Last Report:          621 sec
    Crashes Since Last Report:           6
    Per-App Interval Since Last Report:  80 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      C2D53934-DD11-E8C3-128D-6C7233699099
    Crashed Thread:  5  WebCore: Scrolling
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
       __TEXT                 000000010bf29000-000000010bf2a000 [    4K] r-x/rwx SM=COW  /System/Library/StagedFrameworks/Safari/WebKit.framework/WebProcess.app/Content s/MacOS/WebProcess
    Application Specific Information:
    Bundle controller class:
    BrowserBundleController
    Process Model:
    Single Web Process
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_c.dylib                 0x00007fff8da546c3 __mtx_droplock + 29
    1   libsystem_c.dylib                 0x00007fff8da55165 pthread_mutex_unlock + 268
    2   com.apple.CoreFoundation          0x00007fff968ffc58 CFRunLoopRemoveTimer + 520
    3   com.apple.CoreFoundation          0x00007fff969ac9c2 __CFSetApplyFunction_block_invoke_0 + 18
    4   com.apple.CoreFoundation          0x00007fff968c17b0 CFBasicHashApply + 128
    5   com.apple.CoreFoundation          0x00007fff968c171e CFSetApplyFunction + 158
    6   com.apple.CoreFoundation          0x00007fff968ffb29 CFRunLoopRemoveTimer + 217
    7   com.apple.CoreFoundation          0x00007fff968ff9b1 CFRunLoopTimerInvalidate + 417
    8   com.apple.CoreFoundation          0x00007fff968ff351 __CFRunLoopDoTimer + 609
    9   com.apple.CoreFoundation          0x00007fff968e4ad9 __CFRunLoopRun + 1529
    10  com.apple.CoreFoundation          0x00007fff968e40e2 CFRunLoopRunSpecific + 290
    11  com.apple.HIToolbox               0x00007fff8d6bceb4 RunCurrentEventLoopInMode + 209
    12  com.apple.HIToolbox               0x00007fff8d6bcc52 ReceiveNextEventCommon + 356
    13  com.apple.HIToolbox               0x00007fff8d6bcae3 BlockUntilNextEventMatchingListInMode + 62
    14  com.apple.AppKit                  0x00007fff921e2533 _DPSNextEvent + 685
    15  com.apple.AppKit                  0x00007fff921e1df2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    16  com.apple.AppKit                  0x00007fff921d91a3 -[NSApplication run] + 517
    17  com.apple.WebKit                  0x000000010c0bc949 int WebKit::ChildProcessMain<WebKit::WebProcess, WebKit::WebContentProcessMainDelegate>(int, char**) + 387
    18  com.apple.WebProcess              0x000000010bf29d4f 0x10bf29000 + 3407
    19  libdyld.dylib                     0x00007fff9333a7e1 start + 1
    Thread 1:: Dispatch queue: URLConnection
    0   libsystem_kernel.dylib            0x00007fff91a12686 mach_msg_trap + 10
    1   libsystem_kernel.dylib            0x00007fff91a11c42 mach_msg + 70
    2   libsystem_notify.dylib            0x00007fff9a06cdeb _notify_server_register_check_2 + 139
    3   libsystem_notify.dylib            0x00007fff9a0708c3 notify_register_check + 484
    4   com.apple.CFNetwork               0x00007fff96ee7522 _CFNetworkCopyPreferredLanguageCode + 66
    5   com.apple.CFNetwork               0x00007fff96ee6b0b HTTPProtocol::_createMutableCanonicalRequest(__CFAllocator const*, _CFURLRequest const*, void const*) + 215
    6   com.apple.CFNetwork               0x00007fff96ee6a12 HTTPProtocol::_createCanonicalRequest(__CFAllocator const*, _CFURLRequest const*, void const*) + 60
    7   com.apple.CFNetwork               0x00007fff96ee5274 URLConnectionClient::_internalEvent_WillSendRequest() + 68
    8   com.apple.CFNetwork               0x00007fff96ee50f0 __start_block_invoke_0 + 40
    9   com.apple.CFNetwork               0x00007fff96ee4eab ___withClientAsync_block_invoke_0 + 24
    10  com.apple.CFNetwork               0x00007fff96ee4e47 ___withWorkQueueAsync_block_invoke_0 + 19
    11  com.apple.CFNetwork               0x00007fff96ee4bb4 ___performAsync_block_invoke_0 + 33
    12  libdispatch.dylib                 0x00007fff93341f01 _dispatch_call_block_and_release + 15
    13  libdispatch.dylib                 0x00007fff9333e0b6 _dispatch_client_callout + 8
    14  libdispatch.dylib                 0x00007fff9333f47f _dispatch_queue_drain + 235
    15  libdispatch.dylib                 0x00007fff9333f2f1 _dispatch_queue_invoke + 52
    16  libdispatch.dylib                 0x00007fff9333f1c3 _dispatch_worker_thread2 + 249
    17  libsystem_c.dylib                 0x00007fff8da51cdb _pthread_wqthread + 404
    18  libsystem_c.dylib                 0x00007fff8da3c191 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib            0x00007fff91a14d16 kevent + 10
    1   libdispatch.dylib                 0x00007fff93340dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                 0x00007fff933409ee _dispatch_mgr_thread + 54
    Thread 3:
    0   libsystem_kernel.dylib            0x00007fff91a146d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x00007fff8da51f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                 0x00007fff8da51ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                 0x00007fff8da3c191 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib            0x00007fff91a146d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x00007fff8da51f1c _pthread_workq_return + 25
    2   libsystem_c.dylib                 0x00007fff8da51ce3 _pthread_wqthread + 412
    3   libsystem_c.dylib                 0x00007fff8da3c191 start_wqthread + 13
    Thread 5 Crashed:: WebCore: Scrolling
    0   ???                               000000000000000000 0 + 0
    1   com.apple.WebCore                 0x000000010cf0af2b WebCore::ScrollingThread::dispatchFunctionsFromScrollingThread() + 203
    2   com.apple.WebCore                 0x000000010cf0ae4a WebCore::ScrollingThread::threadRunLoopSourceCallback(void*) + 26
    3   com.apple.CoreFoundation          0x00007fff968c1b31 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    4   com.apple.CoreFoundation          0x00007fff968c1455 __CFRunLoopDoSources0 + 245
    5   com.apple.CoreFoundation          0x00007fff968e47f5 __CFRunLoopRun + 789
    6   com.apple.CoreFoundation          0x00007fff968e40e2 CFRunLoopRunSpecific + 290
    7   com.apple.CoreFoundation          0x00007fff968f2dd1 CFRunLoopRun + 97
    8   com.apple.WebCore                 0x000000010cf0add4 WebCore::ScrollingThread::initializeRunLoop() + 244
    9   com.apple.JavaScriptCore          0x000000010c7f433f ***::wtfThreadEntryPoint(void*) + 15
    10  libsystem_c.dylib                 0x00007fff8da4f772 _pthread_start + 327
    11  libsystem_c.dylib                 0x00007fff8da3c1a1 thread_start + 13
    Thread 6:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib            0x00007fff91a12686 mach_msg_trap + 10
    1   libsystem_kernel.dylib            0x00007fff91a11c42 mach_msg + 70
    2   com.apple.CoreFoundation          0x00007fff968df233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation          0x00007fff968e4916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation          0x00007fff968e40e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation              0x00007fff915d8526 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    6   com.apple.Foundation              0x00007fff91636532 __NSThread__main__ + 1345
    7   libsystem_c.dylib                 0x00007fff8da4f772 _pthread_start + 327
    8   libsystem_c.dylib                 0x00007fff8da3c1a1 thread_start + 13
    Thread 7:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib            0x00007fff91a140fa __psynch_cvwait + 10
    1   libsystem_c.dylib                 0x00007fff8da53fb9 _pthread_cond_wait + 869
    2   libc++.1.dylib                    0x00007fff8f0c1851 std::__1::condition_variable::__do_timed_wait(std::__1::unique_lock<std::__1::m utex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >) + 109
    3   com.apple.JavaScriptCore          0x000000010c9dc2b1 JSC::BlockAllocator::waitForDuration(std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >) + 177
    4   com.apple.JavaScriptCore          0x000000010c7fe175 JSC::BlockAllocator::blockFreeingThreadMain() + 85
    5   com.apple.JavaScriptCore          0x000000010c7f433f ***::wtfThreadEntryPoint(void*) + 15
    6   libsystem_c.dylib                 0x00007fff8da4f772 _pthread_start + 327
    7   libsystem_c.dylib                 0x00007fff8da3c1a1 thread_start + 13
    Thread 8:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib            0x00007fff91a140fa __psynch_cvwait + 10
    1   libsystem_c.dylib                 0x00007fff8da53fb9 _pthread_cond_wait + 869
    2   libc++.1.dylib                    0x00007fff8f0c17c9 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    3   com.apple.JavaScriptCore          0x000000010c7fea4b JSC::GCThread::waitForNextPhase() + 171
    4   com.apple.JavaScriptCore          0x000000010c7fe8a8 JSC::GCThread::gcThreadMain() + 88
    5   com.apple.JavaScriptCore          0x000000010c7f433f ***::wtfThreadEntryPoint(void*) + 15
    6   libsystem_c.dylib                 0x00007fff8da4f772 _pthread_start + 327
    7   libsystem_c.dylib                 0x00007fff8da3c1a1 thread_start + 13
    Thread 9:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib            0x00007fff91a140fa __psynch_cvwait + 10
    1   libsystem_c.dylib                 0x00007fff8da53fb9 _pthread_cond_wait + 869
    2   libc++.1.dylib                    0x00007fff8f0c17c9 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    3   com.apple.JavaScriptCore          0x000000010c7fea4b JSC::GCThread::waitForNextPhase() + 171
    4   com.apple.JavaScriptCore          0x000000010c7fe8a8 JSC::GCThread::gcThreadMain() + 88
    5   com.apple.JavaScriptCore          0x000000010c7f433f ***::wtfThreadEntryPoint(void*) + 15
    6   libsystem_c.dylib                 0x00007fff8da4f772 _pthread_start + 327
    7   libsystem_c.dylib                 0x00007fff8da3c1a1 thread_start + 13
    Thread 10:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib            0x00007fff91a140fa __psynch_cvwait + 10
    1   libsystem_c.dylib                 0x00007fff8da53fb9 _pthread_cond_wait + 869
    2   libc++.1.dylib                    0x00007fff8f0c17c9 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    3   com.apple.JavaScriptCore          0x000000010c7fea4b JSC::GCThread::waitForNextPhase() + 171
    4   com.apple.JavaScriptCore          0x000000010c7fe8a8 JSC::GCThread::gcThreadMain() + 88
    5   com.apple.JavaScriptCore          0x000000010c7f433f ***::wtfThreadEntryPoint(void*) + 15
    6   libsystem_c.dylib                 0x00007fff8da4f772 _pthread_start + 327
    7   libsystem_c.dylib                 0x00007fff8da3c1a1 thread_start + 13
    Thread 5 crashed with X86 Thread State (64-bit):
    rax: 0x000000010e10c8f0  rbx: 0x0000000110aa3030  rcx: 0x00000000000fc080  rdx: 0x00000000000f01f0
    rdi: 0x0000000110a9c060  rsi: 0x0000000000000001  rbp: 0x0000000110a8e0a0  rsp: 0x0000000110a8e078
      r8: 0x0000000000000005   r9: 0x00000000564b0b03  r10: 0x0000000000000000  r11: 0x00000000564b0b03
    r12: 0x0000000000000020  r13: 0x00007ffb22430110  r14: 0x0000000110aa3000  r15: 0x0000000000000030
    rip: 0x0000000000000000  rfl: 0x0000000000010206  cr2: 0x0000000000000000
    Logical CPU: 0
    Binary Images:
          0x10bf29000 -        0x10bf29fff  com.apple.WebProcess (8600 - 8600.1.17) <FF78481F-E9FF-3970-A911-3695D16D2248> /System/Library/StagedFrameworks/Safari/WebKit.framework/WebProcess.app/Content s/MacOS/WebProcess
          0x10bf2f000 -        0x10bf2ffff  WebProcessShim.dylib (7600.1.17) <D60D3FCD-9047-3510-AC26-294CBBE8718D> /System/Library/StagedFrameworks/Safari/WebKit.framework/WebProcess.app/Content s/MacOS/WebProcessShim.dylib
          0x10bf64000 -        0x10c2bbfff  com.apple.WebKit (8600 - 8600.1.17) <39C9C71F-FE64-3F30-ABBB-6824326BCDC5> /System/Library/StagedFrameworks/Safari/WebKit.framework/WebKit
          0x10c590000 -        0x10c6f7fff  com.apple.WebKitLegacy (8600 - 8600.1.17) <850F6E22-F149-3483-9C56-3FA696A8FA49> /System/Library/StagedFrameworks/Safari/WebKitLegacy.framework/Versions/A/WebKi tLegacy
          0x10c7ea000 -        0x10cd0fff7  com.apple.JavaScriptCore (8600 - 8600.1.17) <1805970E-7107-3539-9DE7-7CC746965EA9> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/JavaScriptCore
          0x10ce7c000 -        0x10df6afff  com.apple.WebCore (8600 - 8600.1.17) <0344986F-724F-301F-8A8A-0ED03D2AA9D7> /System/Library/StagedFrameworks/Safari/WebCore.framework/WebCore
          0x10fe35000 -        0x10fe35fff  com.apple.WebKit2 (8600 - 8600.1.17) <BCDDA15B-0F2A-3EB7-9738-3E33F7AA7DC6> /System/Library/StagedFrameworks/Safari/WebKit2.framework/WebKit2
          0x110000000 -        0x1105deff7  com.apple.Safari.framework (8537 - 8537.85.10.17.1) <03D96220-109E-3CEC-8E38-E97669EB2746> /System/Library/StagedFrameworks/Safari/Safari.framework/Safari
       0x7fff6bb29000 -     0x7fff6bb5d94f  dyld (210.2.3) <8958FE97-5830-3928-BC38-23136E7D3783> /usr/lib/dyld
       0x7fff8d50f000 -     0x7fff8d547fff  libtidy.A.dylib (15.10) <9009156B-84F5-3781-BFCB-B409B538CD18> /usr/lib/libtidy.A.dylib
       0x7fff8d550000 -     0x7fff8d552fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
       0x7fff8d553000 -     0x7fff8d5adfff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
       0x7fff8d5b6000 -     0x7fff8d65cff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <E91B0882-E75C-30E9-8DCD-7A0EEE4405CC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
       0x7fff8d65d000 -     0x7fff8d98dfff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
       0x7fff8d9e9000 -     0x7fff8d9eafff  libquit.dylib (130.1) <6012FB61-1D85-311F-A557-690C7D4C2A66> /usr/lib/libquit.dylib
       0x7fff8da3b000 -     0x7fff8db07ff7  libsystem_c.dylib (825.40.1) <543B05AE-CFA5-3EFE-8E58-77225411BA6B> /usr/lib/system/libsystem_c.dylib
       0x7fff8db24000 -     0x7fff8db45ff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
       0x7fff8dbae000 -     0x7fff8dd00fff  com.apple.audio.toolbox.AudioToolbox (1.9.2 - 1.9.2) <DC5F3D1B-036A-37DE-BC24-7636DC95EA1C> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
       0x7fff8de46000 -     0x7fff8e07bff7  com.apple.CoreData (106.1 - 407.7) <A676E1A4-2144-376B-92B8-B450DD1D78E5> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
       0x7fff8e096000 -     0x7fff8e1ae92f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
       0x7fff8e86f000 -     0x7fff8e8abfff  com.apple.GeoServices (1.0 - 1) <DB382348-EBFA-3AD5-888B-7F4640F41834> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
       0x7fff8e8d5000 -     0x7fff8e8f2ff7  com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
       0x7fff8e8f3000 -     0x7fff8e952fff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
       0x7fff8ee20000 -     0x7fff8ee33ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
       0x7fff8ee34000 -     0x7fff8ee3afff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
       0x7fff8efc7000 -     0x7fff8efd2ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
       0x7fff8efd3000 -     0x7fff8efd4ff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
       0x7fff8f02c000 -     0x7fff8f040fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
       0x7fff8f041000 -     0x7fff8f060ff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
       0x7fff8f061000 -     0x7fff8f063fff  com.apple.securityhi (4.0 - 55002) <A91F8981-ECB6-3B65-A7BA-8DCBD9CCE3D5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
       0x7fff8f064000 -     0x7fff8f070fff  libCSync.A.dylib (340) <1ED9A6B9-D1FF-3745-A289-981ACE0C89D9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
       0x7fff8f0ba000 -     0x7fff8f122ff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
       0x7fff8f1b1000 -     0x7fff8f283ff7  com.apple.CoreText (260.0 - 275.17) <AB493289-E188-3CCA-8658-1E5039715F82> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
       0x7fff8f685000 -     0x7fff8f6e1ff7  com.apple.Symbolication (1.3 - 93) <84D69A46-BB0A-3DBE-ABC2-B767F61EC221> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
       0x7fff8f6e2000 -     0x7fff8f6e2fff  com.apple.Carbon (154 - 155) <CC5AA589-242E-3BE1-B776-7D4FFD93D0C1> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
       0x7fff8f6e7000 -     0x7fff8f6fefff  libGL.dylib (8.10.1) <F8BABA3C-7810-3A65-83FC-61945AA50E90> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
       0x7fff8f75d000 -     0x7fff8f761ff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
       0x7fff8f7c3000 -     0x7fff8f7d8fff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
       0x7fff8f7d9000 -     0x7fff8f89eff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
       0x7fff8f8a1000 -     0x7fff8f8dbff7  com.apple.GSS (3.0 - 2.0) <423BDFCC-9187-3F3E-ABB0-D280003EB15E> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
       0x7fff8f92a000 -     0x7fff8f92cff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
       0x7fff8f93b000 -     0x7fff8fa54fff  com.apple.ImageIO.framework (3.2.2 - 852) <1D023BCE-1FA2-3743-B449-7489BC0C5C43> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
       0x7fff8fa55000 -     0x7fff8faa4ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
       0x7fff8faa5000 -     0x7fff8fac5fff  libPng.dylib (852) <CCBFA9A9-33C0-3189-AFE0-A77E831EEBA8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
       0x7fff8fac6000 -     0x7fff8facafff  libGIF.dylib (852) <326C48F1-C892-3AF9-94BC-32768EFF6731> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
       0x7fff8facb000 -     0x7fff8fad3ff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
       0x7fff8fad4000 -     0x7fff8fae7ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
       0x7fff8fae8000 -     0x7fff8faeaff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
       0x7fff8fb45000 -     0x7fff8fe16fff  com.apple.security (7.0 - 55719.16.5) <0EEE5DDE-77FB-374A-B1E0-6B19CB44E8EC> /System/Library/Frameworks/Security.framework/Versions/A/Security
       0x7fff8fe17000 -     0x7fff8fe1eff7  libcopyfile.dylib (89.0.70) <30824A67-6743-3D99-8DC3-92578FA9D7CB> /usr/lib/system/libcopyfile.dylib
       0x7fff8fef3000 -     0x7fff8ff00fff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
       0x7fff9029e000 -     0x7fff902f5ff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
       0x7fff902f6000 -     0x7fff90304ff7  libkxld.dylib (2050.48.12) <B8F7ED1F-CF84-3777-9183-0A1C513DF81F> /usr/lib/system/libkxld.dylib
       0x7fff90305000 -     0x7fff90305fff  com.apple.vecLib (3.8 - vecLib 3.8) <6CBBFDC4-415C-3910-9558-B67176447789> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
       0x7fff90405000 -     0x7fff90d95a07  com.apple.CoreGraphics (1.600.0 - 340) <4E39B001-BD9B-3A60-A495-C7F908F52C44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
       0x7fff90d96000 -     0x7fff90e18ff7  com.apple.Heimdal (3.0 - 2.0) <ACF0C667-5ACC-382A-A998-61E85386C814> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
       0x7fff90e19000 -     0x7fff90e47ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
       0x7fff91115000 -     0x7fff912c3fff  com.apple.QuartzCore (1.8 - 304.4) <84F0B40E-DF91-36F2-9F2E-3922234206A3> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
       0x7fff912c4000 -     0x7fff912cfff7  com.apple.ProtocolBuffer (2 - 104) <3270C172-1437-3080-9E53-3E2DCA9AE2EC> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
       0x7fff912d0000 -     0x7fff912f1fff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
       0x7fff912f2000 -     0x7fff9133eff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
       0x7fff9133f000 -     0x7fff91340ff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
       0x7fff91341000 -     0x7fff91345fff  libCoreVMClient.dylib (32.5) <DB009CD4-BB0E-3331-BBB4-A118781D193F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
       0x7fff91346000 -     0x7fff91448fff  libJP2.dylib (852) <01E502E9-7FD3-3A5D-8EA4-2DC8C56E0497> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
       0x7fff91449000 -     0x7fff914b7ff7  com.apple.framework.IOKit (2.0.1 - 755.42.1) <A90038ED-48F2-3CC9-A042-53A3D7985844> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
       0x7fff914b8000 -     0x7fff914c6fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
       0x7fff914c7000 -     0x7fff914f5fff  com.apple.CoreServicesInternal (154.4 - 154.4) <EE77C328-BCC7-3EBD-B3BC-E0E48537D4FF> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
       0x7fff914f6000 -     0x7fff9152cfff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
       0x7fff915a0000 -     0x7fff918fffff  com.apple.Foundation (6.8 - 945.19) <C98E55BA-553B-314B-B056-849FFB20C220> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
       0x7fff91900000 -     0x7fff91900fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <F565B686-24E2-39F2-ACC3-C5E4084476BE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
       0x7fff91901000 -     0x7fff919beff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
       0x7fff91a02000 -     0x7fff91a1dff7  libsystem_kernel.dylib (2050.48.12) <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
       0x7fff91a1e000 -     0x7fff91a34fff  com.apple.Accounts (211.2 - 211.2) <F62749B0-AEA6-3673-8FD7-550E21622893> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
       0x7fff91ac3000 -     0x7fff91ad2ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
       0x7fff91ad3000 -     0x7fff91b16ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
       0x7fff9208c000 -     0x7fff9208cfff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
       0x7fff9208d000 -     0x7fff92cbafff  com.apple.AppKit (6.8 - 1187.40) <F12CF463-6F88-32ED-9EBA-0FA2AD3CF576> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
       0x7fff92cd6000 -     0x7fff92ce8ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
       0x7fff92ce9000 -     0x7fff92ceaff7  libSystem.B.dylib (169.3) <DF030DDB-DF22-3769-A8CD-9806DDB84008> /usr/lib/libSystem.B.dylib
       0x7fff9325c000 -     0x7fff9330eff7  com.apple.LaunchServices (539.11 - 539.11) <A86F44E5-F285-3029-A5D1-00CD3C231A08> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
       0x7fff9330f000 -     0x7fff93337fff  libJPEG.dylib (852) <4E159C31-1B41-3EFF-89EC-3F7BC9053F2C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
       0x7fff93338000 -     0x7fff9333bff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
       0x7fff9333c000 -     0x7fff93351ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
       0x7fff93352000 -     0x7fff93352fff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
       0x7fff93353000 -     0x7fff93392ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
       0x7fff93393000 -     0x7fff93399ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
       0x7fff9339a000 -     0x7fff934bafff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
       0x7fff934bb000 -     0x7fff934bdfff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
       0x7fff934be000 -     0x7fff93527fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
       0x7fff93528000 -     0x7fff9355cfff  com.apple.securityinterface (6.0 - 55024.4) <614C9B8E-2056-3A41-9A01-DAF74C97CC43> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
       0x7fff9355d000 -     0x7fff9355dfff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
       0x7fff9355e000 -     0x7fff93955fff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
       0x7fff945af000 -     0x7fff947affff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
       0x7fff94a0c000 -     0x7fff94a18fff  com.apple.CrashReporterSupport (10.8.3 - 418) <DE6AFE16-D97E-399D-82ED-3522C773C36E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
       0x7fff94a19000 -     0x7fff94a68fff  com.apple.framework.CoreWiFi (1.3 - 130.13) <CCF3D8E3-CD1C-36CD-929A-C9972F833F24> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
       0x7fff94aa5000 -     0x7fff94b26fff  com.apple.Metadata (10.7.0 - 707.12) <69E3EEF7-8B7B-3652-8320-B8E885370E56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
       0x7fff94b27000 -     0x7fff94b34fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
       0x7fff94b35000 -     0x7fff94b36fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
       0x7fff94b37000 -     0x7fff94b3bfff  libMatch.1.dylib (17) <E10E50F3-25F8-3B9B-AA11-923E40F5FFDD> /usr/lib/libMatch.1.dylib
       0x7fff94b3c000 -     0x7fff94b8bff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
       0x7fff95475000 -     0x7fff954ddfff  libvDSP.dylib (380.10) <3CA154A3-1BE5-3CF4-BE48-F0A719A963BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
       0x7fff9563d000 -     0x7fff95641fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
       0x7fff95642000 -     0x7fff9574efff  libFontParser.dylib (84.7) <C3D1121B-B066-34C3-9D31-ADDF387C0B20> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
       0x7fff9574f000 -     0x7fff957e9fff  libvMisc.dylib (380.10) <A7F12764-A94C-36EB-88E0-F826F5AF55B4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
       0x7fff958af000 -     0x7fff958fbfff  com.apple.framework.CoreWLAN (3.4 - 340.18) <3735FB49-30C0-3B11-BE25-2ACDD96041B5> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
       0x7fff958fc000 -     0x7fff95921ff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
       0x7fff9593d000 -     0x7fff959bcff7  com.apple.securityfoundation (6.0 - 55115.4) <9291CE2A-37D9-39DF-956E-7B2650A9F3B0> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
       0x7fff959c4000 -     0x7fff95a1eff7  com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
       0x7fff95a1f000 -     0x7fff95a23ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
       0x7fff95a24000 -     0x7fff95a24ffd  com.apple.audio.units.AudioUnit (1.9.2 - 1.9.2) <6D314680-7409-3BC7-A807-36341411AF9A> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
       0x7fff95a6e000 -     0x7fff95b6bff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
       0x7fff95b6c000 -     0x7fff95b70fff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
       0x7fff95b71000 -     0x7fff95b9afff  libsandbox.1.dylib (220.3) <410BC7E1-24A4-3E5A-ACCF-2F444DC82814> /usr/lib/libsandbox.1.dylib
       0x7fff95d08000 -     0x7fff95d59ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <581BF463-C15A-363B-999A-E830222FA925> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
       0x7fff95d5a000 -     0x7fff95d7cff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
       0x7fff95d7d000 -     0x7fff95d8aff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
       0x7fff95d8d000 -     0x7fff95d92fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
       0x7fff95d93000 -     0x7fff95da1fff  com.apple.Librarian (1.1 - 1) <5AC28666-7642-395F-A923-C6F8A274BBBD> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
       0x7fff95da2000 -     0x7fff95db9fff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
       0x7fff95dc4000 -     0x7fff95dc6fff  com.apple.OAuth (18.1 - 18.1) <0DC79455-CF81-3873-87BD-6BD14D89A6F5> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
       0x7fff95e1a000 -     0x7fff95fb5fef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
       0x7fff95fb6000 -     0x7fff95fc4ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
       0x7fff95fc5000 -     0x7fff9614bfff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.f

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your documents or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this behavior; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Please take this step regardless of the results of Step 1.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of Steps 1 and 2.

  • Lion internet sharing/ audio output not working even after reading through/ following other threads

    Hi, since updatig to Lion my iMac internet sharing is not working i have renamed to a shorter name as advised in other threads but this still does't work I wish to share my ethernet connection wirelessly but after turning it on i can never get the arrow symbol on the top bar. Also i can only play audio through the built in speakers but no headphones/external speakers even after playing with the audio midi settings as seen in other posts but no such luck.

    First, see if you can change the "Play audio using:" selection in Edit > Preferences > Playback - if you select Direct Audio rather than Windows Audio Session this may address the issue.  Note, however, that the Direct Audio option seems to be unavailable in some cases for Windows 8.1.
    Otherwise, there is an alternative downloader for 64-bit editions of Windows here:
    iTunes 12.1 for Windows (64-bit — for older video cards)
    that seems to address the playback issues that some users have been reporting with the full 64-bit version (the alternative installer here is the same architecture as most previous "64-bit" versions of iTunes, i.e., a 32-bit application with a 64-bit installer).  The "for older video cards" label appears to be something of a misnomer as some people have reported that this corrects problems found on current / high-spec systems.
    After installing this alternative version it may still be necessary to adjust the "Play audio using:" selection in Edit > Preferences > Playback to restore glitch-free audio.

Maybe you are looking for

  • Delta is failing from last 5 days...........................

    Error Message: When u go into the "Maintain Variant" you get a pop up showing the following message - Delta request REQU_45994EYUQ7MJ7OCY06G5HQS6N is incorrect in the monitor A repeat needs to be requested Data target YGTDS_C01 still includes delta r

  • Check Writer(XML)

    Hi Guys,             Need your quick help. Most of you are aware of Check Writer(XML) seeded report. I could get the data for all the Business Groups dynamically. But the Logo and the Address of the BG remain same for any sorts of parameters. The Log

  • How much should we rely on "Parent" nodes like group?

    So I'm curious how much overhead does these groups, regions, panes, etc take up, and is there a point to worry about them? in the current application I'm working on I was thinking of having a group of bookstypes, within a group of bookshelves, within

  • I receive the error, "Connect to Internet, Try again."

    I get a notice new update for creative cloud available.  Can't upload, get message "connect to internet, try again".  I'm connected to internet.  Tried a dozen or more times.  Won't upload, get same message.

  • Application Request to be approved/reject through Outlook 2010

    Dear Experts Need your suggestions / inputs in implement a requirement i.e any application (WF) request can be either approved/ rejected through outlook 2010  instead of every time logging into application portal and then to approve or reject.