Trouble synching - many different errors

I haven't synched my iPhone4 (OS 4.2.1) with iTunes (v10.1.2) on my laptop (Dell Inspiron Windows 7 Home Premium 64bit) for a while and have encountered problems today.
The phone doesn't get recognised so asks to be setup as new phone or restore from back up. I've tried both and I'm getting errors such as:
The iPhone "X" cannot be synced. A folder was specified instead of a file.
The iPhone "X" cannot be synced. The required file cannot be found.
iTunes could not copy "Hells Bells" to the iPhone because an unknown error occurred (-48)
iTunes could not copy "Shoot to Thrill" to the iPhone because an unknown error occurred (0xE8004006)
iTunes could not copy "Rock and roll aint noise polluton" to the iPhone because the file could not be found
The iPhone cannot be synced. An internal device error occurred.
I've tried searching the discussions and generally on the internet but I am struggling to find anything definitive to solve this. I've now got virtually nothing on my iPhone and am feeling very frustrated.
Please can anyone help me out or point me in the right direction?

Success! Roughly, this is what I did. Thanks to the above response about security I thought perhaps I missed something so I started over. Disabled security software (Symantec), turned off Windows firewall, turned of Internet Explorer protection mode (that may not be necessary). I did the first 3 items in this list: http://support.apple.com/kb/TS1275 . When I finally got iTunes to show an iPHone in the left menu (don't ask me how), I did the following: chose Edit from the iTunes menu, Preferences, device tab, highlight any/all backups and delete, click Reset Sync History button and apply. Then I chose Restore from the iTunes page. At the Set up Your iPhone page, I changed the name in the box to "iPhone" (it had been different), and I chose to sync only the apps as my email is elsewhere. Now the apps are on the phone and they function. Don't forget to turn your security back on.

