Problem in Many-to-Many Associations (JBO-27014 error)

I am facing a problem during insertion in an Intersection table.
I have 3 tables Customer, Accounts and Customer_Account. In order to implement the Many to Many relationship between Customer and Accounts, I created an intersection table Customer_Account.
Table Structure
CUSTOMER
Cust_id NUMBER NOT NULL PK
Name VARCHAR2(50) NOT NULL
ACCOUNT
Account_Id NUMBER NOT NULL PK,
Account_number NOT NULL,
Sort_Code NUMBER NOT NULL,
Account_Type VARCHAR2(10) NOT NULL
CUSTOMER_ACCOUNT
Cust_Id NUMBER NOT NULL,
Account_Id NUMBER NOT NULL
I created an Association CustAcctAsso between Customer and Account with Customer_Account as intersection entity. Then created a viewlink CustAcctViewLink with CustomerView as Source entity, AccountView as Destination entity and selected the CustAcctAsso as association.
I included this in the application module using the following steps
Selected AccountView via CustAcctViewLink in the Available view pane and selected CustomerView in Data model pane. Clicked > to add AccountView via CustAcctViewLink as a restricted view.
Also added CustomerView via CustAcctViewLink as a restricted view.
When I tried to insert data through the second restricted view I am getting an JBO 27014 Attribute Sort Code in Account is required.
It would be very helpful if someone gives me a solution quickly.
Thanks
Renuka

Thanks, now I am able to insert data into CUSTOMER and ACCOUNT table, but not in the intersection table.
It seems that we cannot do any insertion into the intersection table. Please advice me, this is urgent.OK here's what you need to do to insert a new row in both ACCOUNT and INTERSECTION tables.
1. Create a new viewobject with a join of INTERSECTION and ACCOUNT tables such that both are updateable but ACCOUNT is reference entity.
-- This is assuming you want to insert a new account when you insert a new account id in the intersection table otherwise, you can make ACCOUNT entity readonly as well.
2. Create a viewlink between Customer viewobject and this NewViewObject (1-* ViewLink).
3. If the assumption in step 1 is NOT to update/insert new Accounts form this VO, then you're done. Add the new viewobject usage in your application module and you should be able to use it to edit/insert intersection details.
Otherwise -
Set the Updateable flag on AccountID (from the Account entity usage in the NewViewObject) to "never" udpateable.
Set the Updateable flag on Other attributes from the Account entity usage in the NewViewObject to udpateable-while-new or always as desired.
4. Select to generate EntityDefImpl subclass for Account table and override the protected method createInstance as below:
  protected EntityImpl createInstance(DBTransaction txn, AttributeList al)
    // TODO:  Override this oracle.jbo.server.EntityDefImpl method
    return super.createInstance(txn, al);
  }5. Select to generate a ViewRowImpl subclass with accessors for this NewViewObject
6. Add the following logic in setAccountID() method (assuming AccountId attribute is editable and from Intersection entity)
(Note you'll also have anothe attribute AccountId1 from Account entity which should be readonly as marked in step 3.)
//get the current intersection entity.
IntersectionImpl intersection = (IntersectionImpl)getEntity(1);
setAttributeInternal(ACCOUNTID1, value);
//if it is same as I added and is not the same as new one
//framework may assign a new intersection entity based on FK.
IntersectionImpl newIntersection = (IntersectionImpl)getEntity(1);
IntersectionDefImpl intersectiondef = (IntersectionDefImpl)IntersectionImpl.getDefinitionObject();
IntersectionEnrollmentImpl myVO = ((IntersectionEnrollmentImpl)getViewObject());
DBTransaction dbtxn = myVO.getDBTransaction();
//see if a intersection exists with this FK
intersection = (IntersectionImpl)intersectiondef.findByPrimaryKey(dbtxn, IntersectionImpl.createPrimaryKey(value));
//if this viewrow created a new intersection earlier which is different from
//the current intersection entity, remove the old one as I created it.
if ((intersectionAdded != null) && (intersection != intersectionAdded || newIntersection != intersectionAdded))
  if (intersection == null)
    //if I added this intersection as new, reuse-it.
    intersection = intersectionAdded;
    intersection.setIntersectionid(value);
  else
    //if I added this intersection as new, remove it.
    System.out.println(">>>>removing :"+intersectionAdded.getAttribute(0));
    intersectionAdded.remove();
    intersectionAdded = null;
if (intersection == null)
  //if new intersection is null = no intersection exists with this key, then create a new one.
  intersection = (IntersectionImpl)intersectiondef.createInstance(dbtxn, new AttributeListImpl());
  intersection.setIntersectionid(value);
  intersectionAdded = intersection;
  setEntity(1, intersection);
  myVO.notifyRowUpdated(findRowSetForRow(this), new ViewRowImpl[]{this}, new int[]{2,3});
else if (intersection != newIntersection)
  //otherwise, create a set the new intersection entity as my intersection entity reference
  setEntity(1, intersection);
  myVO.notifyRowUpdated(findRowSetForRow(this), new ViewRowImpl[]{this}, new int[]{2,3});
}Now when you insert a new row in this NewViewObject, you can either enter a new Account or refer to an existing Account.
The setAccountId() method will automatically bring the Account details for existing accounts or create a new Account entity as in the above logic.

