Entity framework TPT does not work - showstopper

Greetings,
I'm experiencing a similar problem that is described here:
[Entity Framework and inheritance - Possible bug in EF?|http://stackoverflow.com/questions/11506683/entity-framework-and-inheritance-possible-bug-in-ef.]
I'm using:
Windows 7 64 bit
ODAC 11.2 Release 5 32 bit
Oracle Express 11.2 on localhost
Visual Studio 2012
Entity framework 5.0
.net 4.5
Create a simple database with TPT inheritance:
CREATE TABLE Person(
Id NUMBER(38, 0) NOT NULL,
Name VARCHAR2(50),
CONSTRAINT PK100 PRIMARY KEY (Id)
CREATE TABLE Employee(
Id NUMBER(38, 0) NOT NULL,
JobTitle VARCHAR2(50),
CONSTRAINT PK101 PRIMARY KEY (Id)
ALTER TABLE Employee ADD CONSTRAINT ref_Employee_person
FOREIGN KEY (Id)
REFERENCES Person(Id)
CREATE TABLE Superhero(
Id NUMBER(38, 0) NOT NULL,
Superpower VARCHAR2(50),
CONSTRAINT PK102 PRIMARY KEY (Id)
ALTER TABLE Superhero ADD CONSTRAINT ref_Superhero_person
FOREIGN KEY (Id)
REFERENCES Person(Id)
-- Sequence
CREATE SEQUENCE seq_id
INCREMENT BY 1
START WITH 55
MINVALUE 1
MAXVALUE 9999999999999999999999999999
NOCYCLE
NOORDER
CACHE 20
CREATE OR REPLACE TRIGGER PERSON_BI BEFORE INSERT ON PERSON FOR EACH ROW
BEGIN IF :NEW.ID IS NULL THEN SELECT SEQ_ID.NEXTVAL INTO :NEW.ID FROM DUAL; END IF; END;
Create a console application, add an edmx file, set up inheritance like so:
Diagram
And I set the Id property in Person entity as StoreGeneratedPattern to Identity
Then I created the following program:
static void Main(string[] args)
//Employee
var db = new Entities();
EMPLOYEE e = new EMPLOYEE() { ID = 0, JOBTITLE = "Programmer"};
e.NAME = "John Regular Doe";
db.People.Add(e);
//Superhero
SUPERHERO s = new SUPERHERO();
s.NAME = "Superman";
s.SUPERPOWER = "Flight";
db.People.Add(s);
db.SaveChanges();
//Fetch all persons and look at the type
//this is where I get an error:
var allPeople = db.People.ToList();
allPeople.ForEach(x => Console.WriteLine("type: " + x.GetType()));
This throws the following error when I fetch into allPeople:
All objects in the EntitySet 'Entities.People' must have unique primary keys. However, an instance of type 'TestingTPTInheritance.EMPLOYEE' and an instance of type 'TestingTPTInheritance.SUPERHERO' both have the same primary key value, 'EntitySet=People;ID=38'.
Looking at the database everything looks fine
-- Person table --
ID     NAME
39     John Regular Doe
40     Superman
-- Employee table --
ID     JOBTITLE
39     Programmer
-- Superhero table --
ID     SUPERPOWER
40     Flight
If I take the select that EF generates in " db.People.ToList();" and run it I get the following result:
C1      C2     NAME      C3      C4
0X0X     40     Superman           
0X0X     39     John Regular Doe     Programmer     
Is this a bug in ODAC. If so is there a workaround or will there be a fix soon?
Edited by: Amplus on 7.11.2012 07:59

Thank you for the reply shsu
I was being careless when I copied the error message and sequence, sorry about that. I did run this serveral times after I copied the error message. I recreate the seqence starting with 1 and recreated the problem. The error message is:
All objects in the EntitySet 'Entities.People' must have unique primary keys. However, an instance of type 'TestingTPTInheritance.EMPLOYEE' and an instance of type 'TestingTPTInheritance.SUPERHERO' both have the same primary key value, 'EntitySet=People;ID=2'.
The data in the tables is:
Person:
ID     NAME
1      John Regular Doe
2      Superman
employee
ID     JOBTITLE
1      Programmer
Superhero
ID     SUPERPOWER
2      Flight
And the generated select is:
SELECT
CASE WHEN (( NOT (("Project1"."C2" = 1) AND ("Project1"."C2" IS NOT NULL))) AND ( NOT (("Project2"."C2" = 1) AND ("Project2"."C2" IS NOT NULL)))) THEN '0X' WHEN (("Project1"."C2" = 1) AND ("Project1"."C2" IS NOT NULL)) THEN '0X0X' ELSE '0X1X' END AS "C1",
CAST( "Extent1"."ID" AS number(19,0)) AS "C2",
"Extent1"."NAME" AS "NAME",
CASE WHEN (( NOT (("Project1"."C2" = 1) AND ("Project1"."C2" IS NOT NULL))) AND ( NOT (("Project2"."C2" = 1) AND ("Project2"."C2" IS NOT NULL)))) THEN NULL WHEN (("Project1"."C2" = 1) AND ("Project1"."C2" IS NOT NULL)) THEN "Project1"."JOBTITLE" END AS "C3",
CASE WHEN (( NOT (("Project1"."C2" = 1) AND ("Project1"."C2" IS NOT NULL))) AND ( NOT (("Project2"."C2" = 1) AND ("Project2"."C2" IS NOT NULL)))) THEN NULL WHEN (("Project1"."C2" = 1) AND ("Project1"."C2" IS NOT NULL)) THEN NULL ELSE "Project2"."SUPERPOWER" END AS "C4"
FROM "TPT"."PERSON" "Extent1"
LEFT OUTER JOIN (SELECT
"Extent2"."JOBTITLE" AS "JOBTITLE",
CAST( "Extent2"."ID" AS number(19,0)) AS "C1",
1 AS "C2"
FROM "TPT"."EMPLOYEE" "Extent2" ) "Project1" ON ( CAST( "Extent1"."ID" AS number(19,0))) = "Project1"."C1"
LEFT OUTER JOIN (SELECT
"Extent3"."SUPERPOWER" AS "SUPERPOWER",
CAST( "Extent3"."ID" AS number(19,0)) AS "C1",
1 AS "C2"
FROM "TPT"."SUPERHERO" "Extent3" ) "Project2" ON ( CAST( "Extent1"."ID" AS number(19,0))) = "Project2"."C1"
With the following result:
C1      C2     NAME      C3      C4
0X0X     2      Superman      null      null --> should't there be a "Flight" entry here??
0X0X     1      John Regular Doe     Programmer     null
I also tried this:
var result1 = db.People.OfType<SUPERHERO>().ToList(); //Count=1
var result2 = db.People.OfType<EMPLOYEE>().ToList(); //Count=1
var result3 = db.People.OfType<PERSON>().ToList(); //Throws the following error:
All objects in the EntitySet 'Entities.People' must have unique primary keys. However, an instance of type 'TestingTPTInheritance.EMPLOYEE' and an instance of type 'TestingTPTInheritance.SUPERHERO' both have the same primary key value, 'EntitySet=People;ID=2'.
The only thing I can think of is that my little console app is picking up the oracle client from oracle express instead of the ODAC driver. Is there an easy way to force it to use the correct driver? I have this in my config file but I'm not sure if it works:
<oracle.dataaccess.client>
<settings>
<add name="DllPath" value="C:\oracle\product\11.2.0\client_3\bin" />
</settings>
</oracle.dataaccess.client>
And I have also referenced Oracle.Data.Access here:
C:\oracle\product\11.2.0\client_3\odp.net\bin\4\Oracle.DataAccess.dll
client_3 directory is my ODAC Release 5 installation. I changed the config settings to:
<oracle.dataaccess.client>
<settings>
<add name="DllPath" value="C:\oracle\product\11.2.0\client_3\odp.net\bin\4\Oracle.DataAccess.dll" />
</settings>
</oracle.dataaccess.client>
then the program was able to run this line:
var allPeople = db.People.ToList();
But both objects were of type EMPLOYEE. Then I ran this:
var result1 = db.People.OfType<SUPERHERO>().ToList();
and get the following error:
All objects in the EntitySet 'Entities.People' must have unique primary keys. However, an instance of type 'TestingTPTInheritance.EMPLOYEE' and an instance of type 'TestingTPTInheritance.SUPERHERO' both have the same primary key value, 'EntitySet=People;ID=2'.
The problem must be that I do have multiple versions of Oracle client installed on my computer and it is picking up the wrong one either when I'm generating the edmx file or when the application is connecting to the db. I think my next step will be to uninstall all oracle client instances as well as oracle express and try again from scratch!!

Similar Messages

  • Spry Framework for Ajax does not work on google chrome

    I downloaded this beautiful gallery to use it on my site    http://adobe.github.com/Spry/demos/gallery/index.html
    Everything ok on InternetExplorer and Firefox but it does not work on Google Chrome.
    Can you help me to solve this problem? 

    sorry but this forum is for questions about JavaScript inside Acrobat and not general language frameworks. We don't have a discussion topic for Spry.

  • Problem with entity- set_property. Does not set the value on Save

    There is a custom field enhanced in BP_HEAD component in node header structure.
    Code to set the property is written in do_prepare_output method. This value gets set with X after BACK from contact details.
    I see the value X before Save of the account details. After Save, the set_property does not work and so the value is not displayed.
    Please help to explain what could be the reason and how to rectify it.
    Note: Before Save, If I select Edit I see the value on the field. If I select Save after the Edit. The value is retained.
    This issue occurs only when new account details is Saved.

    Hi ,
    The set_property( ) does not work if the field is non-editable. You have to make sure that you do this operation only for fields which are editable.
    Also if you done a set_property(   ), make you perform a modify also and there should be a save followed by a commit ( framework does it for you or you do it manually).
    * 1. Lock an entity and modify a property
    * here booking entity with technical name u2018UIFBokkingu2019
    2 Basic Features of the BOL Application Programming Interface
    <January 2009> 19
    lv_booking = lv_flight->get_related_entity(
    u2018FlightBookingRelu2019 ).
    IF lv_booking->lock( ) = ABAP_TRUE.
    lv_booking->set_property( iv_attr_name = u2018SMOKERu2019
    iv_value = u2018Xu2019 ).
    ENDIF.
    * 2. send all changes to BO layer
    lv_bol_core->modify( ).
    * 3. get the implicitly created global transaction
    DATA: lv_transaction TYPE REF TO if_bol_transaction_context.
    lv_transaction = lv_bol_core->get_transaction( ).
    * 4. save and commit your changes
    lv_transaction->save( ).
    lv_transaction->commit( ).
    Regards
    Kavindra

  • Lenovo System Update 5 does not work on my B580

    Hello,
    the Lenovo System Update 5 program does not work on my B580 laptop.
    After 16% of the status bar the program says "there are no packages for your PC".
    That can't be true, because i haven't installed all drivers and programs.
    I got .NET Framework 4 on my laptop.
    What will solve the problem?
    Greetings from germany
    MAD3000

    i also have the same problem with my B480

  • Quicktime plugin for screen capture does not work in flash player 11.2

    Hello,
                   I have created a quicktime plugin (it is .component file) for screen sharing purpose.
    I have used quicktime framework for that. plugin is detected in flash player.
    This plugin is working perfectly for flash player 11 and below.But,
    It does not working in latest flash player 11.2.
    I have seen following error on console -
    Google Chrome Helper EH[240:e92b] *** QTCaptureSession warning:
    Session received the following error while decompressing video:
    Error Domain=NSOSStatusErrorDomain Code=-8974
    "The operation couldn’t be completed. (OSStatus error -8974.)".
    Make sure that the formats of all video outputs are properly configured
    Note - Compression format used in plugin is kBMPCodecType.
    Please, help me.

    The issue ended up being the change in resolution to my external monitor. Flash was unable to detect the proper coordinates of the color I was trying to select because I was running my monitor in HD mode rather than selecting an actual resolution from my monitor preferences. Changing the settings to an acutal resolution, instead of generic "HD mode" fixed the issue.

  • IChat 4 AV does not work in Leopard

    iChat 4 AV does not work in OS 10.5. iChat 3 worked in OS 10.4.x with no problems. Why the problem?
    I have iMac G5 20-inch with 2.5-gb memory using Motorola SB5101 cable modem provided by ISP Roadrunner (Brighthouse Bakersfield CA).
    I am relatively new to the Apple world (12 months switching from the dark side). I am not a hardware-software engineer. Read discussions, and tried a few things to no avail; eg, no where to set port settings on cable modem.
    It appears most people paid for something that does not work. So, now what? Is Apple working on a fix? If so, any idea when it will be released?

    Got similar problems. Interesting, I can chat with Test Buddies but not to real buddies. Here is the error message:
    Date/Time: 2007-11-09 10:04:30.644 +0200
    OS Version: 10.5 (Build 9A581)
    Report Version: 4
    iChat Connection Log:
    2007-11-09 10:04:03 +0200: AVChat started with ID 32662992.
    2007-11-09 10:04:03 +0200: [email protected]: State change from AVChatNoState to AVChatStateWaiting.
    2007-11-09 10:04:03 +0200: 0x10ff5840: State change from AVChatNoState to AVChatStateInvited.
    2007-11-09 10:04:17 +0200: 0x10ff5840: State change from AVChatStateInvited to AVChatStateConnecting.
    2007-11-09 10:04:17 +0200: [email protected]: State change from AVChatStateWaiting to AVChatStateConnecting.
    2007-11-09 10:04:29 +0200: 0x10ff5840: State change from AVChatStateConnecting to AVChatStateEnded.
    2007-11-09 10:04:29 +0200: 0x10ff5840: Error -8 (Did not receive a response from 0x10ff5840.)
    2007-11-09 10:04:29 +0200: [email protected]: State change from AVChatStateConnecting to AVChatStateEnded.
    2007-11-09 10:04:29 +0200: [email protected]: Error -8 (Did not receive a response from 0x10ff5840.)
    Video Conference Error Report:
    859.209385 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    Video Conference Support Report:
    0.392838 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 1 returns 1
    0.965632 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    0.966509 @Video Conference/VCInitiateConference.m:1701 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    7.099533 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK15455e462ad3dd41
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1838072543
    Call-ID: 63db6ac4-8e98-11dc-ae0c-e993f3274012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 747
    v=0
    o=dan-paulmedrea 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2160
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1005295555
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:312059907
    7.307439 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 100 Trying
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK15455e462ad3dd41
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1838072543
    Call-ID: 63db6ac4-8e98-11dc-ae0c-e993f3274012@lip
    CSeq: 1 INVITE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    7.307679 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 180 Ringing
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK15455e462ad3dd41
    To: "u0" <sip:user@rip:16402>;tag=1991018852
    From: "0" <sip:user@lip:16402>;tag=1838072543
    Call-ID: 63db6ac4-8e98-11dc-ae0c-e993f3274012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@rip:16402>
    User-Agent: Viceroy 1.3
    Content-Length: 0
    7.357462 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK15455e462ad3dd41
    To: "u0" <sip:user@rip:16402>;tag=1991018852
    From: "0" <sip:user@lip:16402>;tag=1838072543
    Call-ID: 63db6ac4-8e98-11dc-ae0c-e993f3274012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@rip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 450
    [v=0
    o=vcm9 0 0 IN IP4 rip
    s=0
    c=IN IP4 rip
    b=AS:2147483647
    t=0 0
    a=hwi:1124:2:2160
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:3440414635
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:431366814
    7.358418 @SIP/Transport.c:2353 type=1 (00000000/0)
    [ACK sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK7514327d7715098f
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>;tag=1991018852
    From: "0" <sip:user@lip:16402>;tag=1838072543
    Call-ID: 63db6ac4-8e98-11dc-ae0c-e993f3274012@lip
    CSeq: 1 ACK
    User-Agent: Viceroy 1.3
    Content-Length: 0
    7.766005 @:0 type=1 (00000000/0)
    [Bandwidth Detection]
    [Received the first BWD packet from rip:16402]
    8.079778 @:0 type=1 (00000000/0)
    [Bandwidth Detection]
    [Avg=101080.00, NSDev=1.38%]
    8.436829 @:0 type=1 (00000000/1)
    [Bandwidth Detection]
    [Avg=873079.30, NSDev=2.51%]
    8.823120 @:0 type=1 (00000000/2)
    [Bandwidth Detection]
    [Avg=3173058.20, NSDev=2.84%]
    9.196386 @SIP/Transport.c:347 type=2 (00000000/0)
    [MESSAGE sip:user@lip:16402 SIP/2.0
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK1194d6c34f8224f1
    Max-Forwards: 70
    To: "0" <sip:user@lip:16402>;tag=1838072543
    From: "u0" <sip:user@rip:16402>;tag=1991018852
    Call-ID: 63db6ac4-8e98-11dc-ae0c-e993f3274012@lip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    [PING]
    9.197111 @SIP/Transport.c:2353 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK1194d6c34f8224f1
    To: "0" <sip:user@lip:16402>;tag=1838072543
    From: "u0" <sip:user@rip:16402>;tag=1991018852
    Call-ID: 63db6ac4-8e98-11dc-ae0c-e993f3274012@lip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    26.645122 @SIP/Transport.c:2353 type=1 (00000000/0)
    [BYE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK189203f968f17316
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>;tag=1991018852
    From: "0" <sip:user@lip:16402>;tag=1838072543
    Call-ID: 63db6ac4-8e98-11dc-ae0c-e993f3274012@lip
    CSeq: 2 BYE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    26.858240 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK189203f968f17316
    To: "u0" <sip:user@rip:16402>;tag=1991018852
    From: "0" <sip:user@lip:16402>;tag=1838072543
    Call-ID: 63db6ac4-8e98-11dc-ae0c-e993f3274012@lip
    CSeq: 2 BYE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    179.261714 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 3 returns 1
    179.834273 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    179.848799 @Video Conference/VCInitiateConference.m:1701 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    180.550754 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK0af0869c36687fee
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1335411467
    Call-ID: cb3df538-8e98-11dc-ae0c-c994e6814012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 748
    v=0
    o=dan-paulmedrea 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2160
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2458756784
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:2067598229
    180.765447 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 100 Trying
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK0af0869c36687fee
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1335411467
    Call-ID: cb3df538-8e98-11dc-ae0c-c994e6814012@lip
    CSeq: 1 INVITE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    180.765742 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 180 Ringing
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK0af0869c36687fee
    To: "u0" <sip:user@rip:16402>;tag=834309359
    From: "0" <sip:user@lip:16402>;tag=1335411467
    Call-ID: cb3df538-8e98-11dc-ae0c-c994e6814012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@rip:16402>
    User-Agent: Viceroy 1.3
    Content-Length: 0
    180.837972 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK0af0869c36687fee
    To: "u0" <sip:user@rip:16402>;tag=834309359
    From: "0" <sip:user@lip:16402>;tag=1335411467
    Call-ID: cb3df538-8e98-11dc-ae0c-c994e6814012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@rip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 449
    [v=0
    o=vcm39 0 0 IN IP4 rip
    s=0
    c=IN IP4 rip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2000
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:2756655198
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:362565796
    180.838262 @SIP/Transport.c:2353 type=1 (00000000/0)
    [ACK sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK4aa5e3bf08e25310
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>;tag=834309359
    From: "0" <sip:user@lip:16402>;tag=1335411467
    Call-ID: cb3df538-8e98-11dc-ae0c-c994e6814012@lip
    CSeq: 1 ACK
    User-Agent: Viceroy 1.3
    Content-Length: 0
    181.247211 @:0 type=1 (00000000/0)
    [Bandwidth Detection]
    [Received the first BWD packet from rip:16402]
    181.560616 @:0 type=1 (00000000/0)
    [Bandwidth Detection]
    [Avg=100874.10, NSDev=1.96%]
    181.870297 @:0 type=1 (00000000/1)
    [Bandwidth Detection]
    [Avg=1201110.60, NSDev=101.47%]
    182.307391 @:0 type=1 (00000000/2)
    [Bandwidth Detection]
    [Avg=3136373.30, NSDev=4.02%]
    203.448331 @SIP/Transport.c:347 type=2 (00000000/0)
    [MESSAGE sip:user@lip:16402 SIP/2.0
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK3094acac353a305e
    Max-Forwards: 70
    To: "0" <sip:user@lip:16402>;tag=1335411467
    From: "u0" <sip:user@rip:16402>;tag=834309359
    Call-ID: cb3df538-8e98-11dc-ae0c-c994e6814012@lip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    [PING]
    203.449038 @SIP/Transport.c:2353 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK3094acac353a305e
    To: "0" <sip:user@lip:16402>;tag=1335411467
    From: "u0" <sip:user@rip:16402>;tag=834309359
    Call-ID: cb3df538-8e98-11dc-ae0c-c994e6814012@lip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    206.325829 @SIP/Transport.c:2353 type=1 (00000000/0)
    [BYE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK253b08010f40d542
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>;tag=834309359
    From: "0" <sip:user@lip:16402>;tag=1335411467
    Call-ID: cb3df538-8e98-11dc-ae0c-c994e6814012@lip
    CSeq: 2 BYE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    206.535623 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK253b08010f40d542
    To: "u0" <sip:user@rip:16402>;tag=834309359
    From: "0" <sip:user@lip:16402>;tag=1335411467
    Call-ID: cb3df538-8e98-11dc-ae0c-c994e6814012@lip
    CSeq: 2 BYE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    857.209513 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK06d81b3d46cdaf11
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=1166564833
    Call-ID: 5e8fe318-8e9a-11dc-ae0c-dd4148874012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 748
    v=0
    o=dan-paulmedrea 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2160
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2180123230
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1488738594
    857.710250 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK06d81b3d46cdaf11
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=1166564833
    Call-ID: 5e8fe318-8e9a-11dc-ae0c-dd4148874012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 748
    v=0
    o=dan-paulmedrea 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2160
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2180123230
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1488738594
    858.710845 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK06d81b3d46cdaf11
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=1166564833
    Call-ID: 5e8fe318-8e9a-11dc-ae0c-dd4148874012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 748
    v=0
    o=dan-paulmedrea 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2160
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2180123230
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1488738594
    Video Conference User Report:
    0.000000 @:0 type=5 (00000000/16402)
    [Local SIP port]
    0.000046 @:0 type=5 (00000000/16402)
    [Local SIP port]
    0.000091 @:0 type=5 (00000000/16402)
    [Local SIP port]
    9.032366 @:0 type=5 (00000000/60)
    [Detected bandwidth (kbits/s): 2627 up, 2627 down. (00000000)
    9.038265 @Video Conference/VideoConferenceMultiController.m:1957 type=5 (00000000/0)
    [Start Conference With UserID: u0]
    182.515961 @:0 type=5 (00000000/60)
    [Detected bandwidth (kbits/s): 2627 up, 2627 down. (00000000)
    182.519862 @Video Conference/VideoConferenceMultiController.m:1957 type=5 (00000000/0)
    [Start Conference With UserID: u0]
    815.539310 @Video Conference/VideoConferenceMultiController.m:1476 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 280 bytes of local IP and port data (7 entries). Remote data was 160 bytes (4 entries).
    843.624494 @Video Conference/VideoConferenceMultiController.m:1476 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 280 bytes of local IP and port data (7 entries). Remote data was 0 bytes (0 entries).
    857.156819 @Video Conference/VideoConferenceMultiController.m:1509 type=5 (00000000/0)
    [Initiate Conference To User Cert Version: u0 with 160 bytes of connection data.
    859.431745 @Video Conference/VideoConferenceMultiController.m:1476 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 280 bytes of local IP and port data (7 entries). Remote data was 0 bytes (0 entries).
    Binary Images Description for "iChat":
    0x1000 - 0x230fff com.apple.iChat 4.0 (601) /Applications/iChat.app/Contents/MacOS/iChat
    0x2a4000 - 0x311fff com.apple.Bluetooth 2.0 (2.0f20) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x35d000 - 0x4aefff com.apple.viceroy.framework 343.5 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x51c000 - 0x55bfff com.apple.vmutils 4.1 (104) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x57d000 - 0x596fff com.apple.frameworks.preferencepanes 12.0 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x5b0000 - 0x5e9fff com.apple.remotedesktop.screensharing 1.0 /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x5f9000 - 0x60dfff com.apple.ScreenSaver 2.0 /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x61d000 - 0x63bfff libexpat.1.dylib /usr/lib/libexpat.1.dylib
    0x643000 - 0x674fff com.apple.iChatCommonGUI 4.0 (601) /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0x69b000 - 0x69efff com.apple.BezelServicesFW 1.4.533 /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x6e9000 - 0x6eefff com.apple.iChat.Styles.Balloons 4.0 (601) /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents/MacO S/Balloons
    0x99e3000 - 0x99e6fff com.apple.iChat.Styles.Boxes 4.0 (601) /Applications/iChat.app/Contents/PlugIns/Boxes.transcriptstyle/Contents/MacOS/B oxes
    0x99ed000 - 0x99f3fff com.apple.iChat.Styles.Compact 4.0 (601) /Applications/iChat.app/Contents/PlugIns/Compact.transcriptstyle/Contents/MacOS /Compact
    0x99fb000 - 0x99fdfff com.apple.iChat.Styles.Text 4.0 (601) /Applications/iChat.app/Contents/PlugIns/Text.transcriptstyle/Contents/MacOS/Te xt
    0xd3b9000 - 0xd3b9fff liblangid.dylib /usr/lib/liblangid.dylib
    0xd6ce000 - 0xd6cefff com.apple.JavaPluginCocoa 12.0.0 /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0xd6dd000 - 0xd6defff com.apple.iChat.PersonIconPlugIn 1.0 (601) /Applications/iChat.app/Contents/PlugIns/PersonIcon.plugin/Contents/MacOS/Perso nIcon
    0xd8e4000 - 0xd9cafff com.apple.RawCamera.bundle 2.0 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0xe0a0000 - 0xe0a5fff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0xe1de000 - 0xe1e7fff com.apple.IOFWDVComponents 1.9.5 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0xe1f7000 - 0xe1fafff com.apple.audio.AudioIPCPlugIn 1.0.4 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0xe200000 - 0xe205fff com.apple.audio.AppleHDAHALPlugIn 1.4.0 (1.4.0a23) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0xe268000 - 0xe2d5fff com.DivXInc.DivXDecoder 6.6.0 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0xe2e4000 - 0xe31ffff com.apple.QuickTimeFireWireDV.component 7.2.1 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0xe32c000 - 0xe359fff com.apple.QuickTimeIIDCDigitizer 7.2.1 /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0xe364000 - 0xe3aefff com.apple.QuickTimeUSBVDCDigitizer 2.1.6 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0xe3d5000 - 0xe556fff com.apple.opengl 1.5.4 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0xe584000 - 0xe7eafff com.apple.ATIRadeonX1000GLDriver 1.5.16 (5.1.6) /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
    0xe82d000 - 0xe849fff com.apple.opengl 1.5.4 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0xf9dd000 - 0xfb6afff com.apple.audio.codecs.Components 1.5 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x10334000 - 0x1033bfff com.apple.JavaVM 12.0.0 /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x10ec5000 - 0x10ec8fff com.apple.iokit.IOQTComponents 1.6 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x11381000 - 0x11386fff com.apple.AppleMPEG2Codec 1.0 (211) /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x113ca000 - 0x113e6fff com.apple.QuartzComposer.ExtraPatches 2.0 (106) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x113f8000 - 0x11415fff com.apple.audio.midi.CoreMIDI 1.6 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x1142d000 - 0x1143afff com.apple.QuartzComposer.Backdrops 1.0 (1) /System/Library/Graphics/Quartz Composer Patches/Backdrops.plugin/Contents/MacOS/Backdrops
    0x117d9000 - 0x117f3fff com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x117f8000 - 0x11833fff com.apple.AppleVAFramework 4.0.14 /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x119ad000 - 0x119c7fff com.apple.applepixletvideo 1.2.10 (1.2d10) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x12438000 - 0x124aafff com.apple.audio.units.Components 1.5 /System/Library/Components/CoreAudio.component/Contents/MacOS/CACodecs
    0x126dc000 - 0x129d7fff com.apple.QuickTimeH264.component 7.2.1 /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0x12a4f000 - 0x12c45fff net.telestream.wmv.import 2.1.3.10 /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x12c76000 - 0x12e27fff net.telestream.wmv.advanced 2.1.3.10 /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x12e6a000 - 0x12f81fff www.zygodigital.com ZyGoVideo Pro version 3.5.0.1 Copyright 2004 ZyGoDigital LLC. (3.5.0.1) /Library/QuickTime/ZyGoVideo.component/Contents/MacOS/ZyGoVideo
    0x70000000 - 0x700e3fff com.apple.audio.units.Components 1.5 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe2dfff dyld /usr/lib/dyld
    0x90003000 - 0x90011fff libz.1.dylib /usr/lib/libz.1.dylib
    0x90012000 - 0x90025fff com.apple.IMUtils 4.0 (578) /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x90026000 - 0x9004dfff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x9004e000 - 0x90053fff com.apple.backup.framework 1.0 /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x90054000 - 0x90054fff com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x90055000 - 0x90055fff com.apple.Carbon 136 /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90056000 - 0x90072fff com.apple.IMFramework 4.0 (578) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x90073000 - 0x9007ffff com.apple.opengl 1.5.4 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90080000 - 0x9054cfff com.apple.opengl 1.5.4 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9057e000 - 0x9093cfff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9093d000 - 0x9095cfff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9095d000 - 0x90987fff libauto.dylib /usr/lib/libauto.dylib
    0x90988000 - 0x909e2fff com.apple.CoreText 2.0.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x909e3000 - 0x90a6cfff com.apple.framework.IOKit 1.5.0 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90a6d000 - 0x90a7dfff com.apple.speech.synthesis.framework 3.6.59 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x90a7e000 - 0x90a83fff com.apple.DisplayServicesFW 2.0 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x90a84000 - 0x90ba8fff com.apple.audio.toolbox.AudioToolbox 1.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90e7f000 - 0x90f63fff com.apple.CoreData 100 (185) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x90f64000 - 0x90f75fff com.apple.CFOpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x90f76000 - 0x90f7afff com.apple.CoreMediaAuthoringPrivate 1.0.1 /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x90f7b000 - 0x90fc0fff com.apple.Metadata 10.5.0 (398) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x90fc1000 - 0x91053fff com.apple.ApplicationServices.ATS 3.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x91054000 - 0x910b0fff com.apple.htmlrendering 68 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x910b1000 - 0x910b5fff com.apple.OpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x910b6000 - 0x9132ffff com.apple.Foundation 6.5 (677) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91330000 - 0x91354fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x91355000 - 0x913a2fff com.apple.datadetectorscore 1.0 (52.11) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x913a3000 - 0x91452fff com.apple.DesktopServices 1.4.2 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x91453000 - 0x914b0fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x914b1000 - 0x91563fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91564000 - 0x9156bfff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x9156c000 - 0x916c6fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x91705000 - 0x91719fff com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9171a000 - 0x91766fff com.apple.QuickLookUIFramework 1.0 (168.0) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x91767000 - 0x91772fff com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x91773000 - 0x91775fff com.apple.securityhi 3.0 (30817) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91776000 - 0x91785fff com.apple.DSObjCWrappers.Framework 1.2 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x91786000 - 0x91788fff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91789000 - 0x91789fff com.apple.MonitorPanelFramework 1.2.0 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9178a000 - 0x9184ffff com.apple.QuickTimeMPEG4.component 7.2.1 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x91850000 - 0x9185ffff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x91860000 - 0x91998fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x91999000 - 0x919a3fff com.apple.audio.SoundManager 3.9.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x919a4000 - 0x919eefff com.apple.securityinterface 3.0 (32532) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x919ef000 - 0x919f0fff libffi.dylib /usr/lib/libffi.dylib
    0x919f1000 - 0x919f7fff com.apple.print.framework.Print 218 (220) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x91a28000 - 0x91a3efff com.apple.DictionaryServices 1.0.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x91a3f000 - 0x91f54fff com.apple.WebCore 5523.10.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x91f55000 - 0x91f6dfff com.apple.openscripting 1.2.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x91f6e000 - 0x92129fff com.apple.QuartzComposer 2.0 (106) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x9212a000 - 0x9212afff com.apple.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9212b000 - 0x92146fff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x92147000 - 0x92226fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x92227000 - 0x9228cfff com.apple.ISSupport 1.6 (34) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x9228d000 - 0x9228dfff com.apple.CoreServices 32 /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9228e000 - 0x9230dfff com.apple.SearchKit 1.2.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9230e000 - 0x92453fff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x92454000 - 0x9245bfff com.apple.agl 3.0.9 (AGL-3.0.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9246a000 - 0x92520fff com.apple.CoreServices.OSServices 209 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x92521000 - 0x9258ffff com.apple.iLifeMediaBrowser 1.0.3 (194) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x92590000 - 0x925c6fff com.apple.SystemConfiguration 1.9.0 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x925c7000 - 0x92790fff com.apple.security 5.0 (31122) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92791000 - 0x927affff com.apple.QuickLookFramework 1.0 (168.0) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x927b0000 - 0x927b8fff com.apple.DiskArbitration 2.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x927b9000 - 0x927bdfff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x927be000 - 0x92a97fff com.apple.CoreServices.CarbonCore 783 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x92a98000 - 0x92b2bfff com.apple.ink.framework 101.3 (86) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92b2c000 - 0x92b42fff com.apple.CoreVideo 1.5.0 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x92b43000 - 0x92b79fff libtidy.A.dylib /usr/lib/libtidy.A.dylib
    0x92b7a000 - 0x92b7bfff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x92b7c000 - 0x92bbbfff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x92bbc000 - 0x92c33fff com.apple.CFNetwork 217 (219) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x92d14000 - 0x92e15fff com.apple.PubSub 1.0.0 (59) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x92e16000 - 0x92e66fff com.apple.HIServices 1.6.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92e67000 - 0x92f10fff com.apple.JavaScriptCore 5523.10.3 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x92f11000 - 0x92fdcfff com.apple.ColorSync 4.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x92fdd000 - 0x93098fff com.apple.WebKit 5523.10.3 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x93099000 - 0x930cbfff com.apple.LDAPFramework 1.4.3 (106) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x930cc000 - 0x933dafff com.apple.QuickTime 7.2.1 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x933db000 - 0x9340cfff com.apple.quartzfilters 1.5.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x93413000 - 0x934f4fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x934f5000 - 0x9357cfff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9357d000 - 0x93c14fff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x93c15000 - 0x93c91fff com.apple.audio.CoreAudio 3.1.0 (3.1) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x93c92000 - 0x93cb0fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x93cb1000 - 0x93ce0fff com.apple.AE 402 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x93ce1000 - 0x93cf1fff com.apple.LangAnalysis 1.6.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x93cf2000 - 0x93d09fff com.apple.datadetectors 1.0 (66.0) /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x93d0a000 - 0x93d15fff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x93d16000 - 0x93e94fff com.apple.AddressBook.framework 4.1 (687) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x93e95000 - 0x93ee5fff com.apple.framework.familycontrols 1.0 /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x93ee6000 - 0x93ee6fff com.apple.quartzframework 1.5 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x93ee7000 - 0x93f5bfff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x93f5c000 - 0x93f95fff com.apple.securityfoundation 3.0 (32585) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x93f96000 - 0x93f98fff com.apple.CrashReporterSupport 10.5.0 (156) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x93f99000 - 0x93fa0fff libbsm.dylib /usr/lib/libbsm.dylib
    0x93fa1000 - 0x93fdbfff com.apple.coreui 0.1 (60) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x93fdc000 - 0x94083fff com.apple.QD 3.11.49 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x94084000 - 0x94084fff com.apple.audio.units.AudioUnit 1.5 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94085000 - 0x94085fff com.apple.Cocoa 6.5 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x94086000 - 0x940c8fff com.apple.NavigationServices 3.5 (160) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x940c9000 - 0x940f1fff com.apple.shortcut 1 (1.0) /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x940f2000 - 0x940f4fff com.apple.QuickTimeH264.component 7.2.1 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x9424b000 - 0x94a45fff com.apple.AppKit 6.5 (949) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94a46000 - 0x94a73fff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x94a74000 - 0x94a79fff com.apple.CommonPanels 1.2.4 (85) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x94a7a000 - 0x94ae9fff com.apple.PDFKit 2.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x94aea000 - 0x94b27fff com.apple.opengl 1.5.4 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94b34000 - 0x94b3dfff com.apple.speech.recognition.framework 3.7.24 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x94b3e000 - 0x94bdcfff com.apple.QuickTimeImporters.component 7.2.1 /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x94bdd000 - 0x94c57fff com.apple.print.framework.PrintCore 5.5 (245) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x94c58000 - 0x94d1ffff com.apple.vImage 3.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x94d20000 - 0x94dacfff com.apple.LaunchServices 283 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x94dad000 - 0x94e06fff com.apple.opengl 1.5.4 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x94e07000 - 0x94e2bfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94e2c000 - 0x9523cfff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9523d000 - 0x95373fff com.apple.imageKit 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x95374000 - 0x9567afff com.apple.HIToolbox 1.5.0 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9567b000 - 0x957adfff com.apple.CoreFoundation 6.5 (476) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x958d8000 - 0x9591cfff com.apple.DirectoryService.PasswordServerFramework 3.0 /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x9591d000 - 0x9593bfff com.apple.DirectoryService.Framework 3.5 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9593c000 - 0x9595ffff com.apple.CoreMediaPrivate 1.1 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x95960000 - 0x95967fff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x95968000 - 0x95968fff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x95976000 - 0x959b7fff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x959b8000 - 0x959f4fff com.apple.CoreMediaIOServicesPrivate 1.1 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x959f5000 - 0x95a7ffff com.apple.QTKit 7.2.1 /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x95a80000 - 0x95a80fff com.apple.Accelerate 1.4 (Accelerate 1.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x95a81000 - 0x95a8dfff com.apple.opengl 1.5.4 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x95a8e000 - 0x95b3efff edu.mit.Kerberos 6.0.11 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x95b49000 - 0x95edefff com.apple.QuartzCore 1.5.0 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x95edf000 - 0x95edffff com.apple.ApplicationServices 34 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x95ee0000 - 0x95ee3fff com.apple.help 1.1 (36) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x95ee4000 - 0x96cdcfff com.apple.QuickTimeComponents.component 7.2.1 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents

  • My sound system does not work AFTER installing pc to tv wireless connection

    my sound system does not work after installing hp pc to tv wireles device when I am using lap top for other purposes.

    Hi,
    You don’t install VS2010 on the client PC, then where did the Form Invoice not work? When you run it from another version of VS? Or when you run the application with application.exe?
    Based on your description, one form works well, another form does not. I assume that two forms are in two different projects, then please check the .Net Framework used by the two projects. If they are different, you can use the
    one used by the Form contact for Form Invoice.
    Because this issue is a project issue, I recommend you to consult it on some application forum such as Windows Forms General forum for better support.
    VS General Question forum mainly discusses
    the usage of Visual Studio IDE such as
    WPF & SL designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help
    System and Visual Studio Editor.
    Thanks,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Teamviewer does not work after 10.7.3

    Hello -
    I just discovered that Teamviewer in Version 6 and also in Beta 7 does not work anymore. Re-install did not work.
    Version 6 :  it starts but the application can only be killed
    Version 7 : The application does not start anymore. The shown error report is sent to Teamviewer.com but i doubt there will be an answer since I am using that private.
    Maybe someone knows or has a hint/comment. Would be very helpful.
    Thanks

    Dear Harry - thanks a lot for googling that and which I not found :-(
    I was trying to open the error log file from there but it was not available. I cannot see in my log files such a correlation and the mentioned program I do not have. I also cannot remember to have installed after the Lion Upgrade other system programs. And before, it was definitly working.
    Okay, meanwhile I have tried the different things
    - SMC and NV Reset
    - booting in Safe Mode <-- here it is also crashing
    After reboot in normal mode, the same crashing behavior. I also repaired permission and rebuild the DYLD cache thru ONYX. Everything does not help at all.
    The only thing what has changed is the error message, now it looks something the Font and Carbon, before it was something different, the GeForceGLDriver.
    Crashed Thread:  3
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000029d9068c
    VM Regions Near 0x29d9068c:
        mapped file            000000000c8bd000-000000000cb86000 [ 2852K] rw-/rwx SM=COW  /System/Library/Fonts/Helvetica.dfont
    -->
        __TEXT                 0000000064b00000-0000000064b07000 [   28K] r-x/rwx SM=COW  /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print

  • CMC does not work after deploying to Websphere

    Description of Problem or Question:
    We have an installation of BO XI R2 SP2 on Tomcat (default installation).
    Now we installed Websphere Application Server 6.0 on the same server and deployed BO war files on it.
    The existing installation of Infoview & CMC on Tomcat works as it did before.
    But, CMC that runs on Websphere does not work.
    Product\Version\Service Pack\Fixpack (if applicable):
    Business Objects XI R2 - Service Pack 2
    Tomcat 5.0.27 (installed by default)
    Websphere Application Server 6.0.0.2
    Relevant Environment Information (OS & version, java or .net & version, DB & version):
    Windows 2003 Server R2, Enterprise Edition, SP2
    Sporadic or Consistent (if applicable):
    Consistent
    Steps to Reproduce (if applicable):
    Followed all the steps mentioned in "Deploying on WebSphere" section of "xir2_bip_install_en.pdf"
    Deployed the following war files from the following location in the order mentioned with context roots as listed.
    C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\java\applications\sp2updates
    webcompadapterSP2.war /businessobjects
    jsfadminSp2.war /jsfadmin
    jsfplatform.war /jsfplatform
    adminSP2.war /businessobjects/enterprise115/adminlaunch
    desktopSP2.war /businessobjects/enterprise115/desktoplaunch
    stylesSP2.war /styles
    http://localhost:9080/businessobjects/enterprise115/desktoplaunch
    Infoview works as expected.
    http://localhost:9080/businessobjects/enterprise115/admin
    CMC doesnot work. IE Says "HTTP 500 Internal Server Error".
    What has already been tried (where have you searched for a solution to your question/problem):
    On searching the web-forums, I found this:
    http://www.forumtopics.com/busobj/viewtopic.php?t=112151
    So, I tried to install WCA for Websphere. The scenario mentioned in that article deals with new installation of BO.
    But, since ours is an existing installation, I cannot install WCA for websphere.
    I do not want to re-install BO.
    Please advise.
    Thanks,
    Chris

    Hi,
    The following is the log created when I try to open CMC.
    com.ibm.ws.webcontainer.webapp.WebApp logServletError SRVE0293E: [Servlet Error]-[wccontroller]: java.lang.NoClassDefFoundError: javax.servlet.http.HttpServletRequestWrapper
    at com.ibm.oti.vm.VM.findClassOrNull(Native Method)
    at com.ibm.oti.vm.BootstrapClassLoader.loadClass(BootstrapClassLoader.java:62)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:633)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:635)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:300)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:609)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:363)
    at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:347)
    at org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:83)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:635)
    at com.ibm.ws.bootstrap.ExtClassLoader.loadClass(ExtClassLoader.java:90)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:609)
    at com.ibm.ws.classloader.ProtectionClassLoader.loadClass(ProtectionClassLoader.java:62)
    at com.ibm.ws.classloader.ProtectionClassLoader.loadClass(ProtectionClassLoader.java:58)
    at com.ibm.ws.classloader.CompoundClassLoader.loadClass(CompoundClassLoader.java:466)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:609)
    at com.ibm.ws.classloader.CompoundClassLoader.loadClass(CompoundClassLoader.java:466)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:609)
    at java.lang.J9VMInternals.verifyImpl(Native Method)
    at java.lang.J9VMInternals.verify(J9VMInternals.java:72)
    at java.lang.J9VMInternals.initialize(J9VMInternals.java:134)
    at com.businessobjects.enterprise.wca.servlets.WCAControllerServlet.init(Unknown Source)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.init(ServletWrapper.java:325)
    at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.init(ServletWrapperImpl.java:165)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:628)
    at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:443)
    at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(ServletWrapperImpl.java:175)
    at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3610)
    at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:274)
    at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:926)
    at com.ibm.ws.webcontainer.WSWebContainer.handleRequest(WSWebContainer.java:1557)
    at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:173)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:455)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:384)
    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:272)
    at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminators(NewConnectionInitialReadCallback.java:214)
    at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:113)
    at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:165)
    at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
    at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
    at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138)
    at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:202)
    at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:766)
    at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:896)
    at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1527)

  • Iwork does not work (after install)

    Installed iwork from purchased dvd.
    Clicked on Pages (same thing happens with Keynote or Numbers)
    Box comes up:
    This application pages quit unexpectedly. Click to relaunch(does not work) Ignore (does not work) or report.
    I click on report and get this:
    Process:         Pages [694]
    Path:            /Applications/iWork '09/Pages.app/Contents/MacOS/Pages
    Identifier:      com.apple.iWork.Pages
    Version:         ??? (???)
    Build Info:      Pages-7660000~4
    Code Type:       PPC (Native)
    Parent Process:  launchd [109]
    Interval Since Last Report:          189 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  0 sec
    Per-App Crashes Since Last Report:   1
    Date/Time:       2011-05-28 20:59:59.872 -0700
    OS Version:      Mac OS X 10.5.8 (9L31a)
    Report Version:  6
    Anonymous UUID:  089DD08E-48A6-4CBB-8A7C-E4A7BF743203
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000001, 0x000000008fe0105c
    Crashed Thread:  0
    Dyld Error Message:
      Library not loaded: @rpath/Inventor.framework/Versions/C/Inventor
      Referenced from: /Library/Application Support/iWork '09/Frameworks/SFCompatibility.framework/Versions/A/SFCompatibility
      Reason: image not found
    So I spent 89.00 canadian to buy a program that has no clue.  Hurray for me.

    https://discussions.apple.com/message/13059252#13059252
    Basically, the flagged correct answer in that thread seems to involve doing the following and then reinstalling:
    (My suggestion would be to create a folder on the desktop as a temporary residence for the following files and folders to mode).
    In your home directory, remove iWork plist files from /Users/your_account_name/Library/Preferences folder, which would be for the iWork applications.
    Move the folder /Library/Application Support/iWork '09 to the temp folder you created.
    Move the folder /Applications/iWork '09 to the temp folder.
    Reinstall the program.  Something got hosed in the installer the first time around (it happens).  It worked for the OP in the linked discussion.

  • Caldav does not work after upgrade from 10.6.8

    Hello!
    After upgrading two test servers from 10.6.8 to 10.7.2 with no problems i decided last night it is time to upgrade our production server.
    Took sometime but everything went well except for caldav service. If I understand the log right the migration to lion-calendars crashes when the script wants to put the calendars from filesystem into a database.
    After reboot the script runs into the same error.
    BTW the notification service does not work also. But that is not very important.
    Every help is appreciated, bye
    eweri
    Here is the part of the log file:
    more /var/log/caldavd/error.log
    2011-10-26 08:28:33+0200 [-] Log opened.
    2011-10-26 08:28:33+0200 [-] twistd 11.0.0 (/System/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/ Contents/MacOS/Python 2.7.1) starting up.
    2011-10-26 08:28:33+0200 [-] reactor class: twext.internet.kqreactor.KQueueReactor.
    2011-10-26 08:28:33+0200 [-] calendarserver.accesslog.AMPLoggingFactory starting on "'/var/run/caldavd/caldavd.sock'"
    2011-10-26 08:28:33+0200 [-] calendarserver.tap.caldav.CalDAVStatisticsServer starting on "'/var/run/caldavd-stats.sock'"
    2011-10-26 08:28:33+0200 [-] [twistedcaldav.upgrade#warn] Upgrading to version 2
    2011-10-26 08:28:33+0200 [-] [twistedcaldav.upgrade#warn] Regular collection hidden: /Library/Server/Calendar and Contacts/Documents/calendars/__uids__/13/93/139328E4-76C8-427C-AD0C-CB6D102C7D7 F/outbox
    2011-10-26 08:28:33+0200 [-] [twistedcaldav.upgrade#warn] Regular collection hidden: /Library/Server/Calendar and Contacts/Documents/calendars/__uids__/21/D0/21D05230-A847-4B8D-B810-CFE793F634C B/outbox
    2011-10-26 08:28:33+0200 [-] [twistedcaldav.upgrade#warn] Regular collection hidden: /Library/Server/Calendar and Contacts/Documents/calendars/__uids__/84/5E/845E1E6D-F13B-4233-A4E5-0055F085388 1/outbox
    2011-10-26 08:28:33+0200 [-] [twistedcaldav.upgrade#warn] Regular collection hidden: /Library/Server/Calendar and Contacts/Documents/calendars/__uids__/B5/B6/B5B6BAA3-A5E0-4526-B7F3-15DC2811E08 3/outbox
    2011-10-26 08:28:33+0200 [-] [twistedcaldav.upgrade#warn] Regular collection hidden: /Library/Server/Calendar and Contacts/Documents/calendars/__uids__/E0/2B/E02BEF32-1714-4C5B-85DF-0184DA8B313 3/outbox
    2011-10-26 08:28:33+0200 [-] [twistedcaldav.upgrade#warn] Regular collection hidden: /Library/Server/Calendar and Contacts/Documents/calendars/__uids__/E2/64/E264473A-CEC7-4E1A-9756-59DE5AF62E5 0/outbox
    2011-10-26 08:28:33+0200 [-] [twistedcaldav.upgrade#warn] Regular collection hidden: /Library/Server/Calendar and Contacts/Documents/calendars/__uids__/wi/ki/wiki-zm-r/inbox
    2011-10-26 08:28:33+0200 [-] [twistedcaldav.upgrade#warn] Upgraded to version 2
    2011-10-26 08:28:33+0200 [-] [txdav.common.datastore.util.UpgradeDatabaseSchemaService#warn] Beginning database schema check.
    2011-10-26 08:28:33+0200 [-] [txdav.common.datastore.util.UpgradeDatabaseSchemaService#warn] Required schema version: 3.
    2011-10-26 08:28:33+0200 [-] [txdav.common.datastore.util.UpgradeDatabaseSchemaService#warn] Actual schema version: 3.
    2011-10-26 08:28:33+0200 [-] [txdav.common.datastore.util.UpgradeDatabaseSchemaService#warn] Schema version check complete: no upgrade needed.
    2011-10-26 08:28:33+0200 [-] [txdav.common.datastore.util.UpgradeDatabaseSchemaService#warn] Database schema check complete, launching database service.
    2011-10-26 08:28:33+0200 [-] [txdav.common.datastore.util.UpgradeToDatabaseService#warn] Beginning filesystem -> database upgrade.
    2011-10-26 08:28:33+0200 [-] [txdav.common.datastore.util.UpgradeToDatabaseService#warn] Migrating calendar UID 'XXXXXXXX-07B1-4733-AE89-8728D0C2CB4A'
    2011-10-26 08:28:34+0200 [-] [txdav.common.datastore.util.UpgradeToDatabaseService#warn] Migrating calendar UID 'XXXXXXXX-5E85-4CC9-902A-A101164BD83F'
    2011-10-26 08:28:34+0200 [Uninitialized] [twistedcaldav.notify.NotificationClientFactory#error] Unable to connect to notification server: [Failure instance: Traceback (failure with no frames): <class 'twisted.internet.error.ConnectionRefusedError'>: Connection was refused by other side: 61: Connection refused.
    2011-10-26 08:28:34+0200 [-] [txdav.common.datastore.util.UpgradeToDatabaseService#warn] Migrating calendar UID 'XXXXXXXX-76C8-427C-AD0C-CB6D102C7D7F'
    2011-10-26 08:28:37+0200 [Uninitialized] [twistedcaldav.notify.NotificationClientFactory#error] Unable to connect to notification server: [Failure instance: Traceback (failure with no frames): <class 'twisted.internet.error.ConnectionRefusedError'>: Connection was refused by other side: 61: Connection refused.
    2011-10-26 08:28:46+0200 [Uninitialized] [twistedcaldav.notify.NotificationClientFactory#error] Unable to connect to notification server: [Failure instance: Traceback (failure with no frames): <class 'twisted.internet.error.ConnectionRefusedError'>: Connection was refused by other side: 61: Connection refused.
    2011-10-26 08:28:58+0200 [-] [txdav.common.datastore.util.UpgradeToDatabaseService#warn] Migrating calendar UID 'XXXXXXXX-A847-4B8D-B810-CFE793F634CB'
    2011-10-26 08:28:59+0200 [-] [txdav.common.datastore.util.UpgradeToDatabaseService#warn] Migrating calendar UID 'XXXXXXXX-6E96-4671-9BEB-FAABDB623EA3'
    2011-10-26 08:28:59+0200 [-] [txdav.common.datastore.util.UpgradeToDatabaseService#warn] Migrating calendar UID 'XXXXXXXX-C56A-462D-90E0-D60285CCF751'
    2011-10-26 08:28:59+0200 [-] [txdav.common.datastore.util.UpgradeToDatabaseService#warn] Migrating calendar UID 'XXXXXXXX-F13B-4233-A4E5-0055F0853881'
    2011-10-26 08:29:07+0200 [Uninitialized] [twistedcaldav.notify.NotificationClientFactory#error] Unable to connect to notification server: [Failure instance: Traceback (failure with no frames): <class 'twisted.internet.error.ConnectionRefusedError'>: Connection was refused by other side: 61: Connection refused.
    2011-10-26 08:29:11+0200 [-] [txdav.common.datastore.util.UpgradeToDatabaseService#warn] Migrating calendar UID 'XXXXXXXX-A2A9-4B21-8735-577F24ABA6D5'
    2011-10-26 08:29:11+0200 [-] [txdav.common.datastore.util.UpgradeToDatabaseService#warn] Migrating calendar UID 'XXXXXXXX-7A55-4B63-AC42-43151A1F4810'
    2011-10-26 08:29:11+0200 [-] [txdav.common.datastore.util.UpgradeToDatabaseService#warn] Migrating calendar UID 'XXXXXXXX-F38C-489D-88A2-42B5F47BB4AD'
    2011-10-26 08:29:11+0200 [-] [txdav.common.datastore.util.UpgradeToDatabaseService#warn] Migrating calendar UID 'XXXXXXXX-A5E0-4526-B7F3-15DC2811E083'
    2011-10-26 08:29:12+0200 [-] [txdav.common.datastore.util.UpgradeToDatabaseService#warn] Migrating calendar UID 'XXXXXXXX-97BE-43C3-94F7-A8C99AB92425'
    2011-10-26 08:29:12+0200 [-] [txdav.common.datastore.util.UpgradeToDatabaseService#warn] Migrating calendar UID 'XXXXXXXX-9C74-412D-8DC0-69E3ED918CAD'
    2011-10-26 08:29:13+0200 [-] [txdav.common.datastore.util.UpgradeToDatabaseService#warn] Migrating calendar UID 'XXXXXXXX-D6BD-450E-A8A1-708C063EF05F'
    2011-10-26 08:29:13+0200 [-] [txdav.common.datastore.util.UpgradeToDatabaseService#warn] Migrating calendar UID 'XXXXXXXX-EC4C-43B6-A6A8-EA02F4024EB3'
    2011-10-26 08:29:14+0200 [-] [txdav.common.datastore.util.UpgradeToDatabaseService#warn] Migrating calendar UID 'XXXXXXXX-1714-4C5B-85DF-0184DA8B3133'
    2011-10-26 08:29:15+0200 [-] [txdav.common.datastore.util.UpgradeToDatabaseService#warn] Migrating calendar UID 'XXXXXXXX-CEC7-4E1A-9756-59DE5AF62E50'
    2011-10-26 08:29:26+0200 [-] [txdav.common.datastore.util.UpgradeToDatabaseService#warn] Migrating calendar UID 'XXXXXXXX-E113-470C-A824-0D988A8319FB'
    2011-10-26 08:29:30+0200 [-] [txdav.common.datastore.util.UpgradeToDatabaseService#warn] Migrating calendar UID 'wiki-XXXXXXXX'
    2011-10-26 08:29:32+0200 [-] [txdav.common.datastore.util.UpgradeToDatabaseService#warn] Migrating calendar UID 'wiki-XXXXXXXX'
    2011-10-26 08:29:32+0200 [-] [txdav.common.datastore.util.UpgradeToDatabaseService#warn] Migrating calendar UID 'wiki-XXXXXXXX'
    2011-10-26 08:29:33+0200 [-] Unhandled error in Deferred:
    2011-10-26 08:29:33+0200 [-] Unhandled Error
            Traceback (most recent call last):
              File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twi sted/internet/defer.py", line 361, in callback
                self._startRunCallbacks(result)
              File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twi sted/internet/defer.py", line 455, in _startRunCallbacks
                self._runCallbacks()
              File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twi sted/internet/defer.py", line 542, in _runCallbacks
                current.result = callback(current.result, *args, **kw)
              File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twi sted/internet/defer.py", line 1076, in gotResult
                _inlineCallbacks(r, g, deferred)
            --- <exception caught here> ---
              File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twi sted/internet/defer.py", line 1020, in _inlineCallbacks
                result = g.send(result)
              File "/usr/share/caldavd/lib/python/txdav/common/datastore/util.py", line 146, in doMigration
                uid = fileHome.uid()
            exceptions.AttributeError: 'NoneType' object has no attribute 'uid'
    2011-10-26 08:30:13+0200 [Uninitialized] [twistedcaldav.notify.NotificationClientFactory#error] Unable to connect to notification server: [Failure instance: Traceback (failure with no frames): <class 'twisted.internet.error.ConnectionRefusedError'>: Connection was refused by other side: 61: Connection refused.
    2011-10-26 08:33:19+0200 [Uninitialized] [twistedcaldav.notify.NotificationClientFactory#error] Unable to connect to notification server: [Failure instance: Traceback (failure with no frames): <class 'twisted.internet.error.ConnectionRefusedError'>: Connection was refused by other side: 61: Connection refused.
    2011-10-26 08:42:07+0200 [Uninitialized] [twistedcaldav.notify.NotificationClientFactory#error] Unable to connect to notification server: [Failure instance: Traceback (failure with no frames): <class 'twisted.internet.error.ConnectionRefusedError'>: Connection was refused by other side: 61: Connection refused.
    2011-10-26 09:06:13+0200 [Uninitialized] [twistedcaldav.notify.NotificationClientFactory#error] Unable to connect to notification server: [Failure instance: Traceback (failure with no frames): <class 'twisted.internet.error.ConnectionRefusedError'>: Connection was refused by other side: 61: Connection refused.
    2011-10-26 09:44:28+0200 [-] Received SIGTERM, shutting down.
    2011-10-26 09:44:28+0200 [-] (UNIX Port '/var/run/caldavd-stats.sock' Closed)
    2011-10-26 09:44:28+0200 [-] (UNIX Port '/var/run/caldavd/caldavd.sock' Closed)
    2011-10-26 09:44:28+0200 [-] Main loop terminated.
    2011-10-26 09:44:29+0200 [-] Server Shut Down.
    2011-10-26 09:46:13+0200 [-] Log opened.
    2011-10-26 09:46:13+0200 [-] twistd 11.0.0 (/System/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/ Contents/MacOS/Python 2.7.1) starting up.
    2011-10-26 09:46:13+0200 [-] reactor class: twext.internet.kqreactor.KQueueReactor.
    2011-10-26 09:46:13+0200 [-] calendarserver.accesslog.AMPLoggingFactory starting on "'/var/run/caldavd/caldavd.sock'"
    2011-10-26 09:46:13+0200 [-] calendarserver.tap.caldav.CalDAVStatisticsServer starting on "'/var/run/caldavd-stats.sock'"
    2011-10-26 09:46:13+0200 [-] [txdav.common.datastore.util.UpgradeDatabaseSchemaService#warn] Beginning database schema check.
    2011-10-26 09:46:13+0200 [-] [txdav.common.datastore.util.UpgradeDatabaseSchemaService#warn] Required schema version: 3.
    2011-10-26 09:46:14+0200 [-] [txdav.common.datastore.util.UpgradeDatabaseSchemaService#warn] Actual schema version: 3.
    2011-10-26 09:46:14+0200 [-] [txdav.common.datastore.util.UpgradeDatabaseSchemaService#warn] Schema version check complete: no upgrade needed.
    2011-10-26 09:46:14+0200 [-] [txdav.common.datastore.util.UpgradeDatabaseSchemaService#warn] Database schema check complete, launching database service.
    2011-10-26 09:46:14+0200 [-] [txdav.common.datastore.util.UpgradeToDatabaseService#warn] Beginning filesystem -> database upgrade.
    2011-10-26 09:46:14+0200 [-] Unhandled error in Deferred:
    2011-10-26 09:46:14+0200 [-] Unhandled Error
            Traceback (most recent call last):
              File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twi sted/application/service.py", line 184, in setServiceParent
                self.parent.addService(self)

    Just to let everybody know what I am trying at the moment:
    Found a thread where someone suggests to delete the postgresql-database:
    Detials in this thread https://discussions.apple.com/thread/3206720?start=0&tstart=0
    1. sudo serveradmin stop calendar addressbook
    2. copy old 10.6.8 calender data from backup ("../Library/CalendarServer/Documents/") to  /Library/Server/Calendar\ and\ Contacts/Documents/
    3. delete database: sudo dropdb -U _postgres caldav
    4. mv (if it exists)  /Library/Server/Calendar\ and\ Contacts/Documents/calendars-migrated to  /Library/Server/Calendar\ and\ Contacts/Documents/calendars-migrated-old
    5. sudo calendarserver_bootstrap_database
    6. now we start again: sudo serveradmin start calendar
    7. watch the log file - tail -f /var/log/caldavd/error.log
    And I get the same error as above but now I see a new one:
    2011-10-26 15:29:19+0200 [Uninitialized] [twistedcaldav.memcachepool.MemCacheClientFactory#error] MemCache connection failed: [Failure instance: Traceback (failure with no frames): <class 'twisted.internet.error.ConnectionRefusedError'>: Connection was refused by other side: 61: Connection refused.
    Every help is welcome, bye
    Christoph

  • Oracle dbms.set_role does not work in APEX application

    Hi, in our j2ee applications, we use secure application role. Basically, the data source use the app user schema to connect to the database. the app user only has create session privileges. the database logon trigger will copy a set of attribute to the local secure context. (ip address, session user, client id, application name). The applications explicitly invoke the stored procedure sec_mgr.set_role before any DMLs are executed.
    the sec_mgr.set_role will check the local context attribute , authorize the ip, application name, and set an appreciated role to this session based on session user.
    we want to apply the same framework to the APEX application. First, we change the paring schema to the app schema which only has create session privilege. then we put the plsql code in which sec_mgr.set_role is called in the application builder --> shared components ---> edit security attribute ---> Virtual Private Database (VPD).
    however, we got the error ORA-06565: cannot execute SET ROLE from within stored procedure
    the sec_mgr.set_role is defined as invoker's right(AUTHID CURRENT_USER)
    do i missing something in APEX to get it work?
    Thanks

    Please explain it does not work in APEX? Is the application updating tables that have a trigger? APEX does NOT override trigger actions. Is it possible the values your trigger is looking for are NOT available in your APEX application? Can you post the trigger code here for review?
    Thank you,
    Tony Miller
    Webster, TX
    What if you really were stalking a paranoid schizophrenic... Would they know?
    If this question is answered, please mark the thread as closed and assign points where earned..

  • Wintergame does not work with 10.8 and no assistence from apple or the seller

    I have bought in the official Apple Ap Store the game Wintergames. But it does not work with mit OSX 10.8.3
    Every i try to load this programm it brakes down. I have contacted the seller. He is not interested in the problem and gave only the hint to re-intall the programm. This i have done 3 times. It does not work. I have get in contact with the Apple Support. They answered me they were not responsible for that.
    And i ask me.... why do Apple sell programms in their own stores, that do not work.
    This is the remark it get, if i start this programm:
    Process:         wintergames [3566]
    Path:            /Applications/WinterGames.app/Contents/MacOS/wintergames
    Identifier:      com.rune-soft.wintergames
    Version:         1.2.0 (1.2)
    App Item ID:     427639548
    App External ID: 10667633
    Code Type:       X86 (Native)
    Parent Process:  launchd [211]
    User ID:         501
    Date/Time:       2013-04-10 13:31:54.394 +0200
    OS Version:      Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Interval Since Last Report:          29498 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report:  38 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      D1D3A31E-9A15-BB5E-1704-71380FD0FE3E
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000014
    VM Regions Near 0x14:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K]
    ---/--- SM=NUL  /Applications/WinterGames.app/Contents/MacOS/wintergames
        __TEXT                 0000000000001000-0000000000197000 [ 1624K]
    r-x/rwx SM=COW  /Applications/WinterGames.app/Contents/MacOS/wintergames
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.rune-soft.wintergames         0x00088619 MainMenu::createMenues() +
    393
    1   com.rune-soft.wintergames         0x000a7db4 MainMenu::init() + 4804
    2   com.rune-soft.wintergames         0x00070dfa
    WinMain(Windows::HINSTANCE__*, Windows::HINSTANCE__*, char*, int) + 394
    3   com.rune-soft.wintergames         0x000042ff -[GameAppDelegate
    mainWinThreadProc:] + 303
    4   com.rune-soft.wintergames         0x00003c46 -[GameAppDelegate
    applicationDidFinishLaunching:] + 342
    5   com.apple.Foundation              0x997f9152 __57-[NSNotificationCenter
    addObserver:selector:name:object:]_block_invoke_0 + 49
    6   com.apple.CoreFoundation          0x91e6c861
    ___CFXNotificationPost_block_invoke_0 + 257
    7   com.apple.CoreFoundation          0x91db7e9a _CFXNotificationPost + 2794
    8   com.apple.Foundation              0x997e1c88 -[NSNotificationCenter
    postNotificationName:object:userInfo:] + 92
    9   com.apple.AppKit                  0x934750fe -[NSApplication
    _postDidFinishNotification] + 367
    10  com.apple.AppKit                  0x93474db8 -[NSApplication
    _sendFinishLaunchingNotification] + 249
    11  com.apple.AppKit                  0x93471d0f
    -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 751
    12  com.apple.AppKit                  0x93471824
    -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] +
    378
    13  libobjc.A.dylib                   0x96383628 -[NSObject
    performSelector:withObject:withObject:] + 77
    14  com.apple.Foundation              0x997fc73a __76-[NSAppleEventManager
    setEventHandler:andSelector:forEventClass:andEventID:]_block_invoke_0 +
    121
    15  com.apple.Foundation              0x997fc291 -[NSAppleEventManager
    dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 430
    16  com.apple.Foundation              0x997fc08e
    _NSAppleEventManagerGenericHandler + 173
    17  com.apple.AE                      0x94d5aa35 aeDispatchAppleEvent(AEDesc
    const*, AEDesc*, unsigned long, unsigned char*) + 331
    18  com.apple.AE                      0x94d2ffbe
    dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 44
    19  com.apple.AE                      0x94d2fe7d aeProcessAppleEvent + 318
    20  com.apple.HIToolbox               0x99bd4c58 AEProcessAppleEvent + 100
    21  com.apple.AppKit                  0x9346dd4d _DPSNextEvent + 1655
    22  com.apple.AppKit                  0x9346d1dc -[NSApplication
    nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    23  com.apple.AppKit                  0x9346363c -[NSApplication run] + 855
    24  com.apple.AppKit                  0x93406666 NSApplicationMain + 1053
    25  com.rune-soft.wintergames         0x0000383a start + 54
    Thread 1:
    0   libsystem_kernel.dylib            0x99ad50ee __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x94fd80ac _pthread_workq_return + 45
    2   libsystem_c.dylib                 0x94fd7e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                 0x94fbfd2a start_wqthread + 30
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib            0x99ad59ae kevent + 10
    1   libdispatch.dylib                 0x975bbc71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                 0x975bb7a9 _dispatch_mgr_thread + 53
    Thread 3:
    0   libsystem_kernel.dylib            0x99ad50ee __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x94fd80ac _pthread_workq_return + 45
    2   libsystem_c.dylib                 0x94fd7e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                 0x94fbfd2a start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib            0x99ad50ee __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x94fd80ac _pthread_workq_return + 45
    2   libsystem_c.dylib                 0x94fd7e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                 0x94fbfd2a start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib            0x99ad48e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                 0x94fda2e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                 0x94fda572
    pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore    0x9070c6ad
    TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore    0x9070c184 TSWaitOnSemaphoreCommon
    + 272
    5   com.apple.CoreServices.CarbonCore    0x9070c40d
    TSWaitOnSemaphoreRelative + 24
    6   com.apple.QuickTimeComponents.component    0x9255f5ac 0x91f69000 +
    6251948
    7   libsystem_c.dylib                 0x94fd55b7 _pthread_start + 344
    8   libsystem_c.dylib                 0x94fbfd4e thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib            0x99ad48e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                 0x94fda2e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                 0x94fda572
    pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore    0x9070c6ad
    TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore    0x9070c184 TSWaitOnSemaphoreCommon
    + 272
    5   com.apple.CoreServices.CarbonCore    0x9070c40d
    TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore    0x906ad7da AIOFileThread(void*) +
    892
    7   libsystem_c.dylib                 0x94fd55b7 _pthread_start + 344
    8   libsystem_c.dylib                 0x94fbfd4e thread_start + 34
    Thread 7:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib            0x99ad27d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib            0x99ad1cb0 mach_msg + 68
    2   com.apple.audio.CoreAudio         0x901e5310
    HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned
    long, unsigned long, mach_msg_header_t*, bool, unsigned int) + 138
    3   com.apple.audio.CoreAudio         0x901dfe3e
    HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned
    int, int, int&, bool, unsigned int) + 70
    4   com.apple.audio.CoreAudio         0x901de67d
    HALC_ProxyIOContext::IOWorkLoop() + 1389
    5   com.apple.audio.CoreAudio         0x901de061
    HALC_ProxyIOContext::IOThreadEntry(void*) + 145
    6   com.apple.audio.CoreAudio         0x901e804a
    ___ZN19HALC_ProxyIOContextC2Emj_block_invoke_0 + 20
    7   com.apple.audio.CoreAudio         0x901ddf85 HALB_IOThread::Entry(void*)
    + 69
    8   libsystem_c.dylib                 0x94fd55b7 _pthread_start + 344
    9   libsystem_c.dylib                 0x94fbfd4e thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x0008849b  ecx: 0xbfffdfcc  edx: 0x02aa7200
      edi: 0x00000000  esi: 0x00000000  ebp: 0xbfffea58  esp: 0xbfffb5f0
       ss: 0x00000023  efl: 0x00010282  eip: 0x00088619   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000014
    Logical CPU: 2
    Binary Images:
        0x1000 -   0x196fff +com.rune-soft.wintergames (1.2.0 - 1.2)
    <A73F630B-CA42-6B3F-60C8-DA7B3E2676A3>
    /Applications/WinterGames.app/Contents/MacOS/wintergames
      0x2f2000 -   0x31dff7  com.apple.audio.OpenAL (1.6 - 1.6)
    <CDE1BC7D-871D-3BE7-A6DE-96F6806BB7E1>
    /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
      0x32d000 -   0x3befee +libfreetype.dylib (1)
    <AAF09BB8-8463-7133-C835-7B11945D39CB>
    /Applications/WinterGames.app/Contents/Frameworks/libfreetype.dylib
      0x3d3000 -   0x962fe3 +Cg.dylib (0)
    /Applications/WinterGames.app/Contents/Frameworks/Cg.dylib
    0x1093000 -  0x10a0ff3  com.apple.Librarian (1.1 - 1)
    <68F8F983-5F16-3BA5-BDA7-1A5451CC02BB>
    /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x1728000 -  0x1732ff7 +com.unsanity.smartcrashreports (Smart Crash
    Reports version 1.5 - 1.5) /Library/InputManagers/*/Smart Crash
    Reports.bundle/Contents/MacOS/Smart Crash Reports
    0x173f000 -  0x179cfff +com.cocoamug.CosmoPod (3.1)
    <DF7EFF0D-F74B-D0FC-3712-4E36D75D0043>
    /Library/InputManagers/*/CosmoPod.bundle/Contents/MacOS/CosmoPod
    0x17fa000 -  0x17fbffc +com.CASIO.EXLIM.component (1.1 - 1.1)
    /Library/QuickTime/CASIO AVI Importer.component/Contents/MacOS/CASIO AVI
    Importer
    0x4d25000 -  0x4dd0fff  libcrypto.0.9.7.dylib (106)
    <B96063DD-DBFC-320E-97C7-9ED5099051AC> /usr/lib/libcrypto.0.9.7.dylib
    0x4e14000 -  0x4f33ffb  com.apple.WebKit (8536 - 8536.28.10)
    <C181C3FB-91E3-38AB-A709-6B61935B3AD8>
    /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x5268000 -  0x526bfef  com.apple.LiveType.component (2.1.3 - 2.1.3)
    /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x60ad000 -  0x6d40ffb  com.apple.WebCore (8536 - 8536.28.10)
    <AA738A8C-808D-302A-B58D-404C58075C45>
    /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.
    framework/Versions/A/WebCore
    0x90d9000 -  0x913efde  com.apple.LiveType.framework (2.1.3 - 2.1.3)
    /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x915e000 -  0x91d0fff +com.DivXInc.DivXDecoder (6.4.0 - 6.4.0)
    /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x91de000 -  0x9224fc3  com.apple.motion.component (1.0 - 1.0)
    <77973A13-4E79-426F-853F-2318E52A2207>
    /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0x922a000 -  0x922d02f  Motion (1)
    <B5E862EE-E0FF-4F86-A789-98E3E601A18C>
    /Library/Frameworks/Motion.framework/Versions/A/Motion
    0xb1b2000 -  0xb346ffb  GLEngine (8.7.25)
    <37CEB6BA-0A46-3A34-BE81-7A0ED7DE1830>
    /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEn
    gine
    0xb37d000 -  0xb4fefff  libGLProgrammability.dylib (8.7.25)
    <CE1A4DFC-EEB2-37C1-B574-0338666C4017>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProg
    rammability.dylib
    0xb530000 -  0xb53bfff  libGPUSupport.dylib (8.7.25)
    <08BED1B3-FD0C-3137-BC0C-39EED6029D84>
    /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Librarie
    s/libGPUSupport.dylib
    0xb542000 -  0xb56dff7  GLRendererFloat (8.7.25)
    <2173CC9F-3A9A-37EB-BB50-3E60ABF7F5A3>
    /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bund
    le/GLRendererFloat
    0xb576000 -  0xb57effd  libcldcpuengine.dylib (2.2.16)
    <0BE2D018-66CC-3F69-B8F1-7A81EEEE09F4>
    /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpu
    engine.dylib
    0xef8c000 -  0xef8effd  com.apple.PDFImporter (2.2 - 22)
    <29C10CDB-1E25-39CE-AF37-69DC3DE4BB51>
    /System/Library/Components/PDFImporter.component/Contents/MacOS/PDFImporte
    r
    0xf394000 -  0xf452ff3  ColorSyncDeprecated.dylib (400)
    <A959DD25-E448-3563-B74E-E58C69961C76>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0xfc00000 -  0xfc05ff7  com.apple.DesktopVideoOut (1.2.4 - 1.2.4)
    /Library/QuickTime/DesktopVideoOut.component/Contents/MacOS/DesktopVideoOu
    t
    0xfc94000 -  0xfc99fff  com.apple.audio.AppleHDAHALPlugIn (2.3.7 -
    2.3.7fc4) <081467DA-1F55-3C0C-8081-062A985F36B7>
    /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugI
    n.bundle/Contents/MacOS/AppleHDAHALPlugIn
    0xfca0000 -  0xff90feb +org.perian.Perian (1.2.3 - 1.2.3)
    <722FFF4F-46EF-E5BE-70A6-42B5873D2B37>
    /Library/QuickTime/Perian.component/Contents/MacOS/Perian
    0x1040b000 - 0x105d9ff3 +com.MyCometG3.mp4vDecoder (0.7.7 - 2008.06.01)
    /Library/QuickTime/mp4vDecoder.component/Contents/MacOS/mp4vDecoder
    0x106a9000 - 0x106bbfd9  com.apple.FCP Uncompressed 422.component (1.5 -
    1.5) /Library/QuickTime/FCP Uncompressed 422.component/Contents/MacOS/FCP
    Uncompressed 422
    0x106c1000 - 0x10729feb  com.apple.AppleProResDecoder (3.0.2 - 5718)
    <3F859389-0434-372E-842F-F15A76B4A8B6>
    /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/Appl
    eProResDecoder
    0x1075a000 - 0x107a3fff  com.apple.AppleVAH264HW.component (3.0 - 3.0)
    <FDF1C720-ED0E-323E-BA44-21423DE18D61>
    /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH2
    64HW
    0x10867000 - 0x1086effc  com.apple.AppleGVAHW.component (1.1 - 1)
    <5DB91F15-3FD3-308F-8FC5-662562F3EA78>
    /System/Library/QuickTime/AppleGVAHW.component/Contents/MacOS/AppleGVAHW
    0x10875000 - 0x109c0fff  com.apple.AppleGVAFramework (5.0.6 - 5.0.6)
    <103CBDDD-E0C2-3B62-923B-AA46F2AB3CD7>
    /System/Library/PrivateFrameworks/AppleGVA.framework/Versions/A/AppleGVA
    0x109dc000 - 0x10a16fff  com.apple.QuickTimeFireWireDV.component (7.7.1 -
    2599.24) <1E9A8E7C-A9FD-34FD-AB7C-C3784BAB821F>
    /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/Qui
    ckTimeFireWireDV
    0x10a22000 - 0x10a66fe7  com.apple.DVCPROHDCodec (1.4 - 231)
    /Library/QuickTime/DVCPROHDCodec.component/Contents/MacOS/DVCPROHDCodec
    0x10a7b000 - 0x10b1efd3  com.apple.AppleHDVCodec (1.4.1 - 222)
    <68ABD695-E990-4F5F-9074-D2C4AE440637>
    /Library/QuickTime/AppleHDVCodec.component/Contents/MacOS/AppleHDVCodec
    0x10b3c000 - 0x10b5dfff  com.apple.AppleIntermediateCodec (2.0.1 - 5718)
    <D4B0F083-2E31-3508-BE1D-71F8BA917702>
    /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleIn
    termediateCodec
    0x10b6c000 - 0x10b70ff7  com.apple.AppleMPEG2Codec (1.0.2 - 220.1)
    <AD3A3083-F5A3-3ED1-8086-10A977DE9118>
    /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Code
    c
    0x10b75000 - 0x10b95ff3  com.apple.IMXCodec (1.3.1 - 147)
    /Library/QuickTime/IMXCodec.component/Contents/MacOS/IMXCodec
    0x10bad000 - 0x10bc5ff2  com.apple.applepixletvideo (1.2.31 - 1.2d31)
    <6093BFF1-355E-3F02-903F-FDB466324F99>
    /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/AppleP
    ixletVideo
    0x1255e000 - 0x125b0fff  com.apple.QuickTimeMPEG.component (7.7.1 -
    2599.24) <16DFA65D-83BF-3EC1-B904-C2088AF8CCD1>
    /System/Library/QuickTime/QuickTimeMPEG.component/Contents/MacOS/QuickTime
    MPEG
    0x70000000 - 0x7015eff7  com.apple.audio.units.Components (1.8 - 1.8)
    <F1EA4AF9-517E-3288-9AA4-F20546791B77>
    /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8e2fb000 - 0x8ec49ff3  com.apple.GeForceGLDriver (8.10.44 - 8.1.0)
    <4B231127-7885-33A3-9FC7-7EF42A066FD7>
    /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGL
    Driver
    0x8fe5d000 - 0x8fe8fe57  dyld (210.2.3)
    <23DBDBB1-1D21-342C-AC2A-0E55F27E6A1F> /usr/lib/dyld
    0x90007000 - 0x9000bffc  libGIF.dylib (849)
    <2F1DE1C6-4779-35A6-8ED5-BBF8ADD5962A>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.d
    ylib
    0x9000c000 - 0x901c8ffd  libicucore.A.dylib (491.11.2)
    <59A23F06-16AD-35F8-BA58-D17305232402> /usr/lib/libicucore.A.dylib
    0x901c9000 - 0x90227ff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1)
    <953DD669-8C6E-387D-AB3F-D8C8965347DF>
    /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x90228000 - 0x9022affb  libRadiance.dylib (849)
    <EAF7C74F-2A71-3A07-82E1-4FADEAFCF201>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadia
    nce.dylib
    0x90245000 - 0x90278ffb  com.apple.GSS (3.0 - 2.0)
    <9566A96D-C296-3ABD-A12A-E274C81C0B25>
    /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9033c000 - 0x905dfff3  com.apple.CoreImage (8.2.4 - 1.0.1)
    <BA4EE8D7-FE72-3CC3-801F-B69D8A8B426F>
    /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/Core
    Image.framework/Versions/A/CoreImage
    0x905e0000 - 0x90648fe7  libvDSP.dylib (380.6)
    <55780308-4DCA-3B10-9703-EAFC3E13A3FA>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL
    ib.framework/Versions/A/libvDSP.dylib
    0x90649000 - 0x9094eff7  com.apple.CoreServices.CarbonCore (1037.5 -
    1037.5) <356AE2DF-ABB0-319C-8B5B-2F33D693889F>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Ca
    rbonCore.framework/Versions/A/CarbonCore
    0x9094f000 - 0x90d4bfeb  com.apple.VideoToolbox (1.0 - 926.87)
    <D6460276-E1CF-317D-B32F-80EAE916168C>
    /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x90d4c000 - 0x90d6efff  libc++abi.dylib (26)
    <3AAA8D55-F5F6-362B-BA3C-CCAF0D3C8E27> /usr/lib/libc++abi.dylib
    0x90d6f000 - 0x90e7aff7  libJP2.dylib (849)
    <B2D0E844-C390-376C-91D9-F3501B5C7A83>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.d
    ylib
    0x90e7d000 - 0x90e85fff  libcopyfile.dylib (89)
    <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x90e86000 - 0x90f83ff7  com.apple.DiskImagesFramework (10.8.3 - 345)
    <26D0C7F8-E87E-3511-8388-8EE616A39D6D>
    /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImag
    es
    0x90f84000 - 0x90f8efff  libCSync.A.dylib (331.0.4)
    <71A7B331-C8A2-322C-AFB0-062EE9C3B848>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x90f8f000 - 0x90fafffd  com.apple.ChunkingLibrary (2.0 - 133.3)
    <FA45EAE8-BB10-3AEE-9FDC-C0C3A533FF48>
    /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chu
    nkingLibrary
    0x90fb0000 - 0x90fb6fff  libGFXShared.dylib (8.7.25)
    <4268BFAF-4529-3B40-A8B9-66F176AC20CF>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXSha
    red.dylib
    0x90fb7000 - 0x90fc6fff  libGL.dylib (8.7.25)
    <818E3E6B-9B00-3117-8157-9E95CB59A47B>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dyl
    ib
    0x90fc7000 - 0x90fc8fff  libdnsinfo.dylib (453.19)
    <3B523729-84A8-3D0B-B58C-3FC185060E67> /usr/lib/system/libdnsinfo.dylib
    0x90fc9000 - 0x90fccff9  libCGXType.A.dylib (331.0.4)
    <981B13D6-4E8B-3468-92D3-FE436B48C0DA>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x90fcd000 - 0x9108bff3  com.apple.ColorSync (4.8.0 - 4.8.0)
    <B534DE6A-3AF0-307C-B274-A4FCFC5BC696>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ColorSync.framework/Versions/A/ColorSync
    0x9108c000 - 0x9108dffd  com.apple.TrustEvaluationAgent (2.0 - 23)
    <E42347C0-2D3C-36A4-9200-757FFA61B388>
    /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/
    A/TrustEvaluationAgent
    0x9108e000 - 0x910a5fff  com.apple.GenerationalStorage (1.1 - 132.3)
    <DD0AA3DB-376D-37F3-AC5B-17AC9B9E0A63>
    /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A
    /GenerationalStorage
    0x910a6000 - 0x9117cfff  com.apple.DiscRecording (7.0 - 7000.2.4)
    <528052A0-FCFB-3867-BCDF-EE0F8A998C1C>
    /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecordin
    g
    0x911ba000 - 0x91343ff7  com.apple.vImage (6.0 - 6.0)
    <1D1F67FE-4F75-3689-BEF6-4A46C8039E70>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vIma
    ge.framework/Versions/A/vImage
    0x91344000 - 0x919d0ff3  com.apple.CoreAUC (6.16.13 - 6.16.13)
    <3DCF4456-AF8D-3E87-B00C-C56055AF9B8E>
    /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x919d1000 - 0x919dffff  libxar.1.dylib (105)
    <6498A359-2DBA-3EDA-8F00-EEB989DD0A93> /usr/lib/libxar.1.dylib
    0x919e0000 - 0x91a4fffb  com.apple.Heimdal (3.0 - 2.0)
    <964D9952-B0F2-34F6-8265-1823C0D5EAB8>
    /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x91a50000 - 0x91a95ff7  com.apple.NavigationServices (3.7 - 200)
    <6AB1A00C-BC94-3889-BA95-40A454B720CE>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Navigati
    onServices.framework/Versions/A/NavigationServices
    0x91a96000 - 0x91aa4ff7  libz.1.dylib (43)
    <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x91aa5000 - 0x91ab1ff7  com.apple.NetAuth (4.0 - 4.0)
    <52D23F12-0718-341D-B9DF-16C814022250>
    /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x91ab2000 - 0x91b4dfff  com.apple.CoreSymbolication (3.0 - 117)
    <F705A8CD-A04A-3A84-970A-7B04BC05DA97>
    /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/C
    oreSymbolication
    0x91b4e000 - 0x91b4ffff  liblangid.dylib (116)
    <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x91b50000 - 0x91cadffb  com.apple.QTKit (7.7.1 - 2599.24)
    <39CC892D-2874-33FE-BE30-87FE07D875BD>
    /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x91cae000 - 0x91cdbffb  com.apple.CoreServicesInternal (154.2 - 154.2)
    <DCCF604B-1DB8-3F09-8122-545E2E7F466D>
    /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/
    A/CoreServicesInternal
    0x91cdc000 - 0x91d6effb  libvMisc.dylib (380.6)
    <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL
    ib.framework/Versions/A/libvMisc.dylib
    0x91d6f000 - 0x91f57ffb  com.apple.CoreFoundation (6.8 - 744.18)
    <68AFEE40-0078-347E-9DEE-32CFE0062A10>
    /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundat
    ion
    0x91f58000 - 0x91f59fff  libquarantine.dylib (52)
    <D526310F-DC77-37EA-8F5F-83928EFA3262> /usr/lib/system/libquarantine.dylib
    0x91f66000 - 0x91f68fff  com.apple.securityhi (4.0 - 55002)
    <79E3B880-3AB7-3BF3-9CDF-117A45599545>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Security
    HI.framework/Versions/A/SecurityHI
    0x91f69000 - 0x92ca1fff  com.apple.QuickTimeComponents.component (7.7.1 -
    2599.24) <51BE2DF8-7B3B-36F5-8860-50071A8702E4>
    /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/Qui
    ckTimeComponents
    0x92ca2000 - 0x92d89ff7  libxml2.2.dylib (22.3)
    <56E973D6-6B55-3E67-8282-6BC982816488> /usr/lib/libxml2.2.dylib
    0x92d8a000 - 0x92da8ff3  com.apple.openscripting (1.3.6 - 148.3)
    <F3422C02-5ACB-343A-987B-A2D58EA2F5A8>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScri
    pting.framework/Versions/A/OpenScripting
    0x92da9000 - 0x92edcff3  com.apple.MediaControlSender (1.7 - 170.20)
    <7B1AC317-AFDB-394F-8026-9561930E696B>
    /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/
    MediaControlSender
    0x92edd000 - 0x92f0efff  com.apple.DictionaryServices (1.2 - 184.4)
    <CCB46C81-57C6-3F45-B77C-4D29E4CD6BA6>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Di
    ctionaryServices.framework/Versions/A/DictionaryServices
    0x92f0f000 - 0x93126fff  com.apple.CoreData (106.1 - 407.7)
    <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1>
    /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93127000 - 0x9313cfff  com.apple.ImageCapture (8.0 - 8.0)
    <F681CA5B-2871-32CF-8E9F-9220EB387407>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCap
    ture.framework/Versions/A/ImageCapture
    0x9313d000 - 0x9313efff  libsystem_sandbox.dylib (220.2)
    <61A79095-1978-3AAA-B0E0-658BC8E5F045>
    /usr/lib/system/libsystem_sandbox.dylib
    0x9313f000 - 0x93297ffb  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8)
    <0D36953C-9897-3E9B-8C70-847E90B203A2>
    /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93298000 - 0x932b1fff  com.apple.Kerberos (2.0 - 1)
    <8413EDD3-7E01-3D47-83FD-C14A5235DCD2>
    /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x932b2000 - 0x93309ff7  com.apple.ScalableUserInterface (1.0 - 1)
    <4B538E02-4F41-37FF-81F6-ED43DE0E78CC>
    /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/Scal
    ableUserInterface.framework/Versions/A/ScalableUserInterface
    0x9330a000 - 0x93ec6ff7  com.apple.AppKit (6.8 - 1187.37)
    <6FBB3467-04F9-395F-8EA8-C84347C5BE43>
    /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93ec7000 - 0x93eceffe  com.apple.agl (3.2.1 - AGL-3.2.1)
    <48407521-A4A3-3D28-8784-29E36AA04804>
    /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x93ecf000 - 0x93ed8fff  com.apple.DiskArbitration (2.5.2 - 2.5.2)
    <89822A83-B450-3363-8E9C-9B80CB4450B1>
    /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitr
    ation
    0x93ed9000 - 0x93f20ff3  com.apple.CoreMedia (1.0 - 926.87)
    <713B7213-D695-3162-9852-DBC114C26178>
    /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x93f21000 - 0x93f45fff  com.apple.PerformanceAnalysis (1.16 - 16)
    <7B7EAA0B-5208-32DB-B083-D4B62F37EC46>
    /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A
    /PerformanceAnalysis
    0x93f46000 - 0x946e1ff3  libclh.dylib (4.0.3 - 4.0.3)
    <CF4CE94B-D0CE-3E84-9640-5ABFC54378A5>
    /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dy
    lib
    0x946ee000 - 0x946fbff7  com.apple.AppleFSCompression (49 - 1.0)
    <9A066D13-6E85-36FC-8B58-FD46E51751CE>
    /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/
    AppleFSCompression
    0x946fc000 - 0x9473efff  libcurl.4.dylib (69.2)
    <8CC566A0-0B25-37E8-A6EC-30074C3CDB8C> /usr/lib/libcurl.4.dylib
    0x9473f000 - 0x94ad2ff3  com.apple.MediaToolbox (1.0 - 926.87)
    <F3623474-03AD-3A7F-8BD1-46A44A12E74E>
    /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x94ad3000 - 0x94be3ff3  com.apple.QuickTimeImporters.component (7.7.1 -
    2599.24) <3DBEE5E4-4C40-3390-8405-0D9E271084B2>
    /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/Quic
    kTimeImporters
    0x94be4000 - 0x94c25ff7  com.apple.framework.CoreWiFi (1.2.2 - 122.12)
    <D9479FFE-2D79-373C-9F73-E746664ACD5C>
    /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x94d1b000 - 0x94d1ffff  com.apple.IOSurface (86.0.4 - 86.0.4)
    <6431ACB6-561B-314F-9A2A-FAC1578FCC86>
    /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x94d22000 - 0x94d25fff  com.apple.help (1.3.2 - 42)
    <2B727B38-0E18-3108-9735-F65958924A91>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.fra
    mework/Versions/A/Help
    0x94d26000 - 0x94d26fff  com.apple.Carbon (154 - 155)
    <C0A26E7B-28F1-3C7E-879E-A3CF3ED5111C>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x94d27000 - 0x94d27fff  libSystem.B.dylib (169.3)
    <B81FAD7E-8808-3F49-807F-0AD68D0D7359> /usr/lib/libSystem.B.dylib
    0x94d28000 - 0x94d82ffb  com.apple.AE (645.6 - 645.6)
    <44556FF7-A869-399A-AEBB-F4E9263D9152>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE
    .framework/Versions/A/AE
    0x94d83000 - 0x94dfcffb  libType1Scaler.dylib (101.1)
    <C12C5169-4E91-3148-934F-8A9CAB8546C6>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x94dfd000 - 0x94e3dfff  com.apple.MediaKit (14 - 687)
    <8735A76E-7766-33F5-B3D2-86630070A1BA>
    /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x94e3e000 - 0x94e44fff  com.apple.print.framework.Print (8.0 - 258)
    <3E10C488-C390-33BD-8A4F-568E3021811D>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.fr
    amework/Versions/A/Print
    0x94e45000 - 0x94fbdff5  com.apple.QuartzCore (1.8 - 304.2)
    <FB737C74-C460-32A3-9107-D2112BAE6EBC>
    /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94fbe000 - 0x94fbefff  com.apple.vecLib (3.8 - vecLib 3.8)
    <83160DD1-5614-3E34-80EB-97041016EF1F>
    /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x94fbf000 - 0x9507cfeb  libsystem_c.dylib (825.26)
    <6E35A83F-1A5B-3AF9-8C6D-D7B57B25FB63> /usr/lib/system/libsystem_c.dylib
    0x9507d000 - 0x950d7fff  com.apple.Symbolication (1.3 - 93)
    <4A794D1C-DE02-3183-87BF-0008A602E4D3>
    /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbo
    lication
    0x950d8000 - 0x95364ffb  com.apple.RawCamera.bundle (4.04 - 680)
    <DD1D3CFC-1710-3186-A6C4-89B42F100117>
    /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x95365000 - 0x95366ffd  libunc.dylib (25)
    <5E1EEE9E-3423-33D7-95B2-E4D17DD08C18> /usr/lib/system/libunc.dylib
    0x95367000 - 0x9537cfff  com.apple.speech.synthesis.framework (4.1.12 -
    4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9537d000 - 0x953aaffe  libsystem_m.dylib (3022.6)
    <93CEEC8C-FAB5-313C-B0BB-0F4E91E6B878> /usr/lib/system/libsystem_m.dylib
    0x95412000 - 0x95424fff  libbsm.0.dylib (32)
    <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x954c3000 - 0x9550dff7  com.apple.framework.CoreWLAN (3.0.2 - 302.12)
    <1D7CB11D-C28C-3A25-865A-4AD6EE40D493>
    /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x9550e000 - 0x9550efff  com.apple.CoreServices (57 - 57)
    <83B793A6-720D-31F6-A76A-89EBB2644346>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x95511000 - 0x95513ffc  com.apple.QuickTimeH264.component (7.7.1 -
    2599.24) <54598D54-DBFC-3EA1-9712-05F4052A79E2>
    /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTime
    H264
    0x95514000 - 0x95558ff7  libGLU.dylib (8.7.25)
    <0CC1A4D8-C095-3F2B-B55C-FDEBEA0E9CFE>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dy
    lib
    0x95845000 - 0x95869fff  libJPEG.dylib (849)
    <CD42C17E-6B13-35BE-B585-9AE69CEA534F>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.
    dylib
    0x95904000 - 0x95930ff7  libsystem_info.dylib (406.17)
    <2731CC70-DF2E-3BD1-AE73-A3B83C531756>
    /usr/lib/system/libsystem_info.dylib
    0x95938000 - 0x959adff7  com.apple.ApplicationServices.ATS (332 - 341.1)
    <1D81B09C-98DB-3CDB-990B-459FAE3D8D7A>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ATS.framework/Versions/A/ATS
    0x959ae000 - 0x959b0fff  libdyld.dylib (210.2.3)
    <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x959b5000 - 0x95c75ff3  com.apple.security (7.0 - 55179.11)
    <165A3105-9ADF-329B-93FC-3C8EFAEDDD13>
    /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x95f11000 - 0x95f48ffa  com.apple.LDAPFramework (2.4.28 - 194.5)
    <B7BAC5B9-ABA9-3799-B8B5-D2DED9383C24>
    /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95f49000 - 0x96084ff7  libBLAS.dylib (1073.4)
    <FF74A147-05E1-37C4-BC10-7DEB57FE5326>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL
    ib.framework/Versions/A/libBLAS.dylib
    0x96085000 - 0x960aaffb  com.apple.framework.familycontrols (4.1 - 410)
    <B1755756-BEA2-3205-ADAA-68FCC32E60BD>
    /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/Fami
    lyControls
    0x960ab000 - 0x96142ff7  com.apple.ink.framework (10.8.2 - 150)
    <A9C3B735-7D5F-3D7D-AA70-2CC852D09CDE>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.fram
    ework/Versions/A/Ink
    0x96143000 - 0x96291fff  com.apple.CFNetwork (596.3.3 - 596.3.3)
    <EC7EF37B-B00E-374D-9E8F-E4E22D741059>
    /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x962a2000 - 0x962a9ff3  com.apple.NetFS (5.0 - 4.0)
    <FD429432-6DA7-3B41-9889-0E8B4ECB8A4F>
    /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x962aa000 - 0x9632fff7  com.apple.SearchKit (1.4.0 - 1.4.0)
    <4E947DC1-7985-3111-A864-58EDD6D955DC>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Se
    archKit.framework/Versions/A/SearchKit
    0x96330000 - 0x96355ff7  com.apple.CoreVideo (1.8 - 99.4)
    <A26DE896-32E0-3D5E-BA89-02AD23FA96B3>
    /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x96359000 - 0x96359fff  com.apple.ApplicationServices (45 - 45)
    <B23FD836-ECA1-3DF8-B043-9CA9779BE9DB>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Applic
    ationServices
    0x9635a000 - 0x9635dff7  com.apple.TCC (1.0 - 1)
    <ABE3CE50-C948-30B1-A343-837D8E7BA9F0>
    /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x96365000 - 0x96472057  libobjc.A.dylib (532.2)
    <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
    0x96477000 - 0x9658fff7  com.apple.coreavchd (5.6.0 - 5600.4.16)
    <D871D730-1D5C-34E7-98C7-0FF09964E618>
    /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x96590000 - 0x96948ffa  libLAPACK.dylib (1073.4)
    <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL
    ib.framework/Versions/A/libLAPACK.dylib
    0x96949000 - 0x96950fff  libsystem_dnssd.dylib (379.37)
    <49A44FB3-559D-3C7E-AA40-23F5A8E612AC>
    /usr/lib/system/libsystem_dnssd.dylib
    0x96951000 - 0x9696dfff  libPng.dylib (849)
    <BF2CB6F5-A2F1-35A4-93F7-ACA6D7F02084>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.d
    ylib
    0x9696e000 - 0x9696effd  com.apple.audio.units.AudioUnit (1.8 - 1.8)
    <D35BA73D-1E56-3A1D-9F9F-971F3BF8C136>
    /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9696f000 - 0x96bc8ff8  com.apple.JavaScriptCore (8536 - 8536.28.10)
    <B02A662A-7DE6-3C9D-AB08-AA746D48FF2B>
    /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptC
    ore
    0x96bc9000 - 0x96bfefff  libTrueTypeScaler.dylib (84.6)
    <B7DB746B-7A61-38EF-8CA7-408ED9C14A02>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x96bff000 - 0x96c00fff  libremovefile.dylib (23.2)
    <9813B2DB-2374-3AA2-99B6-AA2E9897B249> /usr/lib/system/libremovefile.dylib
    0x96c01000 - 0x96c3cfef  libGLImage.dylib (8.7.25)
    <6C0B2148-032A-3911-AB21-2E07606E3D9A>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImag
    e.dylib
    0x96c3d000 - 0x96c94ff3  com.apple.HIServices (1.20 - 417)
    <561A770B-8523-3D09-A763-11F872779A4C>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/HIServices.framework/Versions/A/HIServices
    0x96c95000 - 0x96c9fffe  com.apple.bsd.ServiceManagement (2.0 - 2.0)
    <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69>
    /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceM
    anagement
    0x96da2000 - 0x96db5ff9  com.apple.MultitouchSupport.framework (235.29 -
    235.29) <451701B6-03CE-3F26-9FF0-92D8DA1467EE>
    /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/M
    ultitouchSupport
    0x96db6000 - 0x96e1eff7  com.apple.framework.IOKit (2.0.1 - 755.22.5)
    <F9A70D23-1108-3616-9DE3-6C5730CA7AB2>
    /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96e1f000 - 0x96e35fff  com.apple.CFOpenDirectory (10.8 - 151.10)
    <3640B988-F915-3E0D-897C-CB04C95BA601>
    /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/C
    FOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x96e65000 - 0x96eb3ff3  com.apple.SystemConfiguration (1.12.2 - 1.12.2)
    <6E858B9F-337A-314E-88B7-24A274ACE568>
    /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/System
    Configuration
    0x96eb4000 - 0x96ef6ff7  libauto.dylib (185.1)
    <B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
    0x96ef7000 - 0x96ff5ff7  libFontParser.dylib (84.6)
    <7D3EB3CC-527E-3A74-816A-59CAFD2260A4>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x96ff6000 - 0x97004fff  com.apple.opengl (1.8.7 - 1.8.7)
    <0631EC1D-833B-39D2-A907-A9F7617E5504>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x97056000 - 0x97473fff  FaceCoreLight (2.4.1)
    <571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6>
    /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceC
    oreLight
    0x97474000 - 0x9747dfff  com.apple.CommerceCore (1.0 - 26.1)
    <8C28115C-6EC1-316D-9237-F4FBCBB778C5>
    /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Framewo
    rks/CommerceCore.framework/Versions/A/CommerceCore
    0x9747e000 - 0x97576ff9  libsqlite3.dylib (138.1)
    <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
    0x975ad000 - 0x975b6ffd  com.apple.audio.SoundManager (4.0 - 4.0)
    <6A0B4A5D-6320-37E4-A1CA-91189777848C>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSo
    und.framework/Versions/A/CarbonSound
    0x975b7000 - 0x975c9ff7  libdispatch.dylib (228.23)
    <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
    0x975ca000 - 0x97618ffb  libFontRegistry.dylib (100)
    <97D8F15F-F072-3AF0-8EF8-50C41781951C>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x97619000 - 0x97625ffa  com.apple.CrashReporterSupport (10.8.3 - 417)
    <A4A45B14-8992-3739-82BC-3C5E5C2686F9>
    /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/
    A/CrashReporterSupport
    0x97626000 - 0x976d5ff7  com.apple.CoreText (260.0 - 275.16)
    <7716C57B-E059-3B30-BBA8-AD7FF6EE3D35>
    /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x976d6000 - 0x97776ff7  com.apple.QD (3.42 - 285)
    <1B8307C6-AFA8-312E-BA5B-679070EF2CA1>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/QD.framework/Versions/A/QD
    0x97777000 - 0x977b9ffb  com.apple.RemoteViewServices (2.0 - 80.6)
    <AE962502-4539-3893-A2EB-9D384652AEAC>
    /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/
    RemoteViewServices
    0x977ba000 - 0x9781eff3  libstdc++.6.dylib (56)
    <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
    0x9781f000 - 0x97829fff  com.apple.speech.recognition.framework (4.1.5 -
    4.1.5) <774CDB2F-34A1-347A-B302-4746D256E921>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRe
    cognition.framework/Versions/A/SpeechRecognition
    0x9782a000 - 0x97841ff4  com.apple.CoreMediaAuthoring (2.1 - 914)
    <8D71DE7D-7F53-3052-9FAF-132CB61BA9F5>
    /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/
    CoreMediaAuthoring
    0x97842000 - 0x978a6fff  com.apple.datadetectorscore (4.1 - 269.2)
    <B4D53047-C613-32F8-9E08-0154EA81B487>
    /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/D
    ataDetectorsCore
    0x978b2000 - 0x978faff5  com.apple.opencl (2.2.18 - 2.2.18)
    <004A1DE4-49C6-3938-8B54-CD1DC23BDBE5>
    /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x978fb000 - 0x979affff  com.apple.coreui (2.0 - 181.1)
    <6BEEE83E-C878-3FE6-B521-8B32B3A35409>
    /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x979b0000 - 0x97a00ff7  com.apple.CoreMediaIO (307.0 - 4155)
    <49D36F54-D414-3745-8194-69FC3B632ED3>
    /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x97a01000 - 0x97a2aff7  libRIP.A.dylib (331.0.4)
    <FE496AFC-420A-3712-BC79-FC8C63ADB73D>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x97a2b000 - 0x97affff3  com.apple.backup.framework (1.4.2 - 1.4.2)
    <0473EB45-E9BF-3C10-B235-A6E2B960A88F>
    /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x97b00000 - 0x97b1dfff  libCRFSuite.dylib (33)
    <8E6E8815-406E-3A89-B96E-908FEFC27F0A> /usr/lib/libCRFSuite.dylib
    0x97b75000 - 0x97b79ffe  libcache.dylib (57)
    <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x97b7a000 - 0x97c12fff  com.apple.CoreServices.OSServices (557.6 -
    557.6) <E1600639-3EEC-3DF8-BD40-747BB2117988>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OS
    Services.framework/Versions/A/OSServices
    0x97c13000 - 0x97d2fffb  com.apple.desktopservices (1.7.3 - 1.7.3)
    <7157C51D-C695-3C9E-B532-F551E7E55B56>
    /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A
    /DesktopServicesPriv
    0x97d61000 - 0x97d61fff  libsystem_blocks.dylib (59)
    <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F>
    /usr/lib/system/libsystem_blocks.dylib
    0x97d62000 - 0x97d69fff  liblaunch.dylib (442.26.2)
    <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x97d6a000 - 0x97d6affd  libOpenScriptingUtil.dylib (148.3)
    <87895E27-88E2-3249-8D0E-B17E76FB00C1> /usr/lib/libOpenScriptingUtil.dylib
    0x97d6b000 - 0x97e78ff3  com.apple.ImageIO.framework (3.2.0 - 849)
    <B34C2380-51F6-38B1-BB6C-C2E5185D90EF>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x97ed1000 - 0x97f7bfff  com.apple.LaunchServices (539.7 - 539.7)
    <AF33EBD3-BC0B-30B5-B7DA-5CCCF12D7EDD>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/La
    unchServices.framework/Versions/A/LaunchServices
    0x97f80000 - 0x97f8afff  libsystem_notify.dylib (98.5)
    <7EEE9475-18F8-3099-B0ED-23A3E528ABE0>
    /usr/lib/system/libsystem_notify.dylib
    0x97f9a000 - 0x97f9dffc  libCoreVMClient.dylib (32.3)
    <35B63A60-DF0A-3FB3-ABB8-164B246A43CC>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVM
    Client.dylib
    0x98317000 - 0x98372fff  com.apple.htmlrendering (77 - 1.1.4)
    <CD33B313-7E85-3AC0-9EFF-6B0C05F10135>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRend
    ering.framework/Versions/A/HTMLRendering
    0x983a5000 - 0x98421ff3  com.apple.Metadata (10.7.0 - 707.5)
    <F2BC2AB4-A87A-3D37-A496-AC21EF3E1244>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Me
    tadata.framework/Versions/A/Metadata
    0x98422000 - 0x98864ff3  com.apple.CoreGraphics (1.600.0 - 331.0.4)
    <BC041647-FB5A-3D07-A253-F3D34E25BF6C>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x98865000 - 0x98869fff  com.apple.OpenDirectory (10.8 - 151.10)
    <E3D2E1A4-6E55-3C23-BCB4-7B9D31EFD605>
    /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirector
    y
    0x9886a000 - 0x9886afff  com.apple.Accelerate (1.8 - Accelerate 1.8)
    <4EC0548E-3A3F-310D-A366-47B51D5B6398>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9886b000 - 0x9886bfff  libkeymgr.dylib (25)
    <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x988d8000 - 0x988e8ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0)
    <C6076983-A02E-389E-BFC6-008EECC4C896>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x98965000 - 0x98966fff  libDiagnosticMessagesClient.dylib (8)
    <39B3D25A-148A-3936-B800-0D393A00E64F>
    /usr/lib/libDiagnosticMessagesClient.dylib
    0x989f0000 - 0x98a3cfff  libcorecrypto.dylib (106.2)
    <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6> /usr/lib/system/libcorecrypto.dylib
    0x992bb000 - 0x992c7ffe  libkxld.dylib (2050.22.13)
    <ED37AAAA-B1C0-3ADF-A897-3D580A845843> /usr/lib/system/libkxld.dylib
    0x992f8000 - 0x992f8fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8)
    <908B8D40-3FB5-3047-B482-3DF95025ECFC>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL
    ib.framework/Versions/A/vecLib
    0x992f9000 - 0x99575ff7  com.apple.QuickTime (7.7.1 - 2599.24)
    <5B1CA228-A6B3-39DF-A5CC-F981E59DAD1D>
    /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x99576000 - 0x995f0ff3  com.apple.securityfoundation (6.0 - 55115.4)
    <8A3DA1FE-1985-3ECB-945A-6B1E853B4BDC>
    /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/Securit
    yFoundation
    0x995f1000 - 0x99640ff6  libTIFF.dylib (849)
    <229EBA67-A2D3-30B7-8177-3CA5503360EC>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.
    dylib
    0x99641000 - 0x99732ffc  libiconv.2.dylib (34)
    <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x9973d000 - 0x99748fff  libcommonCrypto.dylib (60027)
    <8EE30FA5-AA8D-3FA6-AB0F-05DA8B0425D9>
    /usr/lib/system/libcommonCrypto.dylib
    0x99749000 - 0x99757ff3  libsystem_network.dylib (77.10)
    <11CAF6A8-17CF-3178-9348-57C5ED494BA8>
    /usr/lib/system/libsystem_network.dylib
    0x99758000 - 0x99781fff  libxslt.1.dylib (11.3)
    <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x99782000 - 0x99785ff7  libcompiler_rt.dylib (30)
    <CE5DBDB4-0124-3E2B-9105-989DF98DD108>
    /usr/lib/system/libcompiler_rt.dylib
    0x99786000 - 0x9978fff9  com.apple.CommonAuth (3.0 - 2.0)
    <34C4768C-EF8D-3DBA-AFB7-09148C8672DB>
    /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAu
    th
    0x99790000 - 0x99794ff7  libmacho.dylib (829)
    <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x99795000 - 0x99ab3ff3  com.apple.Foundation (6.8 - 945.16)
    <C4D95341-B4FF-30AC-815A-A23C019C57A3>
    /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x99ab4000 - 0x99abbffb  libunwind.dylib (35.1)
    <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x99abc000 - 0x99abfffc  libpam.2.dylib (20)
    <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x99ac0000 - 0x99adaffc  libsystem_kernel.dylib (2050.22.13)
    <70C520E8-0394-3DFB-823B-FE8C251C169A>
    /usr/lib/system/libsystem_kernel.dylib
    0x99adb000 - 0x99af8fff  libxpc.dylib (140.42)
    <1E419D55-C5C1-33FF-B52E-6C7FFBEA5E1F> /usr/lib/system/libxpc.dylib
    0x99af9000 - 0x99b5ffff  com.apple.print.framework.PrintCore (8.3 -
    387.2) <0F7665F5-33F0-3661-9BE2-7DD2890E304B>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/PrintCore.framework/Versions/A/PrintCore
    0x99b60000 - 0x99b70ff7  libsasl2.2.dylib (166)
    <D9080BA2-A365-351E-9FF2-7E0D4E8B1339> /usr/lib/libsasl2.2.dylib
    0x99b71000 - 0x99f54fff  com.apple.HIToolbox (2.0 - 626.1)
    <ECC3F04F-C4B7-35BF-B10E-183B749DAB92>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbo
    x.framework/Versions/A/HIToolbox
    0x99f55000 - 0x99f72ff7  libresolv.9.dylib (51)
    <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x99f73000 - 0x99f7fff8  libbz2.1.0.dylib (29)
    <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x99f80000 - 0x99fc2ff7  libcups.2.dylib (327.3)
    <C7A4A315-FA15-354B-8BC9-BE824C4EFF6D> /usr/lib/libcups.2.dylib
    0x9a01e000 - 0x9a080fff  libc++.1.dylib (65.1)
    <35EE57E1-2705-3C76-A75A-75655D720268> /usr/lib/libc++.1.dylib
    0x9a081000 - 0x9a083ffd  libCVMSPluginSupport.dylib (8.7.25)
    <C8FC6227-5209-3138-89CD-03CAD11F3EC3>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPl
    uginSupport.dylib
    0x9a084000 - 0x9a0a3ff3  com.apple.Ubiquity (1.2 - 243.15)
    <E10A2937-D671-3D14-AF8D-BA25E601F458>
    /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x9a312000 - 0x9a3f3fff  libcrypto.0.9.8.dylib (47)
    <219227B4-75D2-3CCC-B241-4BE8F8E1D4AB> /usr/lib/libcrypto.0.9.8.dylib
    0x9a3f4000 - 0x9a427ff5  libssl.0.9.8.dylib (47)
    <84896B24-4941-3149-A4CF-2BAD0F621002> /usr/lib/libssl.0.9.8.dylib
    0x9a659000 - 0x9a683ff9  com.apple.framework.Apple80211 (8.3.2 -
    832.18.1) <69AD5C5E-14A2-3E2B-AE28-2C7A7E4F5D0A>
    /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple802
    11
    0x9a684000 - 0x9a6c3ff7  com.apple.bom (12.0 - 192)
    <D245FA22-3B6C-3872-B485-BE84AD9098B2>
    /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9a6c4000 - 0x9a6faffb  com.apple.DebugSymbols (98 - 98)
    <D0293694-C381-30DF-8DD9-D1B04CD0E5F0>
    /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugS
    ymbols
    0x9a6fb000 - 0x9a6fbfff  com.apple.Cocoa (6.7 - 19)
    <01AA482A-677A-31CA-9EC9-05C57FDDE427>
    /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9a6fc000 - 0x9a700fff  com.apple.CommonPanels (1.2.5 - 94)
    <7B3FC9A4-0F71-31E7-88CE-1BD4CBB655B2>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPa
    nels.framework/Versions/A/CommonPanels
    0x9a707000 - 0x9a762ff7  com.apple.AppleVAFramework (5.0.19 - 5.0.19)
    <3C43A555-0A22-3D7C-A3FB-CFADDDA43E9B>
    /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 3
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 5760
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=228.2M resident=144.2M(63%)
    swapped_out_or_unallocated=84.0M(37%)
    Writable regions: Total=603.0M written=205.9M(34%) resident=473.2M(78%)
    swapped_out=0K(0%) unallocated=129.8M(22%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    (null) (reserved)                    40K        reserved VM address space
    (unallocated)
    ATS (font support)                 33.0M
    ATS (font support) (reserved)         4K        reserved VM address space
    (unallocated)
    CG backing stores                  4336K
    CG image                              4K
    CG raster data                      116K
    CG shared images                   1216K
    CoreServices                       5420K
    IOKit                             257.9M
    IOKit (reserved)                      4K        reserved VM address space
    (unallocated)
    MALLOC                            269.4M
    MALLOC guard page                    48K
    Memory tag=240                        4K
    Memory tag=242                       12K
    Memory tag=249                      192K
    Memory tag=35                      3976K
    Stack                              67.6M
    VM_ALLOCATE                        16.5M
    __DATA                             30.5M
    __DATA/__OBJC                       208K
    __IMAGE                             528K
    __IMPORT                             72K
    __LINKEDIT                         44.1M
    __OBJC                             1932K
    __OBJC/__DATA                       256K
    __PAGEZERO                            4K
    __TEXT                            184.1M
    __UNICODE                           544K
    mapped file                        76.4M
    shared memory                       424K
    ===========                      =======
    TOTAL                             998.4M
    TOTAL, minus reserved VM space    998.3M

    Hi,
    here are some more informations about the problem.
    The root CA certificate is imported as trusted in the system keychain of the server and the client. A certificate evaluation returns "valid certificates, trusted ...".
    The client bind fails with this messages, e.g. Kerio Control is able the use LDAPS, so it seams just the problem with the trustability of the certificates. Keychain trusts the certificates, OD client bind not, this is not so consistent.
    Any idee?
    Thanks
    Henri
    2013-03-14 19:39:02.776804 CET - Trigger - notified opendirectoryd:nodes;lastServerChanged;/LDAPv3/ldaps://macpro....:636
    2013-03-14 19:39:02.793467 CET - 71825.330426.330427, Module: AppleODClientLDAP - unable to create connection to LDAP server - ldap_search_ext_s for the ro
    otDSE failed with error 'server connection failed' (-1) error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed (self signed cert
    ificate in certificate chain)
    2013-03-14 19:39:02.793501 CE
    CONNECTED(00000003)
    depth=1 /C=DE/...
    Certificate chain
    0 s:/CN=macpro...
       i:/C=DE//OU=IT/CN=*.office.../emailAddress=admin@...
    verify error:num=19:self signed certificate in certificate chain
    verify return:0

  • Print does not work

    Print function does not work. This may have co-insided with install of v 30 - i'm not sure. I can print from other browsers. I have reset FF to its default settings. I have reset print_printer in about:config.
    My prefs.js file does not have any lines starting with "print_" - most lines start with "user_pref".
    When I clik on print I get a 2 tone sound like "ding-dong" and I do not get the printer dialog box.
    I can print in all other programs. I don't know what to try next - uninstall and re-install?
    Application Basics
    Name: Firefox
    Version: 30.0
    User Agent: Mozilla/5.0 (Windows NT 5.1; rv:30.0) Gecko/20100101 Firefox/30.0
    Crash Reports for the Last 3 Days
    All Crash Reports
    Extensions
    Name: Adblock Plus
    Version: 2.6.3
    Enabled: true
    ID: {d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}
    Name: Adblock Plus Pop-up Addon
    Version: 0.9.2
    Enabled: true
    ID: [email protected]
    Name: avast! Online Security
    Version: 9.0.2018.95
    Enabled: true
    ID: [email protected]
    Name: Classic Theme Restorer
    Version: 1.2.1
    Enabled: true
    ID: ClassicThemeRestorer@ArisT2Noia4dev
    Name: DuckDuckGo Plus
    Version: 0.3.16
    Enabled: true
    ID: jid1-ZAdIEUB7XOzOJw@jetpack
    Name: LastPass
    Version: 3.1.40
    Enabled: true
    ID: [email protected]
    Name: Tabs on Bottom
    Version: 0.5
    Enabled: true
    ID: [email protected]
    Name: The Addon Bar (restored)
    Version: 3.2
    Enabled: true
    ID: the-addon-bar@GeekInTraining-GiT
    Name: McAfee Security Scan Plus
    Version: 1.0
    Enabled: false
    ID: {e4f94d1e-2f53-401e-8885-681602c0ddd8}
    Name: Microsoft .NET Framework Assistant
    Version: 0.0.0
    Enabled: false
    ID: {20a82645-c095-46ed-80e3-08825760534b}
    Name: Skype Click to Call
    Version: 6.12.0.13601
    Enabled: false
    ID: {82AF8DCA-6DE9-405D-BD5E-43525BDAD38A}
    Important Modified Preferences
    browser.cache.disk.capacity: 358400
    browser.cache.disk.smart_size_cached_value: 358400
    browser.cache.disk.smart_size.first_run: false
    browser.cache.disk.smart_size.use_old_max: false
    browser.places.smartBookmarksVersion: 7
    browser.search.useDBForOrder: true
    browser.sessionstore.upgradeBackup.latestBuildID: 20140605174243
    browser.startup.homepage_override.buildID: 20140605174243
    browser.startup.homepage_override.mstone: 30.0
    browser.tabs.loadInBackground: false
    browser.tabs.warnOnClose: false
    dom.mozApps.used: true
    extensions.lastAppVersion: 30.0
    network.cookie.prefsMigrated: true
    places.database.lastMaintenance: 1404086800
    places.history.expiration.transient_current_max_pages: 80505
    plugin.disable_full_page_plugin_for_types: application/pdf
    plugin.importedState: true
    print.printer_Artisan_837(Network).print_bgcolor: false
    print.printer_Artisan_837(Network).print_bgimages: false
    print.printer_Artisan_837(Network).print_colorspace:
    print.printer_Artisan_837(Network).print_command:
    print.printer_Artisan_837(Network).print_downloadfonts: false
    print.printer_Artisan_837(Network).print_duplex: 1515870810
    print.printer_Artisan_837(Network).print_edge_bottom: 0
    print.printer_Artisan_837(Network).print_edge_left: 0
    print.printer_Artisan_837(Network).print_edge_right: 0
    print.printer_Artisan_837(Network).print_edge_top: 0
    print.printer_Artisan_837(Network).print_evenpages: true
    print.printer_Artisan_837(Network).print_footercenter:
    print.printer_Artisan_837(Network).print_footerleft: &PT
    print.printer_Artisan_837(Network).print_footerright: &D
    print.printer_Artisan_837(Network).print_headercenter:
    print.printer_Artisan_837(Network).print_headerleft: &T
    print.printer_Artisan_837(Network).print_headerright: &U
    print.printer_Artisan_837(Network).print_in_color: true
    print.printer_Artisan_837(Network).print_margin_bottom: 0.5
    print.printer_Artisan_837(Network).print_margin_left: 0.5
    print.printer_Artisan_837(Network).print_margin_right: 0.5
    print.printer_Artisan_837(Network).print_margin_top: 0.5
    print.printer_Artisan_837(Network).print_oddpages: true
    print.printer_Artisan_837(Network).print_orientation: 0
    print.printer_Artisan_837(Network).print_page_delay: 50
    print.printer_Artisan_837(Network).print_paper_data: 1
    print.printer_Artisan_837(Network).print_paper_height: 11.00
    print.printer_Artisan_837(Network).print_paper_name:
    print.printer_Artisan_837(Network).print_paper_size_type: 0
    print.printer_Artisan_837(Network).print_paper_size_unit: 0
    print.printer_Artisan_837(Network).print_paper_width: 8.50
    print.printer_Artisan_837(Network).print_plex_name:
    print.printer_Artisan_837(Network).print_resolution: 1515870810
    print.printer_Artisan_837(Network).print_resolution_name:
    print.printer_Artisan_837(Network).print_reversed: false
    print.printer_Artisan_837(Network).print_scaling: 1.00
    print.printer_Artisan_837(Network).print_shrink_to_fit: true
    print.printer_Artisan_837(Network).print_to_file: false
    print.printer_Artisan_837(Network).print_unwriteable_margin_bottom: 0
    print.printer_Artisan_837(Network).print_unwriteable_margin_left: 0
    print.printer_Artisan_837(Network).print_unwriteable_margin_right: 0
    print.printer_Artisan_837(Network).print_unwriteable_margin_top: 0
    privacy.donottrackheader.enabled: true
    privacy.sanitize.migrateFx3Prefs: true
    security.default_personal_cert: Select Automatically
    Graphics
    Adapter Description: NVIDIA Quadro FX 500/600 PCI
    Adapter Drivers: nv4_disp
    Adapter RAM: Unknown
    Device ID: 0x032b
    DirectWrite Enabled: false (0.0.0.0)
    Driver Date: 8-2-2004
    Driver Version: 6.5.7.3
    GPU #2 Active: false
    GPU Accelerated Windows: 1/1 Direct3D 9
    Vendor ID: 0x10de
    windowLayerManagerRemote: false
    AzureCanvasBackend: skia
    AzureContentBackend: cairo
    AzureFallbackCanvasBackend: cairo
    AzureSkiaAccelerated: 0
    JavaScript
    Incremental GC: true
    Accessibility
    Activated: false
    Prevent Accessibility: 0
    Library Versions
    NSPR
    Expected minimum version: 4.10.6
    Version in use: 4.10.6
    NSS
    Expected minimum version: 3.16 Basic ECC
    Version in use: 3.16 Basic ECC
    NSSSMIME
    Expected minimum version: 3.16 Basic ECC
    Version in use: 3.16 Basic ECC
    NSSSSL
    Expected minimum version: 3.16 Basic ECC
    Version in use: 3.16 Basic ECC
    NSSUTIL
    Expected minimum version: 3.16
    Version in use: 3.16

    Those '''user_pref("print.printer_Artisan_837 ....''' preferences are what needs to be deleted, with Firefox closed.
    I think that "ding-dong" error sound might be due to an old print job stuck in the print cache, though. Open the Windows Control Panel > Printers and Faxes and check the '''Status''' for that printer.

  • Spry tool tip does not work in template or child pages within an editable region. Why not?

    Ok. so I am getting pretty frustrated. I take the time to learn how to use CSS and to create a template page for a Contractor Site (www.ContractorInsurance.net). The idea is to create a page that I can use for different classes of Contractors...right?
    Then I get all happy about being able to insert ToolTip onto pages to help the user. Great!
    LIfe to turn to Sorrow after nearly five hours of searching for a "eeking" answer.
    So what good does it do to have an Editable region to update if we cannot have the flexibility to insert a tool tip on child pages?  Ok so the fast solution is to what... Have a question mark image, insert another apDiv, name it toolTip_Not and provide it with a show=hide behavior?
    RRRRRrrr...
    This really sucks not being able to find a solution within a reasonable amount of time.

    I have tried thank you. However...it is still not working.
    www.ContractorInsurance.net/course_of_construction.php
    The error message is "Making this change would require code that is locked by a template translator"
        Re: Spry tool tip does not work in template or child pages within an editable region. Why not?
        created by altruistic gramps in Spry Framework for Ajax - View the full discussion
    If you have a look at the following simple document with a tooltipTooltip trigger goes here.
    Tooltip content goes here.
    you will notice that a couple of lines have been placed in the HEAD section of the document. When using DW templates, the HEAD section is usually not editable, hence the error mesaage. By default, your template should have an editable region in it just before the closing tag. It looks like this: <!-- TemplateBeginEditable name="head" > <! TemplateEndEditable --> Dreamweaver should be able to find that editable region and insert the
    <script> tag there automatically. Because you don't have an editable region like that in the <head>, open the master template, and paste the code above just before the closing </head>
    tag. Gramps
    Edited to remove personal data

Maybe you are looking for

  • PackageMaker Javascript Error

    Back in May, I built a distribution package for installing a bunch of software the school (where I work) uses, like Firefox, Thunderbird, etc. I built individual installers for each thing (like one for apps to put into the Applications folders, anoth

  • PC-Cam Center for webcam

    Het i got a a creative webcam and i recently found it but i couldnt find the applications i got the drivers online but i cannot find the applications for it online is there anywhere i can get them?

  • When Removing Contacts – What Happens?

    I run skype on Vista.  When a contact is removed, it leaves the contacts list but reappears under the "call phones" box when I input the "+" symbol.  The deleated contacts are not gone, just moved.  How do I get rid of these contacts once and for all

  • Why is my hard drive not working?

    My hard drive stopped working suddenly. I was burning a disc and it only burned 1 image and quit. I tried putting a new disc in and it tried reading it and spit it out. It was a brand new blank DVD.

  • Shared folio from producer crashes

    I am trying to share a DPS pub with two separate team members, but the app crashes when they try playing it. One team member was able to get through the entire pub, but on subsequent views the app crashed right away. This is a demo pub and so I've in