Similar Messages

  • Trouble synching in iTunes 10

    I'm having trouble synching my iPhone 3GS. I want to upgrade to the latest version of software for the iPhone but when I try, I get a message informing me that there are purchases on my phone that need transferring.
    I have backed up my phone several times and right clicked the phone icon in the device section and selected "transfer purchases". It seemed to do that yet each time I still get the error message that purchases need to be transferred.
    I have tried reinstalling iTunes 10. Also when I look at the applications tab, it is frayed out and I can't move any of the application between pages...
    Any suggestions?

    Nevermind, I was wrong about something....but if anyone's having similar trouble, this was really helpful. https://discussions.apple.com/message/12269053#12269053

  • Many-many mapping error

    I have 3 tables person, document, and a table that links them called
    person_document. I want to create a Person and Document, associate them
    with each other and save them. I have tried this in many different ways
    but keep getting the error below.
    Thanks,
    Doug
    KODO User Exception The mapping for field
    "com.saic.pisces.jdo.Person.personDocuments" is missing information on how
    to link the field's table to its owning class' table, or the given
    information is invalid.
    kodo.jdbc.meta.MappingInfoNotFoundException: The mapping for field
    "com.saic.pisces.jdo.Person.personDocuments" is missing information on how
    to link the field's table to its owning class' table, or the given
    information is invalid.
    at kodo.jdbc.meta.Mappings.invalidMapping(Mappings.java:134)
    at kodo.jdbc.meta.Mappings.invalidMapping(Mappings.java:120)
    at
    kodo.jdbc.meta.ReferenceFieldMapping.fromMappingInfo(ReferenceFieldMapping.java:109)
    at
    kodo.jdbc.meta.ContainerFieldMapping.fromMappingInfo(ContainerFieldMapping.java:97)
    at
    kodo.jdbc.meta.AbstractCollectionFieldMapping.fromMappingInfo(AbstractCollectionFieldMapping.java:106)
    at
    kodo.jdbc.meta.ManyToManyFieldMapping.fromMappingInfo(ManyToManyFieldMapping.java:79)
    at
    kodo.jdbc.meta.RuntimeMappingProvider.getFieldMapping(RuntimeMappingProvider.java:157)
    at
    kodo.jdbc.meta.MappingRepository.getFieldMapping(MappingRepository.java:422)
    at
    kodo.jdbc.meta.AbstractClassMapping.getFieldMapping(AbstractClassMapping.java:911)
    at
    kodo.jdbc.meta.AbstractClassMapping.getFieldMapping(AbstractClassMapping.java:891)
    at
    kodo.jdbc.meta.AbstractClassMapping.getMappings(AbstractClassMapping.java:854)
    at
    kodo.jdbc.meta.AbstractClassMapping.getDeclaredFieldMappings(AbstractClassMapping.java:617)
    at
    kodo.jdbc.meta.AbstractClassMapping.resolve(AbstractClassMapping.java:758)
    at
    kodo.jdbc.meta.BaseClassMapping.resolve(BaseClassMapping.java:323)
    at
    kodo.jdbc.meta.MappingRepository.resolve(MappingRepository.java:390)
    at
    kodo.jdbc.meta.MappingRepository.getMapping(MappingRepository.java:308)
    at
    kodo.jdbc.meta.MappingRepository.getMapping(MappingRepository.java:162)
    at
    kodo.jdbc.meta.MappingRepository.getMetaData(MappingRepository.java:150)
    at
    kodo.runtime.KodoHelper.getSequenceGenerator(KodoHelper.java:340)
    at com.saic.pisces.jdo.JDOTest.<init>(JDOTest.java:39)
    at com.saic.pisces.jdo.JDOTest.main(JDOTest.java:25)
    person
    person_id
    height
    weight
    etc...
    document
    document_id
    type
    number
    etc...
    person_document
    person_id
    document_id
    My Person class has:
    private long personId;
    private double height;
    private double weight;
    private Set personDocuments = new HashSet();
    Document class:
    private long documentId;
    private DocumentType documentType;
    private String documentNumber;
    private Set personDocuments = new HashSet();
    This is the mapping in package.jdo for the Person class
    <field name="personDocuments">
    <collection element-type="Document"/>
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="many-many">
    <extension vendor-name="kodo" key="inverse-owner"
    value="personDocuments"/>
    <extension vendor-name="kodo" key="table"
    value="TRAVELER.PERSON_DOCUMENT"/>
    <extension vendor-name="kodo" key="personId-ref-column"
    value="PERSON_ID"/>
    <extension vendor-name="kodo" key="documentId-data-column"
    value="DOCUMENT_ID"/>
    </extension>
    </field>
    This is the mapping for the Document class
    <field name="personDocuments">
    <collection element-type="Person"/>
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="many-many">
    <extension vendor-name="kodo" key="table"
    value="TRAVELER.PERSON_DOCUMENT"/>
    <extension vendor-name="kodo" key="documentId-ref-column"
    value="DOCUMENT_ID"/>
    <extension vendor-name="kodo" key="personId-data-column"
    value="PERSON_ID"/>
    </extension>
    </field>

    Marc Prud'hommeaux wrote:
    Doug-
    What is the "documentId-data-column" extension supposed to do? There
    isn't any "data-column" extension in Kodo. Do you mean "element-column"?I found it:
    http://www.solarmetric.com/Support/Newsgroups/news/article.php?id_article=%3C7tpu1d4t0m.fsf%40tmonk.localdomain%3E&grp_id=1
    It may be out of date now, but it is confusing and not clearly documented
    that the options are quite different if you are using application vs
    datastore identity.
    You may want to look at the example for the many-many mapping at:>
    http://solarmetric.com/Software/Documentation/3.1.0RC1/docs/manual.html#many-many
    If this doesn't help solve the problem, can you post your revised
    metadata file?
    In article <[email protected]>, Doug Emerald wrote:
    I corrected the syntax but I still get the same error message when it runs.
    By the way, this is using 3.1RC1 with 1.4.2_04.
    Stephen Kim wrote:
    the Pk-ref-column attributes should be PK_COLUMN.ref-column,
    substituting the proper column for PK_COLUMN, and similarly for
    data-column.
    >>
    Doug Emerald wrote:
    I have 3 tables person, document, and a table that links them called
    person_document. I want to create a Person and Document, associate them
    with each other and save them. I have tried this in many different ways
    but keep getting the error below.
    Thanks,
    Doug
    KODO User Exception The mapping for field
    "com.saic.pisces.jdo.Person.personDocuments" is missing information on
    how
    to link the field's table to its owning class' table, or the given
    information is invalid.
    kodo.jdbc.meta.MappingInfoNotFoundException: The mapping for field
    "com.saic.pisces.jdo.Person.personDocuments" is missing information onhow
    to link the field's table to its owning class' table, or the given
    information is invalid.
    at kodo.jdbc.meta.Mappings.invalidMapping(Mappings.java:134)
    at kodo.jdbc.meta.Mappings.invalidMapping(Mappings.java:120)
    at
    kodo.jdbc.meta.ReferenceFieldMapping.fromMappingInfo(ReferenceFieldMapping.java:109)
    at
    kodo.jdbc.meta.ContainerFieldMapping.fromMappingInfo(ContainerFieldMapping.java:97)
    at
    kodo.jdbc.meta.AbstractCollectionFieldMapping.fromMappingInfo(AbstractCollectionFieldMapping.java:106)
    at
    kodo.jdbc.meta.ManyToManyFieldMapping.fromMappingInfo(ManyToManyFieldMapping.java:79)
    at
    kodo.jdbc.meta.RuntimeMappingProvider.getFieldMapping(RuntimeMappingProvider.java:157)
    at
    kodo.jdbc.meta.MappingRepository.getFieldMapping(MappingRepository.java:422)
    at
    kodo.jdbc.meta.AbstractClassMapping.getFieldMapping(AbstractClassMapping.java:911)
    at
    kodo.jdbc.meta.AbstractClassMapping.getFieldMapping(AbstractClassMapping.java:891)
    at
    kodo.jdbc.meta.AbstractClassMapping.getMappings(AbstractClassMapping.java:854)
    at
    kodo.jdbc.meta.AbstractClassMapping.getDeclaredFieldMappings(AbstractClassMapping.java:617)
    at
    kodo.jdbc.meta.AbstractClassMapping.resolve(AbstractClassMapping.java:758)
    at
    kodo.jdbc.meta.BaseClassMapping.resolve(BaseClassMapping.java:323)
    at
    kodo.jdbc.meta.MappingRepository.resolve(MappingRepository.java:390)
    at
    kodo.jdbc.meta.MappingRepository.getMapping(MappingRepository.java:308)
    at
    kodo.jdbc.meta.MappingRepository.getMapping(MappingRepository.java:162)
    at
    kodo.jdbc.meta.MappingRepository.getMetaData(MappingRepository.java:150)
    at
    kodo.runtime.KodoHelper.getSequenceGenerator(KodoHelper.java:340)
    at com.saic.pisces.jdo.JDOTest.<init>(JDOTest.java:39)
    at com.saic.pisces.jdo.JDOTest.main(JDOTest.java:25)
    person
    person_id
    height
    weight
    etc...
    document
    document_id
    type
    number
    etc...
    person_document
    person_id
    document_id
    My Person class has:
    private long personId;
    private double height;
    private double weight;
    private Set personDocuments = new HashSet();
    Document class:
    private long documentId;
    private DocumentType documentType;
    private String documentNumber;
    private Set personDocuments = new HashSet();
    This is the mapping in package.jdo for the Person class
    <field name="personDocuments">
    <collection element-type="Document"/>
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="many-many">
    <extension vendor-name="kodo" key="inverse-owner"
    value="personDocuments"/>
    <extension vendor-name="kodo" key="table"
    value="TRAVELER.PERSON_DOCUMENT"/>
    <extension vendor-name="kodo" key="personId-ref-column"
    value="PERSON_ID"/>
    <extension vendor-name="kodo"key="documentId-data-column"
    value="DOCUMENT_ID"/>
    </extension>
    </field>
    This is the mapping for the Document class
    <field name="personDocuments">
    <collection element-type="Person"/>
    <extension vendor-name="kodo" key="jdbc-field-map"
    value="many-many">
    <extension vendor-name="kodo" key="table"
    value="TRAVELER.PERSON_DOCUMENT"/>
    <extension vendor-name="kodo"key="documentId-ref-column"
    value="DOCUMENT_ID"/>
    <extension vendor-name="kodo" key="personId-data-column"
    value="PERSON_ID"/>
    </extension>
    </field>
    Steve Kim
    [email protected]
    SolarMetric Inc.
    http://www.solarmetric.com
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • An eBook has been dowloaded with many encoding errors. How do I fix it?

    I've recently downloaded an eBook, but it has many encoding errors and even whole chapters missing. I cannot update the application because the iBook app is connected to a different Apple ID (I was given my iPad2 as part of a seminar). Do I delete the eBook and re-downloaded it? Will I pay for it again? It's my first time dealing with Apple and I'm lost.
    Thank you for your help.

    Hey, I have this same issue with at least two books I bought from iBooks.

  • Lots of different errors when using Maps on Linux, help?

    I'm trying to use Maps in one of my programs, but for some reason I get all sorts of different errors when compiling.
    I've tried both my own (very) simple tests of it and also I've copied and pasted the code straight out of the official tutorials.
    //Edit: Ok, I've tried it on several different IDEs, and Netbeans (on both Linux and Windows) and JCreator(on Windows) both work now for whatever reason. The only one I still have problems with is below.
    Here some of the errors I get, and nothing is making sense.
    On a Linux machine, using a simple IDE (Geany):
    MapTest.java:6: not a statement
    Map<String, Integer> m = new TreeMap<String, Integer>();
    ^
    MapTest.java:6: ';' expected
    Map<String, Integer> m = new TreeMap<String, Integer>();
    I don't know why it isn't working.

    What do IDEs have to do with this? It's a compiler error.
    Do you import java.util.Map and java.util.TreeMap?
    Are you using JDK 5 or higher? Generics didn't appear in Java until JDK 5.
    %

  • How many different iPods can I sync with my single iMac user/iTunes account?

    Good Day to All,
    Can anyone tell me how many different iPods &amp; iPhones can I successfully consistently sync/integrate using my one "user account" in iTunes on my iMac? This ist situation:
    I have always (and only) synced etc. my iPhone with my one iTunes UID which is under my ONE "User Account" on my  iMac. Recently, my elderly folks gave me 2 iPods they have never used. One is a little silver 4GB shuffle (the little guy with a built on "belt clip" &amp; it verbally tells you what song and artist is playing. The other is also an iPod shuffle ( only 1GB), also has the metal "pinch to open; belt clip"; also no display, however it came with a little USB Dock and THIS ONE has all of the user controls on the face of it in a circular patter of course..
    To have COMPLETE successful "interaction/integration/syncing" etc (with no issues/complications etc) with my iTunes currently and previously only used with my iPhone, do I have to create two new additional "User Login/accounts" on my iMac (one for each iPod) to have all three if my devices work perfectly fine, or can I just use my same iMac login (UID) &amp; iTunes that I use with my iPhone and have no worries?
    (ie: I created my girlfriend her own iMac login UID which she has always used for backing up/syncing etc her iPhone with HER iTunes library etc)
    In short, does iTunes have the ability to have multiple iPods &amp; my iPhone under my one existing iTunes account AND using the same single iMac login/UID I've always used with my iPhone?
    Obviously, I know I could create an iMac login for my mom's, another for my dad's &amp; create them both their individual iTunes accounts, but they really don't want to have to worry about dealing with all that. I'm teetering between just treating them as my iPods and mixing/adding their limited CD's into my library (again, if iTunes allows multiple iPods etc as explained above..
    OR; my other thought would be (again, if one iTunes account can integrate the two iPods as seperate devices and to just create ONE iMac UID login and ONE iTunes account under my dad's name, and use that one account for both of their music, both of their iPods, importing their CD's into the same iTunes library, then when syncing etc. just doing selective transfers/sync's of the specific music for each iPod... Even then, will iTunes be able to differentiate the two as far as backups/restored etc? I think  answering my own question as I type due to the cloud... For completely individual cloud interaction/integration, I would def need to create each of them their own iTunes accounts, otherwise they will have all of each other's songs on their devices.. (ie: And my dad def doesn't want to worry about skipping over my mom's Journey or Aerosmith tunes to get to his Willie Nelson and vice versa for example.
    (Sorry sooooo drawn out; thinking outloud) I guess it seems obvious that since all their digital music has to be on my iMac, I really should create them each their own iMac UID login as well as their own individual iTunes Acounts to insure cloud services work easily for restores/backups etc...
    Thanks for stumbling thru my thought processes here (if I didn't lose ya long ago); I'm exhausted and throwing thoughts at the classroom board to see what sticks.... The best easiest way that is.. (The two aren't always the same obviously!)
    Thank you all for your precious time and consideration and most if all; YOUR PATIENCE!! Any confirmation if the options and suggestions are greatly appreciated. You know, gotta take care of the folks &amp; what is the simplest for them as just end users is the most important or they'll NEVER bother with them in the end...
    Respectfully appreciative,
    DB

    You can use as many iPods with one iTunes library as you want.
    (108420)

  • How to enable JIT debugging on my Windows 7 (64 bit) computer? I keep getting different Errors popping up on my computer about debugging different programs and that JIT debugging must be enabled!

    How do I enable JIT debugging on my Windows 7 (64 bit) computer? I keep getting different Errors popping up on my computer and the latest one says when I attempted to watch a DVD video with VLC media player but this isn't the first error this week saying
    that JIT debugging must be enabled and I don't know how to do that : ( "Microsoft Visual C++  Runtime Library"  Assertion Failed! Program C:\Program Files (x86) VideoLAN\VLC\vlc.exe  File: vm.c
    Line: 1765
    Expression: pgcit != NULL
    For information on how your program can cause an assertion failure, see the Visual C++ documentation on asserts.
    (Press Retry to debug the application- JIT must be enabled)

    Hi Rhondavas77,
    To enable/disable Just-In-Time debugging
    On the Tools menu, click Options.
    In the Options dialog box, select the Debugging folder.
    In the Debugging folder, select the Just-In-Time page.
    In the Enable Just-In-Time debugging of these types of code box, select or clear the relevant program types:
    Managed, Native, or Script.
    To disable Just-In-Time debugging, once it has been enabled, you must be running with Administrator privileges. Enabling Just-In-Time debugging sets a registry key, and Administrator privileges are required to change that key.
    Click OK.
    More information is here.
    http://msdn.microsoft.com/en-us/library/k8kf6y2a(v=vs.85).aspx
    Best Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How many different computers can i sync my ipod to and transfur music from?

    how many different computers can i sync my ipod to and transfur music from? i am trying to sync my ipod to another laptop and add my music to that computer but i was wondering if there was a limit on how many computers you can do that with. thanks all.

    You can authorize up to five computers for your iTunes purchases.
    If manually managing your device you can add content from any library.
    If automactially syncing content is managed from one library.
    Purchased content can be transfered from a device into an authorised library, otherwise iTunes only transfers content to the device.
    tt2

  • HT1386 How many different computers can I sync my iPod with?  My laptop crashed and was completely wiped clean and this was the machine that my iPod synced with so I don't know if it will be counted as a "new" computer.

    How many different computers can I sync my iPod with?  My laptop crashed and was completely wiped clean and this was the machine that my iPod synced with so I don't know if it will be counted as a "new" computer when I sync my iPod.

    You can sync with onee at a time. Syncing to another will erase the current content.
    Copy everything from your backup copy of your old computer to your new one.

  • In how many different computers can I install my snow leopard?

    In how many different computers can I install my snow leopard?
    The one that came when I bought my Macbook Pro.

    Kappy, I believe that he's asking about Snow Leopard, not Lion. Your answer would be correct in reference to Lion purchased from the Mac App Store, but not Lion shipped as original OS on a new Mac.
    derojas, assuming you have a standard OEM, it-came-with-the-computer Snow Leopard installer, you are licensed to use it only on that one computer. You are not licensed to install it on any others. Many OEM discs can install only on the specific hardware model with which they shipped, anyway.
    If you have a standard retail installer, it's technically possible to install it on any Mac capable of running Snow Leopard. However, again, the license grants you the freedom to install it on only one Mac at a time (i.e. you'd have to delete it from one Mac before you could install it on another).
    There are family packs and other multi-licensing arrangements that permit the owner to install Snow Leopard on more than one Mac. You need to check the license to find out how many and what other restrictions might apply.

  • TS2771 My ipod touch will not hare no matter what and I've tried many different cables and different ways to charge it. What should I do? If I complain to the Apple store co. will they replace my ipod for free?

    My ipod touch will not hare no matter what and I've tried many different cables and different ways to charge it. What should I do? If I complain to the Apple store co. will they replace my ipod for free?

    - See:
    iPod touch: Hardware troubleshooting
    - Try another cable
    - Try another charging source
    - Look at the dock connector on the iPod. Look for abnormalities like bent or corroded contacts, cracked or broken plastic.
    - Make an appointment at the Genus Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • My ipod nano is not turning on,I have tried many different things.help asap

    My ipod nano is not turning on. I've tried many different things to turn it on such as press and hold menu and the select(center) button for 6-10 seconds and wait for ipod logo to appear. that does not work for me. Also the one where I move the button on the upper part of the ipod nano and moving it to the hold position and back and there againa and back. nothing seems to work...PLEASE HELP ME ASAP!! my friend thought that the battary could be so dead that it is not turning on at all. I remember charging it for about 4 hours and having full battary and the next day after charging the ipod nano it went dead!! it just shut off. what should i do...help me
      Windows XP  

    Go step by step.
    http://support.apple.com/kb/TS1365
    Note: Steps 5 and 6
    Step 5
    Reset SMC.     http://support.apple.com/kb/HT3964
    Choose the method for:
    "Resetting SMC on portables with a battery you should not remove on your own".

  • 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)

  • How do I open a library book on a recently acquired Samsung Nook?  I get "too many activations" error. I have an active adobe digital editions and my other devices work fine.  Custumer Support was unable to get the new device activated.

    I have a library book on the bookshelf of a newly acquired Samsung Nook but I cannot open it.  My other devices work fine but I cannot activate the new unit.  I get a "too many activations" error message.  Customer Services say I have a valid license but they deemed my problem to be a technical issue and referred me to the forum.  Thanks

    Step 1 - by trial and error...
    So far, I have been able to create physical files containing MP3 and JPG on the NAS using the Windows XP systems to copy from shared locations on the Vista and Win7 boxes.  This process has been aided by the use of a 600 GB SATA 2 capable hard drive enclosure.  I first attach to Win 7 or Win Vista and reboot to see the local drive spaces formatted on the portable device.  Then I copy files from the user's private directories to the public drive space.  When the portable drive is wired to an XP box, I can use Windows to move the files from the portable device to the NAS without any of the more advanced file attributes being copied to the NAS.  Once the files are on the NAS, I can add the new folder(s) to iTunes on any of the computers and voila, the data becomes sharable via iTunes.  So far, this works for anything that I have completely purchased, or for MP3's I made from the AIC files created when I purchased alblums via iTunes. 
    I have three huge boxes full of vynl records I've accumulated.  The ones that I've successfully digitized via a turntable attached to the sound card on one of my computers and third party software, have found their way to the NAS after being imported into iTunes and using it to bring down available album art work.  In general I've been reasonably well pleased with the sound quality of digital MP3 files created this way, but the software I've been using sometimes has serious problems automatically separating individual songs from the album tracks and re-converting "one at a time" isn't very efficient.

  • Different errors using standard.jar

    I've been trying to use the standard.jar (JSTL1.0) but I keep getting different errors. I presume, it's JSP1.2 and Servlet2.3 compliant.
    Here is the problem description:
    I've a web-module. I kept this jar under WEB-INF/lib. When I use the taglib usiing
    <%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt" %>
    I get "Unable to open taglibrary http://java.sun.com/jstl/fmt : Could not locate TLD http://java.sun.com/jstl/fmt".
    And when I use the taglib using a local fmt.tld, as in,
    <%@ taglib prefix="fmt" uri="/tld/fmt.tld" %>
    I get, "com.sun.portal.providers.jsp.jasper3.jasper.compiler.CompileException: ......./HarnessPortletContent.jsp(47,65) Unable to load class null".
    Tried both Tomcat3.0 and Sun App Server 7.0

    I know that the JSTL 1.0 jars work in AppServer 7.1. The TLD scanning mechanism is included in 7.1 where you only need to place the jar files that include your TLD's in the web application's WEB-INF/lib directory.
    You can either upgrade to AppServer 7.1 or do the mappings yourself manually as follows:
    1) unjar the JSTL implementation jar file
    2) copy the TLD's to your WEB-INF directory
    3) rejar the JSTL implementation jar file and place it in your WEB-INF/lib directory
    4) modify your web.xml file to point to the JSTL TLD's like:
    <taglib>
    <taglib-uri>http://java.sun.com/jstl/fmt</taglib-uri>
    <taglib-location>/WEB-INF/fmt.tld</taglib-location>
    </taglib>
    I'd recommend upgrading since the above steps are tedious and you can avoid them by using a container like AppServer 7.1 or Tomcat 4.x that implements TLD scanning.
    Thanks,
    Justyna

Maybe you are looking for

  • Vendor Down Payment issue

    Dear Expert             While doing F-48 Vendor Down Payment am getting below Error Customer 450822 is not defined in company code 1000 Message no. F5102 Diagnosis No master record was created in company code "1000" for customer number "450822". Syst

  • How can I get my bookmarks and mailboxes off my old iBook G4 that crashed?

    My OS crashed. I reinstalled it, but still could not access anything. I took the computer to a repair person. He created a new account and retrieved everything I had on my desktop, but not my mailboxes or bookmarks. He said there is a way to do that,

  • Error while downloading Business Partners from R/3 to CRM in Inbound que

    Hi Experts, I am getting function module "PMPAY/P_CHK_MC" not found error in Inbound queue of CRM while downloading customers from CRM to R/3. I checked this FM is not exist in CRM. Why this is FM required in CRM, any way to skip this error? Regards,

  • Accordion widget browser panel height

    I am using the accordion widget browser and would like to shorten the height of the panels - how can I do this...

  • Syntax check for a software component

    Hi all, is there a way to run a syntax check for all objects of a software component? Means triggering the check at software component level. Thanks and regards! Kerstin