Weblogic and lost database connection

Good Morning,
I'm working with Weblogic, connecting to an Oracle database on a rather unstable network. From time to time, the connection to the database is lost, and at the moment, this means having to restart weblogic.
Is there any way to configure weblogic to automatically reconnect to a database if the connection is lost and then restoired?
Thanks in advance for your help.

this forum is about Sun's J2EE sdk/application server.

Similar Messages

  • In the middle of downloading an update for garage band and lost the connection, now the app won't open or finish the download.  Can I reinstall the app without losing my music?

    In the middle of downloading an update for garage band and lost the connection, now the app won't open or finish the download.  Can I reinstall the app without losing my music?

    The obvious way to resolve this on a computer would be to uninstall the app, then reinstall it, however on an iOS device that would cause all the data assoicated with the app to be thrown away.
    Make sure your iTunes library has the latest updates for all your apps, then backup and restore the device. This should pull back a fresh copy of the app from your iTunes library and then give it the data from your device backup.
    tt2

  • I started to download a movie for rent and lost internet connection. Now it tells me to go to my downloads but I can't find them where should I look.

    I started to download a movie for rent and lost internet connection. Now it tells me to go to my downloads but I can't find them where should I look.

    Me too!!! It says check your Downloads, but unable to find Downloads...

  • HT201274 I was in the middle of a restore on my Ipad 2 and lost internet connection about 2/3 of the way through the firmware update, and now it fails everytime I try to restore. It says ERROR 2. Can anyone help?

    I was in the middle of a restore on my Ipad 2 and lost internet connection about 2/3 of the way through the firmware update, and now it fails everytime I try to restore. It says ERROR 2. Can anyone help?

    Resolve specific iTunes update and restore errors - Support - Apple
    Configure your security software
    Related errors: 2, 4, 6, 9, 1000, 1611, 9006, 9807, 9844. Sometimes as a result of this issue, a device might stop responding during the restore process.
    Check your security software and settings, which can block ports and prevent connection to Apple servers during update and restore.

  • Just purchased Airport Extreme ac and lost internet connection 3X. Reset to factory settings and worked for 2 days then lost connection and remedied by unplugging power supply. Anyone else having problems?

    Just purchased Airport Extreme ac and lost internet connection 3X in less than one week. Fisrt time, reset to factory settings and fixed problem. Has occurred 2 additional times and connection re-established by unplugging AP extreme. Anyone else having these problems?  Do I have a bad router?  Thanks.

    I definitely think this is a Mavericks issue.  My iMac running Mavericks is the ONLY system in the house that drops the network randomly while all other systems never lose the network.  No idea how to resolve this, but here is the workaround I'm posting: 
    I've had the 'network drop' issue with my Airport Extreme for the last 2 months.  It reconnects when I pull the ethernet cable and plug it back in.  I've tried downgrading the AE firmware, resetting to factory, etc.  Nothing worked.  I finally threw in the towel and created a script that monitors my network connectivity and restarts my interface if it senses it has dropped:
    #!/bin/ksh
    while true
    do
      yup=`ping -c1 -t2 www.google.com|grep from`
      if [[ -n $yup ]]
         then echo "Internet is connected!"
      else
            ifconfig en0 down; ifconfig en0 up
            echo "Down at `date +%m%d%Y%H%M%S`">>./dropped.out
      fi
      sleep 5
    clear
    done
    I know its a workaround, but its saving me the headache of constantly pulling my cable and putting it back in!
    Good luck!
    -Mike Gray

  • Open and close database connection jsp page

    hi there, i wanna know about how to open database connection to Mysql at the beginning of the page and close the connection at the end of the page. The jsp page contain all processing code.
    plz help me...thx thx

    <html>
    <head>
    <basefont face="Arial">
    </head>
    <body>
    <%@ page language="java" import="java.sql.*" %>
    <%!
    // define variables
    String id;
    String firstName;
    String lastName;
    // define database parameters, change this according to your needs
    String host="localhost";
    String user="root";
    String pass="";
    String db="test";
    String conn;
    %>
    <table border="1" cellspacing="1" cellpadding="5">
    <tr>
    <td><b>id</b></td>
    <td><b>first name</b></td>
    <td><b>last name</b></td>
    </tr>
    <%
    Class.forName("org.gjt.mm.mysql.Driver");
    // create connection string
    conn = "jdbc:mysql://" + host + "/" + db + "?user=" + user 
    + "&password=" + pass;
    // pass database parameters to JDBC driver
    Connection Conn = DriverManager.getConnection(conn);
    // query statement
    Statement SQLStatement = Conn.createStatement();
    // generate query
    // change this query according to your needs
    String Query = "SELECT id, firstname, lastname FROM abook";
    // get result
    ResultSet SQLResult = SQLStatement.executeQuery(Query);
    while(SQLResult.next())
       id = SQLResult.getString("id");
       firstName = SQLResult.getString("firstname");
       lastName = SQLResult.getString("lastname");
            out.println("<tr><td>" + id + "</td><td>" + 
         firstName + "</td><td>" + lastName + "</td></tr>");
    // close connection
    SQLResult.close();
    SQLStatement.close();
    Conn.close();
    %>
    </table>
    </body>
    </html>hi :-)
    i've got that on the net as part of the tutorial on jsp (long long time ago)
    you just have to be resourceful in finding solutions :-)
    try google :-) there are lot's of tutorial available in there ;-)
    goodluck ;-)
    regards,

  • When to open and close database connection

    im trying to connect to a oracle database using servlets
    when should i open and close the connection
    it works fine when i do both in the doPost() method
    but when i tried to open connection in init() methd .. it doesnt seem to work
    what should i do...
    the connection is initialised in the init() method but is null in the doPost() method

    " im trying to connect to a oracle database using servlets
    when should i open and close the connection
    it works fine when i do both in the doPost() method
    but when i tried to open connection in init() methd .. it doesnt seem to work
    what should i do...
    the connection is initialised in the init() method but is null in the doPost() method"
    1:
    without seeing the code i would say the the connection is null
    because you are storing it as a servlet class variable which is
    not thread safe.
    2:
    The best way to do it using connection pooling
    detailed docs on the tomcat website
    3:
    if you are not using connection pooling, then
    open and close the connection in the do* method
    or
    use init() to place the connection in the servletconfig
    and close in destroy() and use synching to access

  • Production and Development Database Connections

    Within JDeveloper I have created a database connection to a DEVELOPMENT database and am exposing PL/SQL packages in the development database as web services.
    I can develop and test successfully the exposed packages as web services, and can deploy and run them to a standalone OC4J container on my local machine.
    I then handover the generated EAR file to the production team who deploy the EAR as a web service to the Oc4j container in a remote 9i Application Server.
    This runs successfully from 9iAS.
    So far so good.
    If I have the same PL/SQL package in a live database and development database, but only have access to the development database, how can I expose the package in the live database?
    Can I have a database connection in JDeveloper with a connection name pointing to the development database connection, and have a connection defined in 9iAS with the same name pointing to the live database?
    Any information will be useful.
    Thanks,
    Claire.

    Per the J2EE "roles" definition this is a deployment role todo.
    I.E. the theory is; take a 3rd party ear, depoyee with your appserver vendor's
    deployment tool, edit the data-sources.xml imbeded in the ear on the fly, as
    deployment happens.
    Bake to reality-
    OC4J 903 is intended to be used with OEM for the J2EE spec'ed role of deployer. I'm
    headed this way, but not started the 903/OEM todo.
    Today, OC4J 902 and 902 Jdev, I deploy to a local instance of OC4J. I take that
    ear to production. I've written procedural instructions on poping open the ear and
    editing the data-sources.xml for the DB connection URL and possible login/passwords.
    BTW all your AppModule configurations will have to use data-sources DB connections else
    you'll have DB connection info littered in your bc4j.xcfg's for each AM deeper in your war's.
    I'd like to hear how this is supposed to work from some other folks? :)
    Good luck,
    curt

  • Uploaded Iphone 3GS to iOS 5 and lost internet connection (WiFi works)

    I uploaded my Iphone 3GS to iOS 5 and lost 3G internet connection (WiFi works). Anybody has that same problem??
    I lost all my music too. What I don't get is that when my iphone  is connected to Itunes, the music appears there (i even can play it), but the device doesn´t have it. I try to sync it but it doesn't work. What can I do?
    Help please!!!

    I went into Settings>General>Network>Cellular Data Network.and changed my APN in the 'Cellular Data' section from idata.o2.co.uk to wap.o2.co.uk. 
    wap.02.co.uk will not work for you, that is my provider's setting.  I would contact Telcel and see what your APN settings should be, but I get the impression having read through many conversations now that the upgrade to iOS5 sometimes changes these settings.
    I left the 'Visual Voicemail' and the 'MMS' settings the same and everything seems to be working ok...
    Oh - and I did lose my music after.  I've managed to restore my purchased by going to the iTunes store on my phone and dowloading them all again.
    Good luck, hope that sorts it.
    B

  • CT5508 wlc and Lost wan connections and remote AP case

    Hi Team
    I have an urgent question , my customer wants buy a couple of CT5508 in HA Cluster in Central Site, t he rest of remote sites would have controlled Aps
    The question is In the case of lost connectivity wan lines, What´s the end users issue?
    I mean, end users will be supported by wireless services locally by remote APs or not? new end users would attach to APs or not?
    Regards.

    Hi..You can use HREAP/Flexconnect Solution
    In this method there is a mode in whihc you can use local switching(mean once you lost the connection from Centrel site your remote AP will still provide the Wireless access and they will mapped to local vlans)
    Check this docs:
    H-Reap Design and Deployment Guide
    http://www.cisco.com/c/en/us/support/docs/wireless/5500-series-wireless-controllers/71250-h-reap-design-deploy.html
    H-REAP Modes of Operation Configuration Example
    http://www.cisco.com/c/en/us/support/docs/wireless-mobility/wireless-lan-wlan/81680-hreap-modes.html
    Regards
    Don't forget to rate helpful posts

  • I chat   during  just 5 minut and lost a connection

    Hi i've a problem with i chat, after the last update 10.6.6
    ichat dont work anymore... i use ichat with jabber and aim ... and i have two different problems
    with jabber i lost a connection and with aim i can connect the server but i cant write anything because every post cant arrive to my friends.
    so.. i read some topic like this here and i cancel a ichat agent list from library etcc.
    just but i don t resolve that problem.
    help me..
    this is my ichat connection errors
    OS Version: 10.6.5 (Build 10H574)
    Report Version: 4
    iChat Connection Log:
    2011-01-03 17:35:34 +0100: AVChat started with ID 155593002.
    2011-01-03 17:35:34 +0100: [email protected]: State change from AVChatNoState to AVChatStateWaiting.
    2011-01-03 17:35:34 +0100: 0x124ba4a70: State change from AVChatNoState to AVChatStateInvited.
    2011-01-03 17:35:40 +0100: 0x124ba4a70: State change from AVChatStateInvited to AVChatStateConnecting.
    2011-01-03 17:35:40 +0100: [email protected]: State change from AVChatStateWaiting to AVChatStateConnecting.
    2011-01-03 17:35:50 +0100: 0x124ba4a70: State change from AVChatStateConnecting to AVChatStateEnded.
    2011-01-03 17:35:50 +0100: 0x124ba4a70: Error -8 (Did not receive a response from 0x124ba4a70.)
    2011-01-03 17:35:50 +0100: [email protected]: State change from AVChatStateConnecting to AVChatStateEnded.
    2011-01-03 17:35:50 +0100: [email protected]: Error -8 (Did not receive a response from 0x124ba4a70.)
    Video Conference Error Report:
    315.222092 @/SourceCache/VideoConference/VideoConference-422.36/SIP/SIP.c:2917 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    317.221769 @/SourceCache/VideoConference/VideoConference-422.36/SIP/SIP.c:2917 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    Video Conference Support Report:
    3.504810 @/SourceCache/VideoConference/VideoConference-422.36/Video Conference/VCInitiateConference.m:2059 type=2 (00000000/0)
    [Connection Data for call id: 1 returns 1
    3.955295 @/SourceCache/VideoConference/VideoConference-422.36/Video Conference/VCInitiateConference.m:2074 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    4.275893 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:338 type=2 (00000000/0)
    [INVITE sip:user@lip:47653 SIP/2.0
    Via: SIP/2.0/UDP rip:54827;branch=z9hG4bK20feb8237ef02b3c
    Max-Forwards: 70
    To: 0 <sip:user@lip:47653>
    From: u0 <sip:[email protected]:16402>;tag=1522777837
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 1 INVITE
    Contact: <sip:user@rip:54827>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 734
    [v=0
    o=stuart 0 0 IN IP4 rip
    s=cam2camukboy3
    c=IN IP4 rip
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2160
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 54827 RTP/AVP 110 121 12 3 0
    a=rtcp:54827
    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:3778807649
    m=video 54827 RTP/AVP 123 126 34
    a=rtcp:54827
    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 54827 VIDEO 54827
    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:3898286491
    4.276528 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:2136 type=1 (00000000/0)
    [SIP/2.0 100 Trying
    Via: SIP/2.0/UDP rip:54827;branch=z9hG4bK20feb8237ef02b3c
    To: 0 <sip:user@lip:47653>
    From: u0 <sip:[email protected]:16402>;tag=1522777837
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 1 INVITE
    User-Agent: Viceroy 1.4
    Content-Length: 0
    4.276595 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:2136 type=1 (00000000/0)
    [SIP/2.0 180 Ringing
    Via: SIP/2.0/UDP rip:54827;branch=z9hG4bK20feb8237ef02b3c
    To: 0 <sip:user@lip:47653>;tag=660758520
    From: u0 <sip:[email protected]:16402>;tag=1522777837
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 1 INVITE
    Contact: <sip:user@sip:47653>
    User-Agent: Viceroy 1.4
    Content-Length: 0
    4.286439 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:2136 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:54827;branch=z9hG4bK20feb8237ef02b3c
    To: 0 <sip:user@lip:47653>;tag=660758520
    From: u0 <sip:[email protected]:16402>;tag=1522777837
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 1 INVITE
    Contact: <sip:user@sip:47653>
    User-Agent: Viceroy 1.4
    Content-Type: application/sdp
    Content-Length: 438
    v=0
    o=tommasoaiello 0 0 IN IP4 sip
    s=cam2camukboy3
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:3060
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 47653 RTP/AVP 110
    a=rtcp:47653
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:4096223884
    m=video 47653 RTP/AVP 126
    a=rtcp:47653
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 47653 VIDEO 47653
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=rtpID:3810701384
    4.389987 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:338 type=2 (00000000/0)
    [ACK sip:user@lip:47653 SIP/2.0
    Via: SIP/2.0/UDP rip:54827;branch=z9hG4bK2451caee39775700
    Max-Forwards: 70
    To: 0 <sip:user@lip:47653>;tag=660758520
    From: u0 <sip:[email protected]:16402>;tag=1522777837
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 1 ACK
    User-Agent: Viceroy 1.3
    Content-Length: 0
    4.593301 @:0 type=1 (00000000/0)
    [Bandwidth Detection]
    [Received the first BWD packet from rip:54827]
    4.907104 @:0 type=1 (00000000/0)
    [Bandwidth Detection]
    [Avg=101729.60, NSDev=3.67%]
    5.089262 @:0 type=1 (00000000/1)
    [Bandwidth Detection]
    [Avg=895535.40, NSDev=16.12%]
    5.484141 @:0 type=1 (00000000/2)
    [Bandwidth Detection]
    [Avg=1143476.70, NSDev=0.16%]
    30.000264 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:2136 type=1 (00000000/0)
    [MESSAGE sip:[email protected]:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:47653;branch=z9hG4bK6f012d3159f6e506
    Max-Forwards: 70
    To: u0 <sip:[email protected]:16402>;tag=1522777837
    From: 0 <sip:user@lip:47653>;tag=660758520
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.4
    Content-Type: text/plain
    Content-Length: 4
    PING]
    30.150162 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:338 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:47653;branch=z9hG4bK6f012d3159f6e506
    To: u0 <sip:[email protected]:16402>;tag=1522777837
    From: 0 <sip:user@lip:47653>;tag=660758520
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    30.152989 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:338 type=2 (00000000/0)
    [MESSAGE sip:user@lip:47653 SIP/2.0
    Via: SIP/2.0/UDP rip:54827;branch=z9hG4bK4ba9ed611ec24ffc
    Max-Forwards: 70
    To: 0 <sip:user@lip:47653>;tag=660758520
    From: u0 <sip:[email protected]:16402>;tag=1522777837
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 2 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    [PING]
    30.153238 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:2136 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:54827;branch=z9hG4bK4ba9ed611ec24ffc
    To: 0 <sip:user@lip:47653>;tag=660758520
    From: u0 <sip:[email protected]:16402>;tag=1522777837
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 2 MESSAGE
    User-Agent: Viceroy 1.4
    Content-Length: 0
    60.000276 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:2136 type=1 (00000000/0)
    [MESSAGE sip:[email protected]:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:47653;branch=z9hG4bK476b13a7529595a4
    Max-Forwards: 70
    To: u0 <sip:[email protected]:16402>;tag=1522777837
    From: 0 <sip:user@lip:47653>;tag=660758520
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 2 MESSAGE
    User-Agent: Viceroy 1.4
    Content-Type: text/plain
    Content-Length: 4
    PING]
    60.108427 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:338 type=2 (00000000/0)
    [MESSAGE sip:user@lip:47653 SIP/2.0
    Via: SIP/2.0/UDP rip:54827;branch=z9hG4bK486c25627b0839b1
    Max-Forwards: 70
    To: 0 <sip:user@lip:47653>;tag=660758520
    From: u0 <sip:[email protected]:16402>;tag=1522777837
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 3 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    [PING]
    60.108649 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:2136 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:54827;branch=z9hG4bK486c25627b0839b1
    To: 0 <sip:user@lip:47653>;tag=660758520
    From: u0 <sip:[email protected]:16402>;tag=1522777837
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 3 MESSAGE
    User-Agent: Viceroy 1.4
    Content-Length: 0
    60.179057 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:338 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:47653;branch=z9hG4bK476b13a7529595a4
    To: u0 <sip:[email protected]:16402>;tag=1522777837
    From: 0 <sip:user@lip:47653>;tag=660758520
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 2 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    90.000347 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:2136 type=1 (00000000/0)
    [MESSAGE sip:[email protected]:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:47653;branch=z9hG4bK776c058436bc4387
    Max-Forwards: 70
    To: u0 <sip:[email protected]:16402>;tag=1522777837
    From: 0 <sip:user@lip:47653>;tag=660758520
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 3 MESSAGE
    User-Agent: Viceroy 1.4
    Content-Type: text/plain
    Content-Length: 4
    PING]
    90.123464 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:338 type=2 (00000000/0)
    [MESSAGE sip:user@lip:47653 SIP/2.0
    Via: SIP/2.0/UDP rip:54827;branch=z9hG4bK270a44381593a5be
    Max-Forwards: 70
    To: 0 <sip:user@lip:47653>;tag=660758520
    From: u0 <sip:[email protected]:16402>;tag=1522777837
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 4 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    [PING]
    90.123667 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:2136 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:54827;branch=z9hG4bK270a44381593a5be
    To: 0 <sip:user@lip:47653>;tag=660758520
    From: u0 <sip:[email protected]:16402>;tag=1522777837
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 4 MESSAGE
    User-Agent: Viceroy 1.4
    Content-Length: 0
    90.194884 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:338 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:47653;branch=z9hG4bK776c058436bc4387
    To: u0 <sip:[email protected]:16402>;tag=1522777837
    From: 0 <sip:user@lip:47653>;tag=660758520
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 3 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    120.000357 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:2136 type=1 (00000000/0)
    [MESSAGE sip:[email protected]:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:47653;branch=z9hG4bK5af6b6fe388f78a6
    Max-Forwards: 70
    To: u0 <sip:[email protected]:16402>;tag=1522777837
    From: 0 <sip:user@lip:47653>;tag=660758520
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 4 MESSAGE
    User-Agent: Viceroy 1.4
    Content-Type: text/plain
    Content-Length: 4
    PING]
    120.135018 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:338 type=2 (00000000/0)
    [MESSAGE sip:user@lip:47653 SIP/2.0
    Via: SIP/2.0/UDP rip:54827;branch=z9hG4bK3fb70c233d8f6277
    Max-Forwards: 70
    To: 0 <sip:user@lip:47653>;tag=660758520
    From: u0 <sip:[email protected]:16402>;tag=1522777837
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 5 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    [PING]
    120.135241 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:2136 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:54827;branch=z9hG4bK3fb70c233d8f6277
    To: 0 <sip:user@lip:47653>;tag=660758520
    From: u0 <sip:[email protected]:16402>;tag=1522777837
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 5 MESSAGE
    User-Agent: Viceroy 1.4
    Content-Length: 0
    120.139216 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:338 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:47653;branch=z9hG4bK5af6b6fe388f78a6
    To: u0 <sip:[email protected]:16402>;tag=1522777837
    From: 0 <sip:user@lip:47653>;tag=660758520
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 4 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    150.000325 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:2136 type=1 (00000000/0)
    [MESSAGE sip:[email protected]:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:47653;branch=z9hG4bK7d33c9000c94bead
    Max-Forwards: 70
    To: u0 <sip:[email protected]:16402>;tag=1522777837
    From: 0 <sip:user@lip:47653>;tag=660758520
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 5 MESSAGE
    User-Agent: Viceroy 1.4
    Content-Type: text/plain
    Content-Length: 4
    PING]
    150.160665 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:338 type=2 (00000000/0)
    [MESSAGE sip:user@lip:47653 SIP/2.0
    Via: SIP/2.0/UDP rip:54827;branch=z9hG4bK619158b00741d59b
    Max-Forwards: 70
    To: 0 <sip:user@lip:47653>;tag=660758520
    From: u0 <sip:[email protected]:16402>;tag=1522777837
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 6 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    [PING]
    150.160877 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:2136 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:54827;branch=z9hG4bK619158b00741d59b
    To: 0 <sip:user@lip:47653>;tag=660758520
    From: u0 <sip:[email protected]:16402>;tag=1522777837
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 6 MESSAGE
    User-Agent: Viceroy 1.4
    Content-Length: 0
    150.166261 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:338 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:47653;branch=z9hG4bK7d33c9000c94bead
    To: u0 <sip:[email protected]:16402>;tag=1522777837
    From: 0 <sip:user@lip:47653>;tag=660758520
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 5 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    180.000371 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:2136 type=1 (00000000/0)
    [MESSAGE sip:[email protected]:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:47653;branch=z9hG4bK194f6fb627cb1503
    Max-Forwards: 70
    To: u0 <sip:[email protected]:16402>;tag=1522777837
    From: 0 <sip:user@lip:47653>;tag=660758520
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 6 MESSAGE
    User-Agent: Viceroy 1.4
    Content-Type: text/plain
    Content-Length: 4
    PING]
    180.154531 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:338 type=2 (00000000/0)
    [MESSAGE sip:user@lip:47653 SIP/2.0
    Via: SIP/2.0/UDP rip:54827;branch=z9hG4bK2acabe6a6e55e516
    Max-Forwards: 70
    To: 0 <sip:user@lip:47653>;tag=660758520
    From: u0 <sip:[email protected]:16402>;tag=1522777837
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 7 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    [PING]
    180.154724 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:2136 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:54827;branch=z9hG4bK2acabe6a6e55e516
    To: 0 <sip:user@lip:47653>;tag=660758520
    From: u0 <sip:[email protected]:16402>;tag=1522777837
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 7 MESSAGE
    User-Agent: Viceroy 1.4
    Content-Length: 0
    180.220301 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:338 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:47653;branch=z9hG4bK194f6fb627cb1503
    To: u0 <sip:[email protected]:16402>;tag=1522777837
    From: 0 <sip:user@lip:47653>;tag=660758520
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 6 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    210.000439 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:2136 type=1 (00000000/0)
    [MESSAGE sip:[email protected]:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:47653;branch=z9hG4bK2c389ba72bffcb11
    Max-Forwards: 70
    To: u0 <sip:[email protected]:16402>;tag=1522777837
    From: 0 <sip:user@lip:47653>;tag=660758520
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 7 MESSAGE
    User-Agent: Viceroy 1.4
    Content-Type: text/plain
    Content-Length: 4
    PING]
    210.144188 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:338 type=2 (00000000/0)
    [MESSAGE sip:user@lip:47653 SIP/2.0
    Via: SIP/2.0/UDP rip:54827;branch=z9hG4bK715547d640ae68dc
    Max-Forwards: 70
    To: 0 <sip:user@lip:47653>;tag=660758520
    From: u0 <sip:[email protected]:16402>;tag=1522777837
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 8 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    [PING]
    210.144349 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:2136 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:54827;branch=z9hG4bK715547d640ae68dc
    To: 0 <sip:user@lip:47653>;tag=660758520
    From: u0 <sip:[email protected]:16402>;tag=1522777837
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 8 MESSAGE
    User-Agent: Viceroy 1.4
    Content-Length: 0
    210.213822 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:338 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:47653;branch=z9hG4bK2c389ba72bffcb11
    To: u0 <sip:[email protected]:16402>;tag=1522777837
    From: 0 <sip:user@lip:47653>;tag=660758520
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 7 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    240.000422 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:2136 type=1 (00000000/0)
    [MESSAGE sip:[email protected]:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:47653;branch=z9hG4bK3f9351225fdff85f
    Max-Forwards: 70
    To: u0 <sip:[email protected]:16402>;tag=1522777837
    From: 0 <sip:user@lip:47653>;tag=660758520
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 8 MESSAGE
    User-Agent: Viceroy 1.4
    Content-Type: text/plain
    Content-Length: 4
    PING]
    240.143743 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:338 type=2 (00000000/0)
    [MESSAGE sip:user@lip:47653 SIP/2.0
    Via: SIP/2.0/UDP rip:54827;branch=z9hG4bK3291e238142bb99e
    Max-Forwards: 70
    To: 0 <sip:user@lip:47653>;tag=660758520
    From: u0 <sip:[email protected]:16402>;tag=1522777837
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 9 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    [PING]
    240.143988 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:2136 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:54827;branch=z9hG4bK3291e238142bb99e
    To: 0 <sip:user@lip:47653>;tag=660758520
    From: u0 <sip:[email protected]:16402>;tag=1522777837
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 9 MESSAGE
    User-Agent: Viceroy 1.4
    Content-Length: 0
    240.261683 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:338 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:47653;branch=z9hG4bK3f9351225fdff85f
    To: u0 <sip:[email protected]:16402>;tag=1522777837
    From: 0 <sip:user@lip:47653>;tag=660758520
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 8 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    268.442701 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:338 type=2 (00000000/0)
    [BYE sip:user@lip:47653 SIP/2.0
    Via: SIP/2.0/UDP rip:54827;branch=z9hG4bK756ae777604d933f
    Max-Forwards: 70
    To: 0 <sip:user@lip:47653>;tag=660758520
    From: u0 <sip:[email protected]:16402>;tag=1522777837
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 10 BYE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    268.442928 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:2136 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:54827;branch=z9hG4bK756ae777604d933f
    To: 0 <sip:user@lip:47653>;tag=660758520
    From: u0 <sip:[email protected]:16402>;tag=1522777837
    Call-ID: cb990168-1756-11e0-a5da-92f5fa624012@192-168-1-70
    CSeq: 10 BYE
    User-Agent: Viceroy 1.4
    Content-Length: 0
    302.126131 @/SourceCache/VideoConference/VideoConference-422.36/Video Conference/VCInitiateConference.m:2059 type=2 (00000000/0)
    [Connection Data for call id: 2 returns 1
    307.220249 @/SourceCache/VideoConference/VideoConference-422.36/Video Conference/VCInitiateConference.m:2074 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    307.221775 @/SourceCache/VideoConference/VideoConference-422.36/Video Conference/VCInitiateConference.m:2266 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    313.221651 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:2136 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK517b44aa41850cee
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1924497123
    Call-ID: 1e0175783cb1c1c-1757-11e0-89cc-dc429fe24012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.4
    Content-Type: application/sdp
    Content-Length: 712
    v=0
    o=tommasoaiello 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:3060
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 12 124 3 0
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpmap:124 iLBC/8000
    a=fmtp:124 mode=30
    a=rtpID:4239272906
    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 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:1982565263
    313.721798 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:2136 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK517b44aa41850cee
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1924497123
    Call-ID: 1e0175783cb1c1c-1757-11e0-89cc-dc429fe24012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.4
    Content-Type: application/sdp
    Content-Length: 712
    v=0
    o=tommasoaiello 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:3060
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 12 124 3 0
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpmap:124 iLBC/8000
    a=fmtp:124 mode=30
    a=rtpID:4239272906
    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 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:1982565263
    314.721946 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:2136 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK517b44aa41850cee
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1924497123
    Call-ID: 1e0175783cb1c1c-1757-11e0-89cc-dc429fe24012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.4
    Content-Type: application/sdp
    Content-Length: 712
    v=0
    o=tommasoaiello 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:3060
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 12 124 3 0
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpmap:124 iLBC/8000
    a=fmtp:124 mode=30
    a=rtpID:4239272906
    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 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:1982565263
    315.222343 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:2136 type=1 (00000000/0)
    [INVITE sip:user@rip:49176 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK7c6304c327b0e57b
    Max-Forwards: 70
    To: "u0" <sip:user@rip:49176>
    From: "0" <sip:user@lip:16402>;tag=770414031
    Call-ID: 1e0175784fc697e-1757-11e0-89cc-aaeefc004012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.4
    Content-Type: application/sdp
    Content-Length: 712
    v=0
    o=tommasoaiello 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:3060
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 12 124 3 0
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpmap:124 iLBC/8000
    a=fmtp:124 mode=30
    a=rtpID:4239272906
    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 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:1982565263
    315.722494 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:2136 type=1 (00000000/0)
    [INVITE sip:user@rip:49176 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK7c6304c327b0e57b
    Max-Forwards: 70
    To: "u0" <sip:user@rip:49176>
    From: "0" <sip:user@lip:16402>;tag=770414031
    Call-ID: 1e0175784fc697e-1757-11e0-89cc-aaeefc004012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.4
    Content-Type: application/sdp
    Content-Length: 712
    v=0
    o=tommasoaiello 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:3060
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 12 124 3 0
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpmap:124 iLBC/8000
    a=fmtp:124 mode=30
    a=rtpID:4239272906
    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 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:1982565263
    316.722653 @/SourceCache/VideoConference/VideoConference-422.36/SIP/Transport.c:2136 type=1 (00000000/0)
    [INVITE sip:user@rip:49176 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK7c6304c327b0e57b
    Max-Forwards: 70
    To: "u0" <sip:user@rip:49176>
    From: "0" <sip:user@lip:16402>;tag=770414031
    Call-ID: 1e0175784fc697e-1757-11e0-89cc-aaeefc004012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.4
    Content-Type: application/sdp
    Content-Length: 712
    v=0
    o=tommasoaiello 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:3060
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 12 124 3 0
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpmap:124 iLBC/8000
    a=fmtp:124 mode=30
    a=rtpID:4239272906
    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 30:640:480:640:480:30
    a=fmtp:123 imagesize 0 rules 30:640:480:640:480:30
    a=rtpID:1982565263
    Video Conference User Report:
    0.000000 @:0 type=5 (00000000/16402)
    [Local SIP port]
    3.299752 @:0 type=5 (00000000/47653)
    [Local SIP port]
    4.277363 @/SourceCache/VideoConference/VideoConference-422.36/Video Conference/VideoConferenceMultiController.m:2547 type=5 (FFFFFFFF/0)
    [Caller User Agent: Viceroy 1.3]
    4.277365 @/SourceCache/VideoConference/VideoConference-422.36/Video Conference/VideoConferenceGlobalObjects.m:1670 type=5 (00000000/0)
    [Router]
    [PORT RESTRICTED]
    4.277370 @/SourceCache/VideoConference/VideoConference-422.36/Video Conference/VideoConferenceGlobalObjects.m:1672 type=5 (00000000/0)
    [CommNAT Result: 0x000001d0
    4.277878 @:0 type=5 (00000000/1)
    [Accept conference from user]
    [cam2camukboy3]
    5.738358 @:0 type=5 (00000000/60)
    [Detected bandwidth (kbits/s): 431 up, 1143 down. (00000000)
    5.744619 @/SourceCache/VideoConference/VideoConference-422.36/Video Conference/VideoConferenceMultiController.m:2423 type=5 (00000000/0)
    [Start Conference With UserID: cam2camukboy3]
    301.921969 @:0 type=5 (00000000/44183)
    [Local SIP port]
    307.221779 @/SourceCache/VideoConference/VideoConference-422.36/Video Conference/VideoConferenceGlobalObjects.m:1670 type=5 (00000000/0)
    [Router]
    [PORT RESTRICTED]
    307.221785 @/SourceCache/VideoConference/VideoConference-422.36/Video Conference/VideoConferenceGlobalObjects.m:1672 type=5 (00000000/0)
    [CommNAT Result: 0x000001d0
    Binary Images Description for "iChat":
    0x100000000 - 0x100281fff com.apple.iChat 5.0.3 (745) /Applications/iChat.app/Contents/MacOS/iChat
    0x100330000 - 0x10037afff com.apple.IMCore 5.0.5 (747) /System/Library/Frameworks/IMCore.framework/Versions/A/IMCore
    0x10039c000 - 0x1003f3fff com.apple.Symbolication 1.1 (67) /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x100426000 - 0x10043efff com.apple.iChat.InstantMessage 5.0.5 (747) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x100450000 - 0x10047ffff com.apple.iChat.IMRenderingFoundation 5.0.5 (747) /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMRenderingFound ation.framework/Versions/A/IMRenderingFoundation
    0x1004a6000 - 0x1004aefff com.apple.iChat.IMUtils 5.0.5 (747) /System/Library/Frameworks/IMCore.framework/Frameworks/IMUtils.framework/Versio ns/A/IMUtils
    0x1004b8000 - 0x1004bcfff com.apple.iChat.IMSecurityUtils 5.0.5 (747) /System/Library/Frameworks/IMCore.framework/Frameworks/IMSecurityUtils.framewor k/Versions/A/IMSecurityUtils
    0x1004c3000 - 0x1004e6fff com.apple.iChat.IMFoundation 5.0.5 (747) /System/Library/Frameworks/IMCore.framework/Frameworks/IMFoundation.framework/V ersions/A/IMFoundation
    0x10050b000 - 0x1005c1fff com.apple.Bluetooth 2.3.8 (2.3.8f7) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x10062e000 - 0x100637fff com.apple.DisplayServicesFW 2.3.0 (283) /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x100641000 - 0x100641fff com.apple.Cocoa 6.6 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x100644000 - 0x100644fff com.apple.ApplicationServices 38 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x100647000 - 0x100889fff com.apple.AddressBook.framework 5.0.3 (875) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x1009c3000 - 0x100b34fff com.apple.viceroy.framework 422.34 (422.36) /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x100b9f000 - 0x100b9ffff com.apple.Carbon 150 (152) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x100ba2000 - 0x100e28fff com.apple.security 6.1.1 (37594) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x100f1e000 - 0x100f7efff com.apple.framework.IOKit 2.0 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x100fa2000 - 0x100fb1fff com.apple.opengl 1.6.11 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x100fba000 - 0x101039fff com.apple.audio.CoreAudio 3.2.6 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x10106f000 - 0x1011ecfff com.apple.WebKit 6533.19 (6533.19.4) /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x1012c0000 - 0x101309fff com.apple.securityinterface 4.0.1 (37214) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x10133b000 - 0x1014f9fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x101568000 - 0x10158ffff com.apple.frameworks.preferencepanes 13.5 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x1015b0000 - 0x10194dfff com.apple.QuartzCore 1.6.3 (227.34) /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x101a7b000 - 0x101beafff com.apple.QTKit 7.6.6 (1756) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x101cd4000 - 0x101dfafff com.apple.audio.toolbox.AudioToolbox 1.6.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x101e69000 - 0x101e69fff com.apple.quartzframework 1.5 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x101e6c000 - 0x1020d6fff com.apple.QuartzComposer 4.2 ({156.28}) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x102230000 - 0x102230fff com.apple.Accelerate 1.6 (Accelerate 1.6) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x102233000 - 0x10223efff com.apple.CrashReporterSupport 10.6.5 (252) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x10224b000 - 0x10227ffff com.apple.remotedesktop.screensharing 1.2.1 /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x102294000 - 0x1022b8fff com.apple.ScreenSaver 3.0.3 /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x1022d2000 - 0x1023f3fff libcrypto.0.9.8.dylib /usr/lib/libcrypto.0.9.8.dylib
    0x10245a000 - 0x1024affff com.apple.framework.familycontrols 2.0.1 (2010) /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x1024cc000 - 0x1024eefff libexpat.1.dylib /usr/lib/libexpat.1.dylib
    0x1024f4000 - 0x1024f5fff com.apple.audio.units.AudioUnit 1.6.5 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x1024fa000 - 0x102515fff com.apple.datadetectors 2.1 (102.2) /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x102529000 - 0x102570fff com.apple.QuickLookFramework 2.3 (327.6) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x10259b000 - 0x1025fdfff com.apple.datadetectorscore 2.0 (80.7) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x102631000 - 0x1026c0fff com.apple.iLifeMediaBrowser 2.5.2 (468) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x10273c000 - 0x102756fff com.apple.ScriptingBridge 1.1.2 (???) /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
    0x102768000 - 0x1027a9fff com.apple.CoreMedia 0.484.20 (484.20) /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x1027c6000 - 0x1028eefff com.apple.MediaToolbox 0.484.20 (484.20) /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x102962000 - 0x102e66fff com.apple.VideoToolbox 0.484.20 (484.20) /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x102f2e000 - 0x102f75fff com.apple.coreui 2 (114) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x102f9a000 - 0x103017fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x103078000 - 0x103239fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x1032ca000 - 0x103380fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x103394000 - 0x103394fff com.apple.CoreServices 44 /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x103397000 - 0x10350efff com.apple.CoreFoundation 6.6.4 (550.42) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x103627000 - 0x1038aafff com.apple.Foundation 6.6.4 (751.42) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x103a22000 - 0x103a47fff com.apple.CoreVideo 1.6.2 (45.6) /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x103a60000 - 0x104456fff com.apple.AppKit 6.6.7 (1038.35) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x104a4b000 - 0x104a6bfff com.apple.DirectoryService.Framework 3.6 (621.9) /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x104a75000 - 0x104ab2fff com.apple.LDAPFramework 2.0 (120.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x104abf000 - 0x104b00fff com.apple.SystemConfiguration 1.10.5 (1.10.2) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x104b24000 - 0x104b35fff com.apple.DSObjCWrappers.Framework 10.6 (134) /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x104b42000 - 0x104bbffff com.apple.backup.framework 1.2.2 /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x104bde000 - 0x104d1cfff com.apple.CoreData 102.1 (251) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x104db4000 - 0x104dbbfff com.apple.OpenDirectory 10.6 /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x104dc4000 - 0x104dd3fff com.apple.NetFS 3.2.1 /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x104ddc000 - 0x104e28fff libauto.dylib /usr/lib/libauto.dylib
    0x104e35000 - 0x104e39fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x104e3c000 - 0x104f53fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x104f7c000 - 0x104f8dfff libz.1.dylib /usr/lib/libz.1.dylib
    0x104f92000 - 0x105064fff com.apple.CFNetwork 454.11.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x1050d7000 - 0x105190fff libsqlite3.dylib /usr/lib/libsqlite3.dylib
    0x1051a0000 - 0x1054d4fff com.apple.CoreServices.CarbonCore 861.23 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x10554d000 - 0x105597fff com.apple.Metadata 10.6.3 (507.12) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x1055c1000 - 0x10567efff com.apple.CoreServices.OSServices 357 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x1056d8000 - 0x105768fff com.apple.SearchKit 1.3.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x1057a6000 - 0x1057e1fff com.apple.AE 496.4 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x1057fb000 - 0x10589bfff com.apple.LaunchServices 362.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x1058e1000 - 0x105909fff com.apple.DictionaryServices 1.1.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x105923000 - 0x105929fff com.apple.DiskArbitration 2.3 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x105932000 - 0x105948fff libbsm.0.dylib /usr/lib/libbsm.0.dylib
    0x105951000 - 0x10595ffff libkxld.dylib /usr/lib/system/libkxld.dylib
    0x105963000 - 0x10598efff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x105999000 - 0x105a7efff com.apple.DesktopServices 1.5.9 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x105acd000 - 0x105dcbfff com.apple.HIToolbox 1.6.3 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x105ef7000 - 0x105f02fff com.apple.speech.recognition.framework 3.11.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x105f0c000 - 0x105f0dfff liblangid.dylib /usr/lib/liblangid.dylib
    0x105f11000 - 0x105f27fff com.apple.MultitouchSupport.framework 207.10 /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x105f34000 - 0x106631fff com.apple.CoreGraphics 1.545.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x106723000 - 0x1068dafff com.apple.ImageIO.framework 3.0.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x106940000 - 0x1069befff com.apple.CoreText 3.5.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x1069fc000 - 0x106a96fff com.apple.ApplicationServices.ATS 4.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x106abf000 - 0x106b74fff com.apple.ColorSync 4.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x106bb1000 - 0x106c02fff com.apple.HIServices 1.8.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x106c2e000 - 0x106c43fff com.apple.LangAnalysis 1.6.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x106c51000 - 0x106cd6fff com.apple.print.framework.PrintCore 6.3 (312.7) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x106d0c000 - 0x106d4dfff com.apple.QD 3.36 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x106d65000 - 0x106d79fff com.apple.speech.synthesis.framework 3.10.35 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x106d8a000 - 0x106dd9fff com.apple.ImageIO.framework 3.0.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x106de6000 - 0x106debfff com.apple.ImageIO.framework 3.0.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x106df0000 - 0x106e0dfff com.apple.ImageIO.framework 3.0.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x106e15000 - 0x106e17fff com.apple.ImageIO.framework 3.0.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x106e1b000 - 0x106e41fff com.apple.ImageIO.framework 3.0.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x106e49000 - 0x106f23fff com.apple.vImage 4.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x106f32000 - 0x106f32fff com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x106f35000 - 0x106f7dfff com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x106f85000 - 0x106feffff com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x106ff9000 - 0x107803fff com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x10784c000 - 0x107c8ffff com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x107e1c000 - 0x107e1dfff com.apple.TrustEvaluationAgent 1.1 (1) /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x107e21000 - 0x107ee2fff com.apple.ApplicationServices.ATS 4.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x107fd9000 - 0x108012fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x108021000 - 0x1080d0fff edu.mit.Kerberos 6.5.10 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x1080f6000 - 0x108117fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x108121000 - 0x108121fff com.apple.vecLib 3.6 (vecLib 3.6) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x108124000 - 0x1081d9fff com.apple.ink.framework 1.3.3 (107) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x10820c000 - 0x10823dfff com.apple.opengl 1.6.11 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x108244000 - 0x108267fff com.apple.opencl 12.3 /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x108270000 - 0x108276fff com.apple.IOSurface 74.1 /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x10827f000 - 0x1082c8fff com.apple.opengl 1.6.11 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x1082d7000 - 0x1082ebfff com.apple.opengl 1.6.11 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x1082fb000 - 0x108414fff com.apple.opengl 1.6.11 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x108435000 - 0x108438fff com.apple.opengl 1.6.11 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x10843d000 - 0x108442fff com.apple.opengl 1.6.11 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x108447000 - 0x1084d3fff SecurityFoundation /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x108517000 - 0x108530fff com.apple.CFOpenDirectory 10.6 /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x108545000 - 0x108594fff com.apple.DirectoryService.PasswordServerFramework 6.0 /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x1085b5000 - 0x1085c7fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x1085ce000 - 0x108608fff libssl.0.9.8.dylib /usr/lib/libssl.0.9.8.dylib
    0x10861d000 - 0x108660fff libtidy.A.dylib /usr/lib/libtidy.A.dylib
    0x108671000 - 0x1086affff com.apple.DebugSymbols 1.1 (70) /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x1086c7000 - 0x108739fff com.apple.CoreSymbolication 2.0 (23) /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x10877c000 - 0x1087b5fff com.apple.MeshKit 1.1 (49.2) /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x1087e1000 - 0x1089d0fff com.apple.JavaScriptCore 6533.19 (6533.19.1) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x108a45000 - 0x108aadfff com.apple.MeshKitRuntime 1.1 (49.2) /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x108ae3000 - 0x108bedfff com.apple.MeshKitIO 1.1 (49.2) /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x108c60000 - 0x108ca5fff com.apple.CoreMediaIOServices 133.0 (1158) /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x108cc8000 - 0x108d39fff com.apple.AppleVAFramework 4.10.12 /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x108d44000 - 0x108d49fff com.apple.CommonPanels 1.2.4 (91) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x108d51000 - 0x108d54fff com.apple.help 1.3.1 (41) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x108d5a000 - 0x108d70fff com.apple.ImageCapture 6.0.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x108d8a000 - 0x108da5fff com.apple.openscripting 1.3.1 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x108db6000 - 0x108db8fff com.apple.print.framework.Print 6.1 (237.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x108dbd000 - 0x108dc0fff com.apple.securityhi 4.0 (36638) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x108dc5000 - 0x109a38fff com.apple.WebCore 6533.19 (6533.19.4) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x10a015000 - 0x10a016fff com.apple.MonitorPanelFramework 1.3.0 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x10a01b000 - 0x10a0aafff com.apple.PDFKit 2.5.1 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x10a100000 - 0x10a12ffff com.apple.quartzfilters 1.6.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x10a15e000 - 0x10a399fff com.apple.imageKit 2.0.3 (1.0) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x10a4e9000 - 0x10a56bfff com.apple.QuickLookUIFramework 2.3 (327.6) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x10a5c1000 - 0x10a62dfff com.apple.CorePDF 1.3 /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x10a66c000 - 0x10a6b0fff com.apple.ImageCaptureCore 1.0.3 /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x10a6e1000 - 0x10a6e8fff com.apple.KerberosHelper 2.1 (1.0) /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x10a6ef000 - 0x10a7f3fff com.apple.PubSub 1.0.5 (65.20) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x10a863000 - 0x10a8dffff com.apple.ISSupport 1.9.4 (52) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x10a92e000 - 0x10a92ffff libffi.dylib /usr/lib/libffi.dylib
    0x10acf0000 - 0x10acf4fff com.apple.CoreGraphics 1.545.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x10aeb0000 - 0x10aeb6fff libgermantok.dylib /usr/lib/libgermantok.dylib
    0x10aecf000 - 0x10aedafff com.apple.HelpData 2.0.4 (34) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x10aefe000 - 0x10af00fff com.apple.iChat.PersonIconPlugIn 5.0.3 (745) /Applications/iChat.app/Contents/PlugIns/PersonIcon.plugin/Contents/MacOS/Perso nIcon
    0x10af06000 - 0x10af13fff com.apple.CoreGraphics 1.545.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x10af79000 - 0x10afb6fff com.apple.ApplicationServices.ATS 4.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistry.dylib
    0x10c75d000 - 0x10c78ffff com.apple.ApplicationServices.ATS 4.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libTrueTypeScaler.dylib
    0x10c79b000 - 0x10c7defff com.apple.CoreGraphics 1.545.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x11f599000 - 0x11f5c9fff com.apple.shortcut 1.1 /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x1207b1000 - 0x1207b7fff com.apple.CoreGraphics 1.545.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x1207df000 - 0x1207e3fff com.apple.audio.AudioIPCPlugIn 1.1.6 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x1207e8000 - 0x1207eefff com.apple.audio.AppleHDAHALPlugIn 1.9.9 (1.9.9f12) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x120900000 - 0x120d0afff com.apple.RawCamera.bundle 3.5.0 (551) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x121a00000 - 0x121a3efff com.apple.DP.ScreenInputDevice 13.0 /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/Apple ScreenInputDevice.plugin/Contents/MacOS/AppleScreenInputDevice
    0x121a4a000 - 0x121b15fff com.apple.ColorSync 4.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x121f4d000 - 0x121f77fff com.apple.mio.DAL.VDC_4 133.0 (1158) /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/VDC.p lugin/Contents/MacOS/VDC
    0x12202b000 - 0x122215fff com.apple.audio.codecs.Components 2.0.2 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x1222c3000 - 0x12238efff com.apple.audio.units.Components 1.6.3 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x12242a000 - 0x12242cfff com.apple.ExceptionHandling 1.5 (10) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x122db9000 - 0x122dbdfff com.apple.iChat.Styles.Balloons 5.0.3 (745) /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents/MacO S/Balloons
    0x123729000 - 0x12373cfff com.apple.AddressBook.LocalSourceBundle 1.0.3 (875) /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x123748000 - 0x12374bfff com.apple.yahoo.syncframework 1.3 (51) /System/Library/PrivateFrameworks/YahooSync.framework/Versions/A/YahooSync
    0x123750000 - 0x12375bfff com.apple.dotMacLegacy 3.2 (266) /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x123767000 - 0x123773fff libbz2.1.0.dylib /usr/lib/libbz2.1.0.dylib
    0x123778000 - 0x12378bfff com.apple.syncservices.syncservicesui 5.2 (578.3) /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
    0x123825000 - 0x123832fff com.apple.AppleFSCompression 24.4 (1.0) /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x12384c000 - 0x12389cfff com.apple.datadetectors.actions 2.1 (102.2) /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/Resources/ Actions.datadetectors/Contents/MacOS/Actions
    0x1238b8000 - 0x1238d8fff com.apple.DotMacSyncManager 2.0.3 (446.9) /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x1238f1000 - 0x1238f7fff com.apple.AOSNotification 1.1.0 (123.3) /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x123981000 - 0x123987fff com.apple.AddressBook.LDAPSource 1.0.3 (875) /System/Library/Address Book Plug-Ins/LDAP.sourcebundle/Contents/MacOS/LDAP
    0x12398e000 - 0x123999fff com.apple.NSServerNotificationCenter 2.2 /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x123e5f000 - 0x123ea9fff com.apple.DAVKit 4.0.3 (732) /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x124100000 - 0x124260fff com.apple.syncservices 5.2 (578.3) /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x124a57000 - 0x124a91fff com.apple.bom 10.0 (164) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x124d00000 - 0x124efefff com.apple.CalendarStore 4.0.4 (997) /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x12502a000 - 0x12509efff com.apple.WhitePagesFramework 10.6.0 (140.0) /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x1250dc000 - 0x12513cfff com.apple.ExchangeWebServices 1.3 (61) /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x1251c8000 - 0x125217fff com.apple.iCalendar 1.0.3 (54) /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x12528b000 - 0x1253b8fff com.apple.TundraUnits 133.0 (1158) /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/Tundr aUnits.bundle/Contents/MacOS/TundraUnits
    0x1253da000 - 0x125411fff com.apple.FWAVC 130.46 (46) /System/Library/PrivateFrameworks/FWAVC.framework/Versions/A/FWAVC
    0x1256b7000 - 0x1256ddfff com.apple.opengl 1.6.11 /System/Library/Frameworks/OpenGL.framework/Resources//GLRendererFloat.bundle/G LRendererFloat
    0x125840000 - 0x1259d1fff com.apple.opengl 1.6.11 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x1279cf000 - 0x127dd9fff com.apple.ATIRadeonX2000GLDriver 1.6.24 (6.2.4) /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
    0x7fff5fc00000 - 0x7fff5fc3bfff dyld /usr/lib/dyld

    Him
    Welcome to the    Discussions
    SO the log says the SIP bit (The process after the Visible Invite is seen) was connected as the Buddy's Screen name appears.
    However the ports listed are all over the place.
    iChat 5.0.3 came out at 10.6.3 and has not been updated since.
    The 10.6.6 update should have changed nothing in iChat.
    However it may pay to try Reinstalling the COMBO version of the 10.6.6 update as "running the COMBO" can often help.
    AS your computer seems to be listed as being on 192.168.0.70 I would check how you have opened the ports in the Router.
    If Port Forwarding was used check that the Port Forwarding points to the IP the computer has.
    4:16 PM Sunday; February 6, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • Servlets and Persistent Database Connections

    I'm looking at building an application using
    java Servlets.
    My Application will consist of many individual Java Servlets.
    I want to ensure that there is a persistent database connection so that the users do not have to log on again when a page generated via Servlet1 contains a URL to Servlet2....
    null

    Look at the Http session class in the Servlet specification. It will maintain state for you across client requests.

  • Time reset and lost internet connection

    Booted up this morning and got a message that the clock had reset to a date sometime prior to 2008 and had requests for access from xgridcontrollered, DNSResponder and 2 other things. Not having seen those items before, I denied access. After restarting modem, resetting the clock/time (manually) and restarting everything again, everything came back and I got connected to Internet. A Google of xgrid, et al, revealed that they are part of my OS, so I understand that. I'm just not sure how the clock got reset and created the issue in the first place.
    Any thoughts? My suspicion is that something happened to the modem connection overnight and it needed to be restarted. Computer came up and couldn't access Web to sync date and time and freaked out.

    The same thing happened to me after restart from the last Safari update. Mac restarted fine initially but then suddenly shut down with no warning and when it finally restarted again after a few attempts was set to Dec. 1969 which caused internet connection issues. Reset the date, reset the modem, soft reset the airport, and restarted. It then became apparent it was definitely the automatic time configuration in talking with apple that was causing the crash so I've also turned that off for the time being to avoid subsequent hangs and crashes. Not sure myself how it got reset, but stability is variable at this point.
    Processes hang unexpectedly and now the battery has gone from 95-100% charge to an 'X' in the toolbar. When I clicked on the X'd battery, it said the battery was not charging and then set to 0%. Now when I check on the battery charge information, however, it says the cycle is one. So now my question is, did this battery just coincidentally die at the exact same time as this other issue arose or is this somehow related? (The battery IS very old, but was generally between 96-100% when fully charged, as it was when this occurred. Also, other issues are present. Some may be related and some are likely not which adds to the confusion. The forum I originally visited to troubleshoot this was 72 pages long... modem/airport reset stopped erratic shut downs until the battery drained.)
    Both Safari and Firefox run now, but become increasingly slow with continued use.
    Message was edited by: Starlit Dreamer

  • Crystal Reports and Access database connection error

    I had this in a different forum with no hits, so I am trying this one.
    A person that I work with has multiple reports set up that pulls from an Access database that is password protected. When we moved everything over to a new computer, those reports now say that it cannot access the fields inside the database. It never pops up with a login screen either, like it does on the old computer. I played around with the ODBC, with no luck, couldn't get anything to work. I have also tryed relinking the database, but I keep getting connection problems. We are on a network, so her settings should have all moved with the new computer. Along with the database and the reports being on the server, so they were never moved. I am thinking it has something to do with a system file.
    I also found this document on this site, but cannot find the download it mentions, sounds similar to my problem.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/208b8fe5-681e-2b10-d2bb-b201f266d0ab
    Does anybody know how to fix this without the utility mentioned in the above link, or know where I can get the utility??
    We are using Access 2007 and Crystal Reports 7.  The database is not save as an Access 2007 database, but a regular mdb.
    Please Help!

    Post Author: ejthunder
    CA Forum: Crystal Reports
    Hello Chris,
    Crystal Reports does not store the database password with the RPT file.  This is by design (Crystal is not a database security product).  This is true of all versions of Crystal Reports.
    If your users need to see fresh data when opening the reports then they will have to log in by providing at least the password.
    You can send reports with Saved Data that won't try to hit the database, but the data won't refresh either.  To save data with the report go to the File menu and click next to Save Data with Report.  Refresh the report and then save it.  The report will now have saved data and won't try to hit the database when opened.  If the user hits the refresh button then they will get prompted to log into the database.
    I hope this helps.
    EJ

  • Updated to 5.1 this weekend and lost wifi connectivity on iPhone 4 and Ipad 2

    This weekend I updated my iPhone 4 (AT&T) and iPad 2 (Verizon 3G, wifi) to 5.1. Since the update (went flawlessly), I have been unable to connect to wifi networks anywhere. All that I get is the continuously running circle that shows it is trying to connect (but never actually does). I have RESET all Network connections numerous times, did the 'Forget this' connection on everything, etc. They will no longer connect to places that I have always connected to (Home network, CLE Airport, Hilton, Work, etc...). I can connect to all networks fine with my laptop and blackberry, but I just get the constant connection circle with my iPhone and iPad 2. Can anyone offer any other advise?
    I have tried:
    1. Reboot (Soft)
    2. Reboot (Hard (Home and Power button)
    3. Forget WiFi connection
    4. Reset Network Connections
    5. Tried 6 different Wireless (wifi) networks that I have always been able to connect to with no luck.
    6. Airplane Mode with wifi on...
    7. Turned 3G off...
    Desperately awaiting some assistance, I do not have cell connections in our facilities or the hotel, so basically have a useless device right now!

    I have the same problem with my Ipad 2 16gb WiFi, I bought it in US on march (I don´t live in US) I returned to my country and updated the IOS to 5.1.
    One week ago the wifi signal dissapeared, I get the continuously running circle that shows it is trying to connect too.
    I tried to reset it, to restart it, I even erase all content and settings but the problem continues.
    As you can imagine an Ipad without internet connection is useless, I have opened a case in Apple Technical Support.
    All I want to do is to return it
    The question is if It will be possible to replace it or change it by other apple product. I will go to US again next month.

Maybe you are looking for

  • How do i add a LinkedIn badge to Apple Mail signature

    Does someone know how to add popular badges (LinkedIn, Facebook, Twitter) to Apple Mail signatures.  Just badge icon with a hyperlink to my profile.

  • Cannot get to Apple TV menu

    WWhen I turn on Apple TV, my television blinks "no signal". I have checked my connections and I am connected to my wireless signal. I've unplugged Apple TV and plugged in again.  Now the television screen goes "no signal" to Apple picture" to no sign

  • 3d fx

    hello illustrators how about some 3d fx upto date in illustrator,i always try to make objects trying ot give them the right light source and shading,imagine a feature in illustrator that can add like lights omni,spotlights etc etc and give various re

  • What tool to learn for SOA

    Hi I see lot of elearning sessions SOA ESOA VC CAF so on What should I learn to say I know SOA implementation. I am a technical guy. Is VC outdated or I have to learn it? Is there any trial version having ESOA . SAP CE Is this right? Very confused wh

  • Where  other JButtons  ,where the colour  and where JLabel in the applicat-

    hi guys when I runned this program in an application only last Jbutton which is (9) appeared only the standard colour has appeared for me observe I used these objects pane.setBackground(java.awt.Color.red); setBackground(Color.white);} and JLabel has