Similar Messages

  • JBO-27014 error

    I am getting JBO-27014..error after migration from jdeveloper earlier versions.
    Initially, application was developed in jdev 9.0.3, now it has been migrated to jdev 10.1.2.0.2. But this error occurs very frequently.Can u suggest me how to solve it

    Below I am giving the stack trace:
    08/04/08 16:44:37 java.lang.NullPointerException08/04/08 16:44:37      at com.tims.utility.ServiceLocator.getApplicationModule(ServiceLocator.java:148)08/04/08 16:44:37      at com.tims.utility.ProcessLogAMImpl.createProcessLog(ProcessLogAMImpl.java:43)08/04/08 16:44:37      at com.tims.registration.AmusementAMImpl.callProcessLog(AmusementAMImpl.java:602)08/04/08 16:44:37      at com.tims.registration.AmusementAMImpl.newRegSaveABTDtlsData(AmusementAMImpl.java:535)08/04/08 16:44:37      at registration.scrABTRegnController._jspService(_scrABTRegnController.java:289)08/04/08 16:44:37      at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:57)08/04/08 16:44:37      at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:350)08/04/08 16:44:37      at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)08/04/08 16:44:37      at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)08/04/08 16:44:37      at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)08/04/08 16:44:37      at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)08/04/08 16:44:37      at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)08/04/08 16:44:37      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:663)08/04/08 16:44:37      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)08/04/08 16:44:37      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)08/04/08 16:44:37      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:285)08/04/08 16:44:37      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:126)08/04/08 16:44:37      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)08/04/08 16:44:37      at java.lang.Thread.run(Thread.java:534)08/04/08 16:44:37 java.lang.NullPointerException08/04/08 16:44:37      at com.tims.utility.ProcessLogAMImpl.createProcessLog(ProcessLogAMImpl.java:44)08/04/08 16:44:37      at com.tims.registration.AmusementAMImpl.callProcessLog(AmusementAMImpl.java:602)08/04/08 16:44:37      at com.tims.registration.AmusementAMImpl.newRegSaveABTDtlsData(AmusementAMImpl.java:535)08/04/08 16:44:37      at registration.scrABTRegnController._jspService(_scrABTRegnController.java:289)08/04/08 16:44:37      at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:57)08/04/08 16:44:37      at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:350)08/04/08 16:44:37      at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)08/04/08 16:44:37      at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)08/04/08 16:44:37      at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)08/04/08 16:44:37      at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)08/04/08 16:44:37      at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)08/04/08 16:44:37      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:663)08/04/08 16:44:37      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)08/04/08 16:44:37      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)08/04/08 16:44:37      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:285)08/04/08 16:44:37      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:126)08/04/08 16:44:37      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)08/04/08 16:44:37      at java.lang.Thread.run(Thread.java:534)08/04/08 16:44:37 after inserting in log08/04/08 16:44:37 After saving in Process Log08/04/08 16:44:37 Before Overall Commitoracle.jbo.AttrValException: JBO-27014: Attribute BplProcessId in BkoProcessLog is required     at oracle.jbo.AttrValException.<init>(AttrValException.java:113)     at oracle.jbo.server.JboMandatoryAttributesValidator.validate(JboMandatoryAttributesValidator.java:87)     at oracle.jbo.server.EntityDefImpl.validate(EntityDefImpl.java:2013)     at oracle.jbo.server.EntityImpl.validateEntity(EntityImpl.java:1296)     at oracle.jbo.server.EntityImpl.validate(EntityImpl.java:1478)     at oracle.jbo.server.DBTransactionImpl.validate(DBTransactionImpl.java:3947)     at oracle.jbo.server.DBTransactionImpl.commitInternal(DBTransactionImpl.java:1872)     at oracle.jbo.server.DBTransactionImpl.commit(DBTransactionImpl.java:2115)     at com.tims.registration.AmusementAMImpl.newRegSaveABTDtlsData(AmusementAMImpl.java:539)     at registration.scrABTRegnController._jspService(_scrABTRegnController.java:289)     at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:57)     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:350)     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)     at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)     at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)     at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:663)     at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)     at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:285)     at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:126)     at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)     at java.lang.Thread.run(Thread.java:534)08/04/08 16:44:37 In Save:Data could not be saved08/04/08 16:44:37 In Save:exiting controller08/04/08 16:44:37 hi08/04/08 16:44:37 MessageJsp:getParameters = null08/04/08 16:44:37 MessageJsp:strErrMsg = null08/04/08 16:44:37 message ---JBO-27014: Attribute BplProcessId in BkoProcessLog is required

  • Help: 'JBO-26080: Error while selecting entity object' on RefreshDataSource

    Hi all,
    The Problem:
    My page throws out a JBO-26080 error on the RefreshDataSource Tag. This only happens the second time it needs to be refreshed, i.e. the second time the form is submitted to processRequest.jsp (see Background Info below). In my testing I have found that it is definately the RefreshDataSource tag.
    Any help will be much appreciated.
    Background Info:
    I have 2 JSP's, 1 (report.jsp) that displays a table and 1 (processReport.jsp) that runs a stored procedure, implemented as a method in the Application Module, to select data for the table.
    The method in the application module:
    public void doCurrencyCalc()
    CallableStatement st=null;
    try // 1
    String stmt = "BEGIN CONVERT_MONEY(?,?,?,?,?,?,?,?);END;";
    int nParam = 3;
    System.out.println("** SQL = " + stmt);
    DBTransaction tr = getDBTransaction();
    st=tr.createCallableStatement(stmt,DBTransaction.DEFAULT);
    st.setString(1, getWB());
    System.out.println(" > WB = " + getWB());
    st.setLong(2, getKpi());
    System.out.println(" > Kpi = " + getKpi());
    for(int i=0; i<6; i++)
    if(getWbSel(i+1)) st.setString(nParam,String.valueOf(getWbNo(i+1)));
    else st.setString(nParam,null);
    nParam++;
    } // for i
    st.executeUpdate();
    System.out.println("** Calculation Complete");
    } // try 1
    catch(SQLException s)
    throw new JboException(s);
    } // catch SqlException
    finally
    try{if(st!=null)st.close();}
    catch(SQLException s){      }
    } // finally
    } // end doCurrencyCalc
    The processReport jsp:
    <%@ taglib uri="/webapp/DataTags.tld" prefix="jbo" %>
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%@ page import="za.org.saawu.ibs.bc4j.common.IBSbc4jModule"%>
    <jbo:ApplicationModule id="IBSbc4jModule" configname="za.org.saawu.ibs.bc4j.IBSbc4jModule.IBSbc4jModuleLocal" releasemode="Stateful" /><%
    IBSbc4jModule app = (IBSbc4jModule)IBSbc4jModule.useApplicationModule(true);
    String strDisplay = new String(request.getParameter("btnDisplay").toString());
    if(request.getParameter("KPIGroup")!="-1") {
    app.setKpiGroup(new Long(request.getParameter("KPIGroup")).longValue());
    if(request.getParameter("Kpi")!="-1") app.setKpi(new Long(request.getParameter("Kpi")).longValue());
    else app.setKpi(0l);
    String strParams[] = request.getParameterValues("wbsel");
    app.resetWBSel();
    if(strParams.length>0) {
    for(int nCount=0; nCount<strParams.length; nCount++) {
    int nWBNo = app.findWB(strParams[nCount]);
    if(nWBNo>-1) app.setWBSel(nWBNo+1,true);
    } // for
    app.doCurrencyCalc();
    } else {
    session.setAttribute("info","NO_WBSEL");
    } // if strParams length is 0
    if(strDisplay.compareToIgnoreCase("TABLE")==0) {
    session.setAttribute("info","REFRESH_TABLE");
    } else if(strDisplay.compareToIgnoreCase("GRAPH")==0){
    session.setAttribute("info","REFRESH_GRAPH");
    } // if the request btnDisplay is TABLE
    } else {
    session.setAttribute("info","NO_KPIGROUP");
    } // if the KPIGroup was selected
    %>
    <jbo:DataSource id="srcOutput" appid="IBSbc4jModule" viewobject="OutputView" />
    <jbo:RefreshDataSource datasource="srcOutput" />
    <jsp:forward page="report.jsp" />
    <jbo:ReleasePageResources />
    The report jsp is a form that has some input selections and the DataTable tag

    Michael:
    'JBO-26080' means that something was wrong with the SQL statement issued to get the data for an entity object.
    You need the detail exception stack trace to see what went wrong at the JDBC level. Take a look to see if the exception reported on your browser has detail exception info on it.
    If not, you should run your middle tier app with diagnostic turned on. This will output lots of diag info on console and you should get the detail exception in it. Please take a look at the detail exception. If you can't make sense out of the exception, post it to this thread.
    To turn on diagnostic, you need to specify
    -Djbo.debugoutput=console
    as one of the JVM switches.
    If you're invoking your app (middle-tier app) from command line,
    include -Djbo.debugoutput=console as in
    java.exe -Djbo.debugoutput=console ...
    If you're running your app from within JDev:
    1. Select the project.
    2. Do right mouse click and select "Project Settings..."
    3. On the Settings dialog, select Configurations/Runner.
    4. In the righthand side pane, you should see a textbox for "Java
    Options". Please add the following JVM switch:
    -Djbo.debugoutput=console
    Then, rerun. The run command should include
    -Djbo.debugoutput=console as in
    "D:\JDev9i\jdk\bin\javaw.exe" -Djbo.debugoutput=console -classpath ...
    Thanks.
    Sung

  • Delete entity that participate in many to many association

    Hi all,
    I have two tables related by a many to many relationship (for ex department and employee).
    So I have three tables:
    Department: table of departments
    Employee: table employees
    deptEmp: the association table relating the employees to the departments.
    When a department is deleted, all the corresponding rows in deptEmp table should also be deleted (and same for employee).
    On the entity level, I have created the many to many association (between department and employee) and a one to many association for each of department and employee entities to deptEmp entity (deptEmptAssoc from department to deptEmp and empDeptAssoc employee  to deptEmp).
    I configured the deptEmptAssoc association to be a composition and implement the cascading delete, and it is working fine. When I delete a department, the corresponding rows in deptEmp are deleted.
    The problem is that when I try to do the same for empDeptAssoc, JDev gives me a warning and doesn’t apply the composition neither the cascading delete.
    I tried to override the remove method of employee entity to also remove the corresponding deptEmp but it also didn’t work.
    So any hint or pointer how to achieve this? How to have a many to many association and be able to delete both sides of the association?
    Thank you.

    Hi,
    This behavior can be done by overriding the postChanges method as follow:
      public void postChanges(TransactionEvent transactionEvent) {
            if(getPostState() == STATUS_DELETED){
                RowIterator mmIterator = getMM();
                while (mmIterator.hasNext()){
                    EntityImpl row = (EntityImpl)mmIterator.next();
                    row.remove();
    row.postChanges(transactionEvent);
            super.postChanges(transactionEvent);
    N.B.1  In the xml file of the viewLink, the composition association (and implement cascade delete) should not be checked.
    N.B.2  with these flags unchecked, ADF will not control the posting of entities in case the department and the deptEmp entities were both newly created. To fix the issue, the deptEmp entity should also override the postChanges method as follow:
                        public void postChanges(TransactionEvent transactionEvent) {
            if (getPostState() == STATUS_NEW ||
                  getPostState() == STATUS_MODIFIED) {
                EntityImpl dept = getDept();
                if (dept != null) {
                  if (dept.getPostState() == STATUS_NEW) {
    dept.postChanges(transactionEvent);
                                                    // do the same for the Employee entity if needed
            super.postChanges(transactionEvent);
    Regards.

  • Many-to-many association: inserting in the detail table fails

    I'm using jdeveloper 11g and configured the many-to-many association as described in the documentation, so I have accessors in both directions, with composition association and a many-to-many link view. Using the business component browser, the link view works for viewing the data in both directions, as one would expect, however inserting in the detail table fails as follows: the key of the master table is the new value of the detail table's key column instead of the intersection table's foreign key column. Is this a known problem, or is there something I have done wrong?

    If your m-m join table has additional fields there best solution is normally to define a class for the join table.
    i.e.
    beforeProgram
    -m-m-> Assumption
    Assumption
    -m-m-> Program (optional/read-only)
    -> after
    Program
    -1-m-> ProgramAssumptionAssociation (private-owned)
    ProgramAssumptionAssociation
    -1-1-> Program (pk)
    -1-1-> Assumption (pk)
    - createByUser
    - etc.
    Program
    -1-m-> ProgramAssumptionAssociation (independent/optional)
    You could also enable batch-reading or joining on the 1-1 relationship to read the target objects efficiently.

  • Error Message Too Many Associations on Mesh Node

    I've been have trouble connecting one of my 1500 AP to my WLC4402. It was connected during testing to its root point but after installation it is giving the error Too Many Associations on Mesh Node in the Trap log and it cycles about every 10 minutes. It isn't any further away then when it was tested so I'm not sure what the problem is. I can see it as a neighbor from the root point but it will not join the mesh. I ran link test by searching for in clients by MAC address and it passes as well. Any help on this problem would be greatly appreciated. Thank you.

    I would suggest changing your power levels on your Access Points so that your AP does not see as many neighbors. You could also try using directional antennas on some of your radios, there by narrowing the transmit range to a smaller 'beam', instead of omni-directional transmission.

  • HT1926 Have the same problem as many other users: tried to update iTunes on Windows 7 today; first message "unable to locate component- MSVCR80.dll was not found" then "iTunes was not installed correctly. Please reinstall iTunes - Error 7 (Windows error 1

    I have the same problem as many other users: updated iTunes on Windows 7 on Jan 26, 2014 and iTunes does not open.  First message "unable to locate component- MSVCR80.dll was not found" then "iTunes was not installed correctly. Please reinstall iTunes - Error 7 (Windows error 126)". When will Apple fix this? Don’t feel like uninstalling all Apple software and then re-installing it as suggested, as I am on a terribly slow internet connection while travelling in the DR Congo.

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall press on)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • Same problem as many other error -8

    Maybe someone can help? I get the same problem as many other error -8.
    I'm use ichat with aol's aim. There using a pc.
    Not sure at all how to set up my ports.
    I just got this MacBook and never used ichat. The IM is working just fine, but can't get the Video Conference to work.
    Please help me.
    This is the message I get:
    Date/Time: 2006-07-08 23:47:17.704 -0700
    OS Version: 10.4.7 (Build 8J2135a)
    Report Version: 4
    iChat Connection Log:
    AVChat started with ID 0.
    0x1593c0f0: State change from AVChatNoState to AVChatStateWaiting.
    bkinke13: State change from AVChatNoState to AVChatStateInvited.
    0x1593c0f0: State change from AVChatStateWaiting to AVChatStateConnecting.
    bkinke13: State change from AVChatStateInvited to AVChatStateConnecting.
    0x1593c0f0: State change from AVChatStateConnecting to AVChatStateEnded.
    Chat ended with error -8
    bkinke13: State change from AVChatStateConnecting to AVChatStateEnded.
    Chat ended with error -8
    Video Conference Error Report:
    @:0 type=4 (00000000/2)
    [VCSIP_INVITEERROR]
    [19]
    @SIP/SIP.c:2437 type=4 (900A0015/2)
    [SIPConnectIPPort failed]
    Video Conference Support Report:
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [INVITE sip:[email protected]:1543 SIP/2.0
    Via: SIP/2.0/UDP 10.0.1.2;branch=z9hG4bK448a6d6a272ddcd6
    Max-Forwards: 70
    To: "u0" <sip:[email protected]:1543>
    From: "bkinke13" <sip:[email protected]>;tag=1451011831
    Call-ID: be91176e-0f16-11db-889e-afe952e313c4@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 445
    v=0
    o=brian 0 0 IN IP4 m.0
    s=bkinke13
    c=IN IP4 m.0
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 0 RTP/AVP 12 3 0
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:678757759
    m=video 0 RTP/AVP 126 34
    a=rtpmap:126 X-H264
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:20
    a=RTCP:AUDIO 0 VIDEO 0
    a=pogo
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=rtpID:696382637
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [INVITE sip:[email protected]:1543 SIP/2.0
    Via: SIP/2.0/UDP 10.0.1.2;branch=z9hG4bK448a6d6a272ddcd6
    Max-Forwards: 70
    To: "u0" <sip:[email protected]:1543>
    From: "bkinke13" <sip:[email protected]>;tag=1451011831
    Call-ID: be91176e-0f16-11db-889e-afe952e313c4@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 445
    v=0
    o=brian 0 0 IN IP4 m.0
    s=bkinke13
    c=IN IP4 m.0
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 0 RTP/AVP 12 3 0
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:678757759
    m=video 0 RTP/AVP 126 34
    a=rtpmap:126 X-H264
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:20
    a=RTCP:AUDIO 0 VIDEO 0
    a=pogo
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=rtpID:696382637
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [INVITE sip:[email protected]:1543 SIP/2.0
    Via: SIP/2.0/UDP 10.0.1.2;branch=z9hG4bK448a6d6a272ddcd6
    Max-Forwards: 70
    To: "u0" <sip:[email protected]:1543>
    From: "bkinke13" <sip:[email protected]>;tag=1451011831
    Call-ID: be91176e-0f16-11db-889e-afe952e313c4@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 445
    v=0
    o=brian 0 0 IN IP4 m.0
    s=bkinke13
    c=IN IP4 m.0
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 0 RTP/AVP 12 3 0
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:678757759
    m=video 0 RTP/AVP 126 34
    a=rtpmap:126 X-H264
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:20
    a=RTCP:AUDIO 0 VIDEO 0
    a=pogo
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=rtpID:696382637
    @:0 type=2 (00000000/48)
    [VCVIDEO_OUTGOINGATTEMPT]
    [4]
    Video Conference User Report:
    Binary Images Description for "iChat":
    0x1000 - 0x17dfff com.apple.iChat 3.1.5 (436) /Applications/iChat.app/Contents/MacOS/iChat
    0x14cd0000 - 0x14cd9fff com.apple.IOFWDVComponents 1.9.0 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x14d3a000 - 0x14d69fff com.apple.QuickTimeIIDCDigitizer 7.1.2 /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x14d73000 - 0x14db4fff com.apple.QuickTimeUSBVDCDigitizer 1.4.5 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x14f05000 - 0x15046fff com.apple.opengl 1.4.10 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x1506e000 - 0x150c3fff com.apple.driver.AppleIntelGMA950GLDriver 1.4.32 (4.3.2) /System/Library/Extensions/AppleIntelGMA950GLDriver.bundle/Contents/MacOS/Apple IntelGMA950GLDriver
    0x150ca000 - 0x150e6fff com.apple.opengl 1.4.10 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x150ed000 - 0x1510efff com.apple.opengl 1.4.10 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x151a9000 - 0x151aefff com.apple.audio.AppleHDAHALPlugIn 1.1.7 (1.1.7a2) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x1528f000 - 0x15292fff com.apple.iokit.IOQTComponents 1.4 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x1541c000 - 0x15420fff com.apple.audio.AudioIPCPlugIn 1.0.1 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x15442000 - 0x1546bfff com.apple.audio.SoundManager.Components 3.9.2 /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x8fd50000 - 0x8fd8bfff com.apple.QuickTimeFireWireDV.component 7.1.2 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x8fe00000 - 0x8fe4bfff dyld /usr/lib/dyld
    0x90000000 - 0x9016efff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901be000 - 0x901c0fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c2000 - 0x901fefff com.apple.CoreText 1.1.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90225000 - 0x902fafff com.apple.ApplicationServices.ATS 2.0.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9031a000 - 0x9076afff com.apple.CoreGraphics 1.258.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x90801000 - 0x908c9fff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90907000 - 0x90907fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90909000 - 0x909fcfff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a4c000 - 0x90acbfff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90af4000 - 0x90b57fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bc6000 - 0x90bcdfff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bd2000 - 0x90c42fff com.apple.framework.IOKit 1.4.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c57000 - 0x90c69fff libauto.dylib /usr/lib/libauto.dylib
    0x90c6f000 - 0x90f14fff com.apple.CoreServices.CarbonCore 682.12 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f57000 - 0x90fbffff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90ff7000 - 0x91035fff com.apple.CFNetwork 129.16 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91047000 - 0x91057fff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91062000 - 0x910e0fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91115000 - 0x91133fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9113f000 - 0x9114dfff libz.1.dylib /usr/lib/libz.1.dylib
    0x91150000 - 0x91306fff com.apple.security 4.4.1 (27569) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913f5000 - 0x913fdfff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91404000 - 0x9142afff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9143c000 - 0x91443fff libbsm.dylib /usr/lib/libbsm.dylib
    0x91447000 - 0x914c0fff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9150e000 - 0x9150efff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91510000 - 0x9153bfff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9154e000 - 0x91622fff com.apple.ColorSync 4.4.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9165b000 - 0x916d8fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91705000 - 0x917affff com.apple.QD 3.10.20 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917d5000 - 0x91820fff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9183f000 - 0x91855fff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91861000 - 0x9187bfff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91885000 - 0x918c2fff com.apple.LaunchServices 180 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918d6000 - 0x918e1fff com.apple.speech.synthesis.framework 3.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918e8000 - 0x91920fff com.apple.ImageIO.framework 1.4.7 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91932000 - 0x919e4fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a2a000 - 0x91a40fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a45000 - 0x91a61fff com.apple.ImageIO.framework 1.4.7 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a66000 - 0x91ac4fff com.apple.ImageIO.framework 1.4.7 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91ad4000 - 0x91ad8fff com.apple.ImageIO.framework 1.4.7 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91ada000 - 0x91b35fff com.apple.ImageIO.framework 1.4.7 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b39000 - 0x91b76fff com.apple.ImageIO.framework 1.4.7 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91b7c000 - 0x91b96fff com.apple.ImageIO.framework 1.4.7 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91b9b000 - 0x91b9dfff com.apple.ImageIO.framework 1.4.7 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91b9f000 - 0x91b9ffff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91ba1000 - 0x91c2bfff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91c32000 - 0x91c32fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91c34000 - 0x91c79fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91c81000 - 0x91ca6fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91cad000 - 0x92230fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9226d000 - 0x9261ffff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9264c000 - 0x926d0fff com.apple.DesktopServices 1.3.4 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9270c000 - 0x9293efff com.apple.Foundation 6.4.6 (567.27) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92a4a000 - 0x92b28fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92b45000 - 0x92c32fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92c42000 - 0x92c59fff com.apple.opengl 1.4.10 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92c64000 - 0x92cbbfff com.apple.opengl 1.4.10 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92ccf000 - 0x92ccffff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92cd1000 - 0x92ce1fff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92cef000 - 0x92cf7fff com.apple.speech.recognition.framework 3.5 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92cfd000 - 0x92d02fff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92d08000 - 0x92d99fff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92dad000 - 0x92db0fff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92db3000 - 0x92dd0fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92de0000 - 0x92de6fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92dec000 - 0x92e4ffff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92e73000 - 0x92eb4fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92edb000 - 0x92ee8fff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92eef000 - 0x92ef4fff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92ef9000 - 0x931ebfff com.apple.HIToolbox 1.4.8 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x932f0000 - 0x932fbfff com.apple.opengl 1.4.10 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93300000 - 0x9331bfff com.apple.DirectoryService.Framework 3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9336a000 - 0x9336afff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9336c000 - 0x93a25fff com.apple.AppKit 6.4.7 (824.41) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93da6000 - 0x93e20fff com.apple.CoreData 90 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93e59000 - 0x93f1afff com.apple.audio.toolbox.AudioToolbox 1.4.3 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93f5a000 - 0x93f5afff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93f5c000 - 0x9410afff com.apple.QuartzCore 1.4.8 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94158000 - 0x94199fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x941a1000 - 0x941dbfff com.apple.opengl 1.4.10 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94218000 - 0x9425ffff com.apple.bom 8.4 (86.2) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x94269000 - 0x9429efff com.apple.vmutils 4.0.1 (87) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x942e0000 - 0x942f0fff com.apple.securityfoundation 2.2.1 (28150) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x942fd000 - 0x9433afff com.apple.securityinterface 2.2.1 (27695) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94356000 - 0x94365fff com.apple.CoreGraphics 1.258.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9436c000 - 0x94377fff com.apple.CoreGraphics 1.258.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x943c3000 - 0x943ddfff com.apple.CoreGraphics 1.258.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x943e3000 - 0x9469afff com.apple.QuickTime 7.1.2 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x947fb000 - 0x94944fff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x949d0000 - 0x949dffff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x949e6000 - 0x94a0ffff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94a15000 - 0x94a24fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94a28000 - 0x94a4cfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94a58000 - 0x94a75fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94a7c000 - 0x94ae2fff com.apple.Bluetooth 1.7.5 (1.7.5f10) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x94d9f000 - 0x94e32fff com.apple.WebKit 418.8 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94e8c000 - 0x94f0efff com.apple.JavaScriptCore 418.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x94f41000 - 0x95220fff com.apple.WebCore 418.19 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9537e000 - 0x953a1fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x96524000 - 0x96524fff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96a03000 - 0x96a24fff com.apple.speech.LatentSemanticMappingFramework 2.4 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x96a94000 - 0x96b4ffff com.apple.opengl 1.4.10 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x96b69000 - 0x96b6afff com.apple.opengl 1.4.10 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x96b6c000 - 0x96b71fff com.apple.agl 2.5.9 (AGL-2.5.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96ca5000 - 0x96ca6fff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x973f2000 - 0x974dafff com.apple.viceroy.framework 274.7 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x97c09000 - 0x97c0bfff com.apple.DisplayServicesFW 1.8.2 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x97e35000 - 0x989e7fff com.apple.QuickTimeComponents.component 7.1.2 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9934c000 - 0x99357fff com.apple.IMFramework 3.1.1 (427) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x99361000 - 0x994cefff com.apple.MessageFramework 2.1 (752.2) /System/Library/Frameworks/Message.framework/Versions/B/Message

    Hi Ralph!
    Thank you so much for your response. I see your helping a lot of people. Thats so cool. Before I try to anwser the Questions, I can get the webcam to work with Yahoo Messager without a problem. Now let see if I can get the iChat AV to work.
    1) Have you done the Quicktime Streaming setting ?
    Go to System Preferences > Quicktime > Streaming tab. In the drop down set the speed to match your download or to a max of 1.5meg
    DID THAT.
    2) Are you running your Mac with the Firewall On ?
    If so have you set up ports for iChat ?
    IT'S OFF.
    3) Did you upgrade from Panther ?
    Do any of these things effect you ?
    If they did and you have done them please state so.
    COMPUTER CAME WITH TIGER.
    4) How are you connected to the internet ?
    DSL.
    a) We need to know device make and Model ?
    AIRPORT EXPRESS A1084
    b) We need how you have opened the ports for iChat ?
    NOT SURE ON THIS, PLEASE EXPLAIN MORE
    * UPnP ?
    * Port Forwarding
    * Port Triggering
    * DMZ
    c) We need to know if you know if the device is in Bridge Mode ?
    DON'T THINK SO HOW DO I TELL
    (sends your Public IP through to your computer or router).
    d) Do you have a router as well ?
    * Is it doing DHCP ?
    YES.
    * Is it an Airport device ?
    YES. SET TO JOIN BY DEFAULT: AUTOMATIC
    * Have you opened the ports there ?
    DON'T KNOW HOW
    * By which method ? (see above list)
    5) Do you have any iChat Add-Ons ?
    List them if you have.
    Also state if you downloaded them when you were running Panther and if you have updated them.
    NO ADD-ONS
    1. iChatUSBCam
    2. iGlasses
    3. Showmacster
    4. ChatFX
    6) Does anything in this FAQ effect you and the Add-ons in addition to 5) ?
    7) Does it have anything to do with connecting to a PC ?
    See Here and here
    8) List your Connection speed
    1.325
    I'M REALLY LOST WHEN IT COMES TO UNDERSTAND ON SETTING UP THE PORT.
    I ALSO HAVE A IMAC 17IN FLAT SCREEN, ABOUT 3 YEARS OLD RUNNING OS 10.2.8 I JUST PUT AN AIRPORT EXTEME CARD AND BOTH COMPUTERS IS USING THE AIRPORT EXPRESS. BEFORE I WAS USING THE BUILT-IN ETHERNET.
    I hope I gave you some helpful info.
    Thanks
    Brian K.
    MacBook 2 GHz Intel Core Duo Mac OS X (10.4.7)

  • My iPhone is a iPhone 3GS. For some reason, the ringer becomes silent although I have put the ringer on full volume. Would someone kindly teach me how to solve this problem? Many thanks!!

    My iPhone is a iPhone 3GS. For some reason, the ringer becomes silent although I have put the ringer on full volume. Would someone kindly teach me how to solve this problem? Many thanks!!

    Just to make sure... you have the phone in ringer mode right? Sometimes the switch on the side gets bumped (especially if you don't have a case on the iPhone) and goes into silent. If you see a orange line on the switch - it's on silent.
    If the switch is fine (and isn't loose or anything) try restoring the iPhone in iTunes.

  • Recently I have switched out computers and had copied/ transferred my I ITunes library to the new computer and encountered problem.  Many of the songs in the library were purchased from my old email address of that I no longer use nor did I remember the o

    Recently I have switched out computers and had copied/ transferred my I ITunes library to the new computer and encountered problem.  Many of the songs in the library were purchased from my old email address of that I no longer use nor did I remember the old password in order to authorize playing from the new computer.   Request advice/assistance to where I am able to play songs acquired through lost password?

    This is a user to user tech support forum.  Posting questions and getting responses here is the extent of the support.
    If you want phone support, call Apple and pay for it.
    Posting your phone number of a public forum is not smart, I have asked the moderators to remove it.

  • Repeating problems (1) Many Missing Files; and (2) Downloading From iTunes

    I am having multiple issues with the iTunes store currently. I have spoken with an Apple Expert on August 14, 2010 (case number available if needed). Although he was very good at helping me to the best of his ability, he referred me to iTunes Store Customer Service, which I previously was in contact with.
    I have 2 types of repeating problems (1) Many Missing Files; and (2) Downloading From iTunes Store.
    _Problem One - (1) Downloading From iTunes Store_
    I have 1610 missing files from my iTunes folders. I created a list of missing items by following these steps:
    +If for any reason you find yourself with random missing tracks, (or are trying to recover from a dying hard drive like me), there is an easy way to isolate those missing tracks.+
    +1. Create a standard playlist called "Not Missing".+
    +2. Drag your entire library into that playlist. Missing tracks cannot+
    +be copied to a playlist.+
    +3. Create a smart playlist called where you select the following conditions in the options window for the new smart playlist:+
    +*dropdown menu* PLAYLIST+
    +*dropdown menu* IS NOT+
    +*dropdown menu* NOT MISSING.+
    +4. Rename the smart playlist "Missing"+
    +5. Right Click the "Missing" playlist+
    +6. Click the "Export..." option+
    +7. Select the Plain Text option and Desktop location+
    My missing playlistable items represent a better part of a decades worth of audiobook files, transfered files from my PC days, etc... i loved my - now missing - Doctor Who and Torchwood purchases from iTunes.
    I have already read the Trouble Shooting, checked Time Machine Backup, and been walked through replacing the preferences list. The missing file path from the "get info" options in iTunes points towards a non-existant file.
    _Problem Two (2) Downloading From iTunes Store_
    I have had problems downloading files from iTunes for months. I first noticed it with the TV Show "Avatar: The Last Airbender". Lately, when I download from the (non-music) part of the store, the majority of files are downloaded and then immediately not found. This has been prompting iTunes to repeat the download. Until I force quit itunes and *potentially cry*.
    There have been multiple iTunes store purchases of audio books recently. If I reported the missing file immediately, I can contact iTunes support to repost the file and that usually fixes the issue. But today, I went to go rewatch "Torchwood: Children of Earth" and noticed Problem One.
    _Hind Sight_
    If provided with a spreadsheet of my iTunes Store purchase history, I can write a vlookup( formula in excel to compare the list against my exported missing list so a shortlist of what is missing from just my iTunes Store purchase history can be created (hint: it's the majority of items from the list, others are years worth of files from my PC days). If we could do that, could iTunes make my missing purchases available?
    Then we can focus on purely, trying to figure out why they went missing in the first place - so we can prevent it again & possibly help others from running into the same.
    Plea
    I strongly suspect the two issues are related to a root cause ... in addition to my user error in file management of backups ... what is going on?

    iTunes Support (Eric) emailed me some instructions. I am posting, in hopes that this will help others.
    _Suggestions from iTunes Support_
    Troubleshooting 1. iTunes Store: Finding missing purchases and downloads http://support.apple.com/kb/TS1408
    Troubleshooting 2. Direct Assistance
    _Results based on Suggestions_
    Results on "Searching the harddrive" - did not resolve my concerns
    Results from "Direct Assistant" - i emailed the list of the missing files... status is pending
    Conclusion
    I'll follow up again later, if I have new news.

  • I have windows 8 and I got this error "Adobe Photoshop has stopped working" whenever I start a program. please help. how can I fix this problem? many thanks

    i have windows 8 and I got this error "Adobe Photoshop has stopped working" whenever I start a program. please help. how can I fix this problem? many thanks

    Please read these and proceed accordingly:
    http://blogs.adobe.com/crawlspace/2012/07/photoshop-basic-troubleshooting-steps-to-fix-mos t-issues.html
    http://forums.adobe.com/docs/DOC-2325

  • I am having problems viewing many video sites since upgrading my IPad to IOS 7

    Has anyone been having problems viewing many video formats on ipad after upgrading to ios7.v3? I can't view most You Tube, no Netflix, etc!

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased. http://support.apple.com/kb/ht1430
     Cheers, Tom

  • Adding/removing many-to-many associations with intersection tables

    Hello,
    I am using Jdeveloper 11g with ADFBC.
    I have some many to many associations in my application. For example User and Category are associated and there is an intersection entity (UserCategory - Columns are UserId, CategoryId) to save these associations.
    What is the correct method for adding or removing categories assigned to user?
    Thanks.
    Edited by: Deniz Gulmez on 01-Nov-2009 03:25

    I found an example for Jdeveloper 10g, which is discussed [ADF] Adding/deleting entries in a many-to-many relationship
    In that example, many-to-many association is defined as two 1-to-many associations. Actually i've been searching since last week for an example which is made with many-to-many associations but no help. I will change my Model structure if it is not an efficient way to define many-to-many associations with intersection tables.
    I wonder if it is possible to write some methods like :
    addCategoryToUser(String userId, String categoryId)
    removeCategoryToUser(String userId, String categoryId)
    addCategories(String userId, List categoryIds)
    vs.
    Of course i am able to do these by creating a new Row in UserCategoryView (Intersection view), setting it's attributes and saving. Or the opposite, finding the row in intersection table and deleting it.
    For example:
    public void removeCategoryFromUser(String userId, String categoryId){
    ViewObjectImpl vo = this.getUserCategories1();
    vo.setWhereClause("USER_ID = :userId AND CATEGORY_ID = :categoryId");
    vo.defineNamedWhereClauseParam("userId", null, null);
    vo.defineNamedWhereClauseParam("categoryId", null, null);
    vo.setNamedWhereClauseParam("userId", userId);
    vo.setNamedWhereClauseParam("categoryId", categoryId);
    vo.executeQuery();
    Row row = vo.first();
    row.remove();
    I wonder if there is a more efficient way. Any samples would be appreciated.
    Edited by: Deniz Gulmez on 01-Nov-2009 05:49

  • One to Many And Many to Many Association(jdev 11.4 ps3)

    Hi All,
    I was trying different types of ADF-BC implementations, I am stuck with following
    1)     One to Many Association
    a.     Order – OrderItem ( Join over two tables, One OrderVO should have List<OrderItemVO> orderItems
    b.     Employee-Manager (Self Join on the Employee Table, One Employee should have List<Employee> subordinates [0 to *])
    c.     Manager-Employee (Self Join on the Employee Table, One Employee should have List<Employee> managers [ 0 or 1] )
    2)     Many to Many Association
    Would be very helpful if you could provide any Blog published or Some sample implementation of the above.

    Would be very helpful if you tell us which version of jdev you are looking at.
    All this is described in the docs http://download.oracle.com/docs/cd/E14571_01/web.1111/b31974/bcintro.htm#sm0051 to start with and http://download.oracle.com/docs/cd/E14571_01/web.1111/b31974/bcentities.htm#sm0124 to follow up.
    Timo

Maybe you are looking for

  • I have the latest version of firefox and I tried to follow the instructions for cookies, only the instructions seems out of date. How do I fix this?

    I have to adjust my cookies and I found the instructions on your site. When I followed the instructions, I found that it seems for an older version and not the new one. The privacy settings are not the same as they once were and I can't make any adju

  • How re-install OS X Lion fresh without disks?

    Something is wrong with programs or something on my Mac and I want to completely wipe the hard drive and start over with a fresh copy of Lion.  I did a Time Machine backup last night and will then just bring over files one at a time from that externa

  • Language Selector Component Choice

    Hi Everyone, I have a Flash AS2 Pull-Down language selector for 11 languages that I use for Director 11, Authorware 7 and web pages. Now, time marches on and I must add 19 more languages. It will be too large for several of it use locations.  I also

  • Modify source system

    Hi gurus, We made a system copy from BW 3.5 Production to a new non productive copy in order to do an upgrade later. Now we want to connect this new system with R3 Development and we are experience some problems. What we want is to modify(not delete

  • Outlook voting responds with ASCII characters

    Issue: A user sends an e-mail with the voting options configured. When the recipient responds without editing the response, the reply comes back with a bunch of Asian,etc... ASCII characters. If the response is edited, the response looks normal. This