SMQ2 - Error messages - Help

Hi All,
We have R3AD_SALES queues failing in SMQ2 with SYSFAIL error status (Function Module: BAPI_CRM_SAVE), I have tried activating and unlocking them but still did not resolve. Below are the few SYSFAIL error message status texts
1. Message type unknown
2. You are not authorized to logon to target system
Could anyone please help me ?

Hi Shiva,
Please check whether the RFC Connections are defined properly and make sure that the 'Remote Logon' is working properly. I think this should resolve your problem.
Hope it helps.
Thanks,
Naga

Similar Messages

  • When i try to download apps from the app store it gives me an error message help!!

    when i try to download apps from the app store it gives me an error message help!!

    Well this is my first time using the support community so I didn't know how it worked. It was giving me the error message 1004. I figured it out though thanks.

  • Error messages help need asap!!!!

    hi this is my code and I need help with what i need to do and how to do it to get rid of the error messages
    CREATE OR REPLACE FUNCTION
    no_of_task_types (x NUMBER)
    RETURN NUMBER IS
    my_val NUMBER;
    BEGIN
    SELECT COUNT(distinct t.task_type_no)
    INTO my_val
    FROM employee e, assignment a, task t
    WHERE e.employee_id = x
    AND e.employee_no = a.employee_no
    AND t.task_id = a.task_id
    RETURN tasktotal;
    END;
    SHOW ERRORS
    these are the error messages:
    Warning: Function created with compilation errors.
    Errors for FUNCTION NO_OF_TASK_TYPES:
    8/1     PL/SQL: SQL Statement ignored
    13/27     PL/SQL: ORA-00933: SQL command not properly ended

    Hi,
    Welcome to the forum!
    Don't say things like "urgent" or "asap" (as in your title, "error messages help need asap!!!!"). It's rude.
    971848 wrote:
    hi this is my code and I need help with what i need to do and how to do it to get rid of the error messages
    CREATE OR REPLACE FUNCTION
    no_of_task_types (x NUMBER)
    RETURN NUMBER IS
    my_val NUMBER;
    BEGIN
    SELECT COUNT(distinct t.task_type_no)
    INTO my_val
    FROM employee e, assignment a, task t
    WHERE e.employee_id = x
    AND e.employee_no = a.employee_no
    AND t.task_id = a.task_id
    RETURN tasktotal;
    END;
    SHOW ERRORS
    these are the error messages:
    Warning: Function created with compilation errors.
    Errors for FUNCTION NO_OF_TASK_TYPES:
    8/1     PL/SQL: SQL Statement ignored
    13/27     PL/SQL: ORA-00933: SQL command not properly endedIt looks like you're missing a semicolon at the end of line 13; that's why the statement beginning at line 8 can't be understood.
    Also, you store a number in my_val, but never use that number, and you have a variable called tasktotal that's never defined. Should my_val and tasktotal be the same variable?
    Perhaps this is what you want:
    CREATE OR REPLACE FUNCTION
           no_of_task_types (x NUMBER)
    RETURN NUMBER IS
        tasktotal   NUMBER;
    BEGIN
        SELECT  COUNT(distinct t.task_type_no)
        INTO    tasktotal
        FROM    employee e, assignment a, task t
        WHERE   e.employee_id = x
        AND     e.employee_no = a.employee_no
        AND     t.task_id        = a.task_id;          -- ; at end is important
        RETURN tasktotal;
    END;
    /This question doesn't have anything to do with SQL*Plus, so maybe the SQL*Plus forum isn't the best place for it. This is strictly a PL/SQL problem; in the future, post questions like this in the PL/SQL. The FAQ page for that forum, {message:id=9360002} , can really help you.

  • Trying to Open PSE 9 and get Microsoft Visual C++ Runtime Library Error Message HELP please! :)

    Everything worked fine until I paid and downloaded a program called Rad Lab that works in Photoshop Elements.  I got that downloaded and then tried to open PSE and it won't open and I keep getting this error message.
    I've attached a screen shot of what the message is.  Also Adobe ran an update on my computer and it came up with an error message as well. Adobe Photoshope Elements 9.0.3. Update- "Patch cannot be applied. Please contact customer support"
    So I called customer support and the wait time is over 1 hour so here I am on this forum trying to get some answers! If anyone can help I would appreciate it so much!!!
    Thanks!

    Well, uninstall that RadLab thing, reboot and see if PSE then works.
    Ken

  • Won't sync and no error message. help

    i plug my ipod in to the usb port, it lights up but the screen doesnt change to the normal connecting or syncing screen and it doesn't show up on itunes. there is no dinging sound for connection. no error messages. all my usb ports work, tried them out with other equipment but ipod wont' sync. please help.

    I have the same problem.  I have 64-bit Windows 7, all updates installed, anti-virus uninstalled, and have a specific firewall exception made just for iTunes, however the iTunes Store still refuses to load.  After waiting a (very long) period of time I get the following screen:
    Sometimes I won't get this screen at all, and iTunes will finish loading with a blank screen.  All of my other computers can load iTunes perfectly fine.  This error occurred directly following the iOS 5 update for my iPhone.  Seeing as that the only computer affected was the one updating my iPhone, I figure there's some connection between the two.  I have
    cleared catche, cookies, everything
    uninstalled and reinstalled all Apple software and components (and end processes)
    completely deleted my iTunes library
    tried creating a new account, but can't even do that becuase I can't connect to the store
    tired de-authorizing and re-authroized the account
    signing-out and signing back in
    disabled parental controls
    made sure I WASN'T behind a proxy server
    I
    Apple Support tried to help with my request but for some reason refused to listen to the notion that this problem occured because of an iOS5 update (and iTunes 10.5).  The only thing I haven't done is wipe my harddrive, which seems to be the only option now. 
    Somebody please help.

  • System Exec error message help

    I have a piece of code as shown in the attached jpg.  And I have it deployed just as shown, without the error cluster being wired.  I use this piece of code to ping a server to see if it's there, meaning to see if it responds with a correct ping response.  If so, I then move forward with writing a data file to that server that I write every half hour for days or weeks at a time.  If the ping response is not correct, I simply go on and return one half hour later with even a larger (appended) data file to write.  My main intent is to not have my code sit and wait, trying to write a file to a server that might not be there...  
    I've used this same code and technique for years without fail.  Until recently.  When it did finally fail, I got the worst of all possible outcomes where the ping command itself caused my code to hang with error messages I will provide shortly.  And I'm hoping someone can tell me what would even cause a message like those below in the first place...  The entire goal of using this ping of the server was to avoid having the "write file" command get held hostage by the server not being there...  But if the ping command itself causes the code to put up error messages (and no one is there to monitor this typically) then that constitutes a situation where my cure became my problem.  
    See in the jpg where I use
    ping -w 200 -n 1
    followed by the name or IP address of the server.  (that's what comes out of the "ping" control you see in the jpg).
    The -w 200 modifier is a 200 ms timeout to wait.
    The -n 1 is the number (1) of echo requests to send.
    When this code fails, it puts up, in sequence, four messages like the one below.  Note that this code is running from an executable that would be found on this Windows XP machine at
    C:\Documents and Settings\xxxxuser\My Documents\my_executables\
    The first of the four messages, each of which you have to click OK to to see the next one, is as follows.
    The file C:\Documents and Settings\xxxxuser\My Documents\my_executables\-w could not be opened.  No application was found to open that type of file
    The second message is identical to the above except the "-w" is replaced by "200" (without the quotes).
    Same with the third message except the "200" is now replaced by "1" (without the quotes).
    Same again with the fourth message except the "1" is now replaced by the full name of the server, eg., "myserver.abc.com" (without the quotes).
    Clearly the System Exec.vi (see that in jpg) is parsing up the ping command, but skipping over the "-n" component(???), and it thinks it's supposed to try to open some non-existent file at the same file location as the executable that is executing my code.  
    I get this result rarely so it's hard to figure out what's going on.  Anyone have any ideas what might cause such an error and any hints on how to prevent this show stopping error from occurring???  Do I perhaps just need to practice better programming and wire the error cluster on System Exec.vi???  
    Any thoughts or help would be much appreciated...  thanks.. bob.. 
    Attachments:
    ping pic.jpg ‏19 KB

    It appears to me that your ping command is getting mangled on its way to the command shell, like something is interrupting it or trying to run at the same time.
    When it says the executable cannot be opened, I believe that is because it's trying to process that character or string as its own separate command, instead of as a flag of your ping command.
    I don't know why that would happen or what outside program could be interfering with your call to the command shell.
    I do think that Wart's suggestion is a good one: the cmd /c part should send the command through a slightly different channel that may preven this interference.
    Chris
    Certified LabVIEW Architect
    Certified TestStand Architect

  • CS4 will not install on Mac OS 10.8.2, AIR Error Message HELP!

    Brand new Macbook Pro.
    I pop in my CS4 and I get the error message about installing AIR.
    I install AIR with no issue.
    Open Set up for CS4, the installer runs for a hot minute then I get this error message:
    "This application requires a version of adobe air which is no longer supported. Please contact the application author for an updated version".
    Looked around on the forums and I couldnt really pinpoint this issue, if i missed a solution please link me!
    This is driving me crazy!
    thanks so much!
    kaelea

    here ya go!
    Nov 10 14:19:19 Kaeleas-MacBook-Pro kernel[0]: HFS: Vol: Adobe AIR Very Low Disk: freeblks: 0, dangerlimit: 323
    Nov 10 14:22:20 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2133]: Runtime Installer begin with version 3.5.0.600 on Mac OS 10.8.2 x86
    Nov 10 14:22:20 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2133]: Commandline is: -psn_0_2790057
    Nov 10 14:22:20 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2133]: Installed runtime (3.5.0.600) located at /Library/Frameworks/Adobe AIR.framework
    Nov 10 14:25:16 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2133]: Relaunching with elevation
    Nov 10 14:25:16 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2133]: Launching subprocess with commandline /Volumes/Adobe AIR/Adobe AIR Installer.app -ei
    Nov 10 14:25:20 Kaeleas-MacBook-Pro.local com.apple.SecurityServer[16]: Succeeded authorizing right 'system.privilege.admin' by client '/Volumes/Adobe AIR/Adobe AIR Installer.app' [2133] for authorization created by '/Volumes/Adobe AIR/Adobe AIR Installer.app' [2133] (13,0)
    Nov 10 14:25:20 Kaeleas-MacBook-Pro.local coreservicesd[71]: Application App:"Adobe AIR Installer" [ 0x0/0x2a92a9]  @ 0x0x7fcd39b6b0e0 tried to be brought forward, but isn't in fPermittedFrontASNs ( ( ASN:0x0-0x2b22b2:) ), so denying.
    Nov 10 14:25:20 Kaeleas-MacBook-Pro.local WindowServer[79]: [cps/setfront] Failed setting the front application to Adobe AIR Installer, psn 0x0-0x2a92a9, securitySessionID=0x186a4, err=-13066
    Nov 10 14:25:20 Kaeleas-MacBook-Pro.local com.apple.SecurityServer[16]: Succeeded authorizing right 'system.privilege.admin' by client '/usr/libexec/security_authtrampoline' [2148] for authorization created by '/Volumes/Adobe AIR/Adobe AIR Installer.app' [2133] (3,0)
    Nov 10 14:25:20 Kaeleas-MacBook-Pro.local authexec[2148]: executing /Volumes/Adobe AIR/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer
    Nov 10 14:25:20 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2148]: Runtime Installer begin with version 3.5.0.600 on Mac OS 10.8.2 x86
    Nov 10 14:25:20 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2148]: Commandline is: -ei
    Nov 10 14:25:20 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2148]: Installed runtime (3.5.0.600) located at /Library/Frameworks/Adobe AIR.framework
    Nov 10 14:25:20 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2148]: Launching subprocess with commandline /bin/chmod -fRP +rw "/Users/Shared/Library/Application Support/Adobe"
    Nov 10 14:25:20 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2148]: Launching subprocess with commandline /usr/sbin/chown -hfRP kaeleasim "/Users/kaeleasim/Library/Application Support/Adobe"
    Nov 10 14:25:20 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2148]: Launching subprocess with commandline /bin/chmod -fRP +rw "/Users/kaeleasim/Library/Application Support/Adobe"
    Nov 10 14:25:20 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2148]: Launching subprocess with commandline /usr/sbin/chown -hfRP kaeleasim "/Users/kaeleasim/Library/Preferences/Macromedia/Flash Player/www.macromedia.com/bin"
    Nov 10 14:25:20 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2148]: Starting silent runtime install. Installing runtime version 3.5.0.600
    Nov 10 14:25:35 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2148]: Registering /Applications/Utilities/Adobe AIR Application Installer.app/Contents/Info.plist
    Nov 10 14:25:35 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2148]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Library/Frameworks/Adobe AIR.framework"
    Nov 10 14:25:35 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2148]: Subprocess chown succeeded
    Nov 10 14:25:35 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2148]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Applications/Utilities/Adobe AIR Application Installer.app"
    Nov 10 14:25:35 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2148]: Subprocess chown succeeded
    Nov 10 14:25:35 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2148]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Applications/Utilities/Adobe AIR Uninstaller.app"
    Nov 10 14:25:36 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2148]: Subprocess chown succeeded
    Nov 10 14:25:36 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2148]: Runtime Installer end with exit code 0
    Nov 10 14:25:36 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2133]: Elevated install completed
    Nov 10 14:26:13 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2133]: Launching subprocess with commandline /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Adobe AIR Updater -installupdatecheck
    Nov 10 14:26:13 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2133]: Runtime Installer end with exit code 0
    Nov 10 14:26:14 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2163]: Runtime Installer begin with version 3.5.0.600 on Mac OS 10.8.2 x86
    Nov 10 14:26:14 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2163]: Commandline is: -installupdatecheck
    Nov 10 14:26:14 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2163]: Installed runtime (3.5.0.600) located at /Library/Frameworks/Adobe AIR.framework
    Nov 10 14:26:15 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2163]: Performing pingback request
    Nov 10 14:26:15 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2163]: Pingback request completed with HTTP status 200
    Nov 10 14:26:15 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2163]: Starting runtime background update check
    Nov 10 14:26:15 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2163]: Begin Background update download from http://airdownload.adobe.com/air/3/background/macos/x86/patch/3.5.0.600/update
    Nov 10 14:26:15 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2163]: Unpackaging http://airdownload.adobe.com/air/3/background/macos/x86/patch/3.5.0.600/update to /Users/kaeleasim/Library/Application Support/Adobe/AIR/Updater/Background
    Nov 10 14:26:15 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2163]: Runtime update not available
    Nov 10 14:26:15 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2163]: Unpackaging cancelled
    Nov 10 14:26:15 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2163]: Runtime Installer end with exit code 0
    Nov 12 01:57:48 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[870]: Application Installer begin with version 3.5.0.600 on Mac OS 10.8.2 x86
    Nov 12 01:57:48 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[870]: Commandline is: -playerVersion=11,4,402,287 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=false -- -isinstalled com.adobe.downloadassistant.AdobeDownloadAssistant adobe.com:air0.29339148150756955 onApplicationVersion
    Nov 12 01:57:48 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[870]: Installed runtime (3.5.0.600) located at /Library/Frameworks/Adobe AIR.framework
    Nov 12 01:57:48 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[870]: Application Installer end with exit code 0
    Nov 12 02:00:31 Kaeleas-MacBook-Pro.local Install Adobe Download Assistant[893]: Installed runtime (3.5.0.600) located at /Library/Frameworks/Adobe AIR.framework
    Nov 12 02:00:31 Kaeleas-MacBook-Pro.local Install Adobe Download Assistant[893]: Launching subprocess with commandline "AIR Application Installer" /Volumes/Install Adobe Download Assistant.app/Install Adobe Download Assistant.app/Contents/Resources/Adobe Download Assistant
    Nov 12 02:00:31 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[896]: Application Installer begin with version 3.5.0.600 on Mac OS 10.8.2 x86
    Nov 12 02:00:31 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[896]: Commandline is: "/Volumes/Install Adobe Download Assistant.app/Install Adobe Download Assistant.app/Contents/Resources/Adobe Download Assistant"
    Nov 12 02:00:31 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[896]: Installed runtime (3.5.0.600) located at /Library/Frameworks/Adobe AIR.framework
    Nov 12 02:00:32 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[896]: Validating app in folder /Volumes/Install Adobe Download Assistant.app/Install Adobe Download Assistant.app/Contents/Resources/Adobe Download Assistant/Contents/Resources
    Nov 12 02:00:34 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[896]: Application signature verified
    Nov 12 02:00:34 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[896]: Unpackaging/validation complete
    Nov 12 02:00:34 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[896]: No app located for appID 'com.adobe.downloadassistant.AdobeDownloadAssistant' and pubID ''
    Nov 12 02:00:38 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[896]: Starting app installation to /Applications. Installing app com.adobe.downloadassistant.AdobeDownloadAssistant version 1.2.4 using the source file at file:///Volumes/Install%20Adobe%20Download%20Assistant.app/Install%20Adobe%20Download%20A ssistant.app/Contents/Resources/Adobe%20Download%20Assistant
    Nov 12 02:00:38 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[896]: Launching subprocess with commandline /Applications/Adobe Download Assistant.app
    Nov 12 02:00:38 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[896]: Application Installer end with exit code 0
    Nov 12 12:41:17 Kaeleas-MacBook-Pro.local Adobe AIR Installer[1724]: Runtime Installer begin with version 3.1.0.4880 on Mac OS 10.8.2 x86
    Nov 12 12:41:17 Kaeleas-MacBook-Pro.local Adobe AIR Installer[1724]: Commandline is: -silent -eulaAccepted AdobeHelp.air
    Nov 12 12:41:17 Kaeleas-MacBook-Pro.local Adobe AIR Installer[1724]: Installed runtime (3.5.0.600) located at /Library/Frameworks/Adobe AIR.framework
    Nov 12 12:41:17 Kaeleas-MacBook-Pro.local Adobe AIR Installer[1724]: Invoking Application Installer for combined install
    Nov 12 12:41:17 Kaeleas-MacBook-Pro.local Adobe AIR Installer[1724]: Launching subprocess with commandline /Volumes/Adobe Illustrator CS6/Adobe Illustrator CS6/payloads/AdobeHelp/Adobe AIR Installer.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer -runtime "/Volumes/Adobe Illustrator CS6/Adobe Illustrator CS6/payloads/AdobeHelp/Adobe AIR Installer.app/Contents/Frameworks" -silent -withRuntime -url -eulaAccepted file:///Volumes/Adobe%20Illustrator%20CS6/Adobe%20Illustrator%20CS6/payloads/AdobeHelp/Ad obeHelp.air
    Nov 12 12:41:19 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[1728]: Application Installer begin with version 3.1.0.4880 on Mac OS 10.8.2 x86
    Nov 12 12:41:19 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[1728]: Commandline is: -runtime "/Volumes/Adobe Illustrator CS6/Adobe Illustrator CS6/payloads/AdobeHelp/Adobe AIR Installer.app/Contents/Frameworks" -silent -withRuntime -url -eulaAccepted file:///Volumes/Adobe%20Illustrator%20CS6/Adobe%20Illustrator%20CS6/payloads/AdobeHelp/Ad obeHelp.air
    Nov 12 12:41:19 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[1728]: Installed runtime (3.5.0.600) located at /Library/Frameworks/Adobe AIR.framework
    Nov 12 12:41:20 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[1728]: Unpackaging file:///Volumes/Adobe%20Illustrator%20CS6/Adobe%20Illustrator%20CS6/payloads/AdobeHelp/Ad obeHelp.air to /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/FlashTmp.YT0mvD
    Nov 12 12:41:24 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[1728]: Application signature verified
    Nov 12 12:41:24 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[1728]: Unpackaging/validation complete
    Nov 12 12:41:24 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[1728]: No app located for appID 'chc' and pubID '4875E02D9FB21EE389F73B8D1702B320485DF8CE.1'
    Nov 12 12:41:24 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[1728]: Converting unpackaged application to a native installation package in /var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/FlashTmp.GBYsKV
    Nov 12 12:41:24 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[1728]: Native installation package creation succeeded
    Nov 12 12:41:24 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[1728]: Starting silent app installation to /Applications/Adobe. Installing app chc.4875E02D9FB21EE389F73B8D1702B320485DF8CE.1 version 4.0.244 using the source file at file:///Volumes/Adobe%20Illustrator%20CS6/Adobe%20Illustrator%20CS6/payloads/AdobeHelp/Ad obeHelp.air
    Nov 12 12:41:25 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[1728]: Launching subprocess with commandline /usr/sbin/chown -hfRP root:wheel "/Applications/Adobe/Adobe Help.app"
    Nov 12 12:41:25 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[1728]: Subprocess chown succeeded
    Nov 12 12:41:25 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[1728]: Launching subprocess with commandline /bin/chmod -R ugo+rx "/Applications/Adobe/Adobe Help.app"
    Nov 12 12:41:25 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[1728]: Subprocess chmod succeeded
    Nov 12 12:41:25 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[1728]: Application Installer end with exit code 0
    Nov 12 12:41:25 Kaeleas-MacBook-Pro.local Adobe AIR Installer[1724]: Subprocess app installer succeeded
    Nov 12 12:41:25 Kaeleas-MacBook-Pro.local Adobe AIR Installer[1724]: Runtime Installer end with exit code 0
    Nov 12 12:41:26 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[1736]: Application Installer begin with version 3.5.0.600 on Mac OS 10.8.2 x86
    Nov 12 12:41:26 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[1736]: Commandline is: -updateUserState
    Nov 12 12:41:26 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[1736]: Installed runtime (3.5.0.600) located at /Library/Frameworks/Adobe AIR.framework
    Nov 12 12:41:26 Kaeleas-MacBook-Pro.local Adobe AIR Application Installer[1736]: Application Installer end with exit code 0
    Nov 12 13:28:10 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2437]: Runtime Installer begin with version 3.5.0.600 on Mac OS 10.8.2 x86
    Nov 12 13:28:10 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2437]: Commandline is: -psn_0_1642897
    Nov 12 13:28:10 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2437]: Installed runtime (3.5.0.600) located at /Library/Frameworks/Adobe AIR.framework
    Nov 12 13:28:16 Kaeleas-MacBook-Pro.local Adobe AIR Installer[2437]: Runtime Installer end with exit code 6
    Nov 12 13:28:16 Kaeleas-MacBook-Pro com.apple.launchd.peruser.501[134] ([0x0-0x191191].com.adobe.air.Installer[2437]): Exited with code: 6

  • ERROR MESSAGE - The media being played is of an unsupported format...ERROR MESSAGE - HELP

    I recently download an app to watch movies on my phone from blackberrymovemachine.com.  I successfully downloaded this app and when I go to play movies it starts the download and then I get the error message: The media being played is of an unsupported format.  I have gotten this message too when trying to play some videos on you tube.  Any suggestions or help would be great?  Do I need to download another app to support this type of media? 
    Thanks

    See this KB for supported media formats:
    KB05482 Media types supported on the BlackBerry smartphone
    Now, that is for the native BB media player...if you are using this app you say you installed, then your query needs to be addressed to the app developer...
    Hope that helps!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • New iMac Intel, won't do transitions, error message HELP!

    My daughter just bought a new Intel iMac, specifically for the purpose of making movies with iMovie. She has run into a problem trying to do transitions, using primarily Cross-Dissolve. Sometimes she can put them in and iMovie renders them. Then, other times, doing the same thing with the cross dissolve on another photo or clip, she receives this message: "An unknown error occured - You may be able to continue without any probelms. You may also wish to save, quit and relaunch imovie HD"
    When she saves, quits and relaunches, the transition is not saved and she has to try placing it again. This has happened over and over; quit, relaunch. Inconsistent results in that sometimes she can put transitions in, and sometimes she cannot.
    She has repaired permissions, deleted iMovie's and iPhoto's plists. No resolution of the problem.
    This is a brand new computer. She did the iLife upgrades just after setting up the computer, when prompted to do so by Software Updater.
    No one else is using the computer. She has a huge hard drive.
    What can help?
    I saw that this same error message question was posted in November 06, with 0 responses.
    We need HELP!!!

    So far, she has just begun to create a new iMovie. Wants to transfer the video clips from the old project, as they are already edited. She is going to try that, knows it may be a problem, but thinks if she doesn't empty the trash, and reimports the photos, she might be ok.
    Thanks for the luck wishes.
    My daughter is my offspring who made an iMovie before I did using 'iMovie for Dummies' with v2.
    Other than that, she used her Mac computer only for school papers and emails. She used to call me from college and tell me the Mac had broken, and I would talk her through whatever problem she was having. She became quite good with Macs, but then switched to PCs after she got married to a software engineer. She now is great with them, but really wants to make movies and iMovie is much easier than the PC movie software. I was hoping that her project would go well, but she becomes frustrated so easily. She had just put in about three hours of work on her project when she ran into the transition difficulty. She has finally forgiven me for not mentioning the caveat about emptying the trash. I asked her if iMovie warned her first, but she said something about not understanding the message and just emptied the trash anyway. With 250GB on her drive, she has no need to free up space by emptying the trash!
    Will let you know how this new effort goes. Thanks for the support.

  • Connection Timeout error message - HELP!

    Hi,
    I am so fed up with my internet connection....so here is my story....
    I live above a shop in a rented flat which is owned by the shop owner, he kindly gave me the password for his router so I could use his internet free of charge.
    This has worked fine with 3 different connections he has had since I have lived there and was working with the current one up until about a week ago.....it all of a sudden went off, however it was still showing up as an available network in my networks list, but when I try to connect to it using the password it brings up the 'connection timeout' error message.
    I thought that this was something to do with his router so I brought my friends 3 Huawei E585 wireless internet device round to try that, but the same message appears, HOWEVER my iPhone 4 connects to this perfectly fine with a full signal strength.
    THEN....my Dad took my Macbook and the 3 Huawei E585 device over to his house and my Macbook connected to it straight away??? ....... is there anything in the building that could affect the connection?? - as it seems to be my flat for some reason all of a sudden!? ..... my Dad has suggested it may be some sort of electrical interference if anything new has been installed recently?
    Any help would be GREATLY appreciated as I'm SOOOOOO fed up of not having internet!!
    Thanks

    John,
    I had the same problem when I upgraded from Tiger to Leopard in January. My memory is already rusty but try the following:
    1. Go to System Preferences > Network pane. On the left pane, click on AirPort. In the right pane lower right, click Advanced button. Then on the AirPort tab, click on the name of your network and then the minus sign to remove it from the list.
    2. Click Apply and quit System Preferences.
    3. Put the computer to sleep.
    4. Wake the computer.
    5. Go back in to Network preferences, AirPort tab. Click the plus sign to add your network. Fill in the Network Name, choose the type of Security by clicking on the pop-down bar, enter password/code/phrase and click Add. NOTE: Do not connect to the network at this time.
    6. Click Apply and Quit the Network Preferences.
    7. On the Menu row, click the Airport icon and select your network. (IF your network does not show, choose Join Other Network. Fill in the Network Name, choose the type of Security by clicking on the pop-down bar, enter password/code/phrase and click Join.)
    8. Verify connectivity
    9. Put the computer to sleep.
    10. Wake the computer.
    11. Verify connectivity
    HTH

  • Moved Photoshop Application to my Desktop for easy access and now recieving an error message, help?

    Installed CS6 Design and Web Premium, then moved Photoshop Application to my Desktop from Program Files for easy access and now recieving an error message, saying application is unable to start correctly. Can anyone help me troubleshoot this please?

    Move the application back where it belongs, with all it's support files.
    You can make a SHORTCUT to the application, and place it on the desktop if you wish.

  • Have hanging program, all web sites do not load,no error message . help

    I log onto Firefox. I select a website from my bookmarks.Nothing happens. it just freezes. no website come up. there are no error messages. Nothing.
    I have no problem loading the websites on IE. All websites load on IE, no problem. Please help me restore Firefox browser. Thank you.
    This occured today about 2 hours ago. it has never happened before.

    yeah I thought that as well but my roommate has a macbook air on the same network and his works fine on the same web pages... maybe Its no problem at all. I was just curious if this is normal because when I had a PC that did this it had a trojan horse virus effecting it and ultimately caused it to crash.

  • I/O error message help?

    I recently did a project that included some "Client-provided" footage of computer screen capture video. He did it on a Windows PC with a trial version (I believe) of Camtasia. Ever since I delivered that, I've been getting an "I/O error" message and cannot export video from any other project--projects on completely different external drives no where near where this project is located. I've tried creating new, clean 10 second videos from scratch and they won't export in any form out of Final Cut Pro (6.0.6).
    I can't find any mention of the I/O error message relating to Mac, only Windows.
    Any help out there?

    I think it's solved. I went back and removed all the project files that contained the client's window-PC video he supplied and ran disc utility on the drive (external) and that seemed to make everything work again.
    Very strange how that affected the drive though.
    Lar

  • Restore Connection Error Message HELP

    I'm getting so frustrated right now...not able to do anything cuz my phone keeps giving error message of Radio Off/Restore Connections." I have tried to toggle certain things and take the battery out but nothing. Help me please!

    If you go into Manage Connections, if the "Mobile Network" doesn't have a check mark then you can check it to turn the radio on. Or you can choose the Restore Connections or Turn All Connections On option at the top of the list.
    If someone has been helpful please consider giving them kudos by clicking the star to the left of their post.
    Remember to resolve your thread by clicking Accepted Solution.

  • IChat Error Message Help

    Hi, I get the following error message when I try to use iChat video. Please help!
    Date/Time: 2008-11-29 22:50:24.328 +0800
    OS Version: 10.5.5 (Build 9F33)
    Report Version: 4
    iChat Connection Log:
    2008-11-29 22:50:02 +0800: AVChat started with ID 2390728519.
    2008-11-29 22:50:02 +0800: [email protected]: State change from AVChatNoState to AVChatStateWaiting.
    2008-11-29 22:50:02 +0800: 0x2bb46de0: State change from AVChatNoState to AVChatStateInvited.
    2008-11-29 22:50:14 +0800: 0x2bb46de0: State change from AVChatStateInvited to AVChatStateConnecting.
    2008-11-29 22:50:14 +0800: [email protected]: State change from AVChatStateWaiting to AVChatStateConnecting.
    2008-11-29 22:50:22 +0800: 0x2bb46de0: State change from AVChatStateConnecting to AVChatStateEnded.
    2008-11-29 22:50:22 +0800: 0x2bb46de0: Error -7 (0x2bb46de0 cancelled the connection.)
    2008-11-29 22:50:22 +0800: [email protected]: State change from AVChatStateConnecting to AVChatStateEnded.
    2008-11-29 22:50:22 +0800: [email protected]: Error -7 (0x2bb46de0 cancelled the connection.)
    Video Conference Error Report:
    14.604106 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    14.604557 @SIP/SIP.c:2719 type=4 (900A002D/0)
    [SIPConnectIPPort failed]
    817.705203 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    817.705547 @SIP/SIP.c:2719 type=4 (900A002D/0)
    [SIPConnectIPPort failed]
    849.097135 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    849.097551 @SIP/SIP.c:2719 type=4 (900A002D/0)
    [SIPConnectIPPort failed]
    Video Conference Support Report:
    0.422816 @Video Conference/VCInitiateConference.m:1583 type=2 (00000000/0)
    [Connection Data for call id: 1 returns 1
    6.589238 @Video Conference/VCInitiateConference.m:1598 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    6.601527 @Video Conference/VCInitiateConference.m:1702 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    12.604378 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK129154823893f11f
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=205075191
    Call-ID: 19d542f4-be23-11dd-b23a-ffc5b84d4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 703
    v=0
    o=Leo 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:3060
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2812498341
    m=video 16402 RTP/AVP 126 34
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1424668522
    13.104654 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK129154823893f11f
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=205075191
    Call-ID: 19d542f4-be23-11dd-b23a-ffc5b84d4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 703
    v=0
    o=Leo 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:3060
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2812498341
    m=video 16402 RTP/AVP 126 34
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1424668522
    14.104921 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK129154823893f11f
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=205075191
    Call-ID: 19d542f4-be23-11dd-b23a-ffc5b84d4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 703
    v=0
    o=Leo 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:3060
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2812498341
    m=video 16402 RTP/AVP 126 34
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1424668522
    14.604520 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:39508;branch=z9hG4bK543fefb02bbd4a77
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1492766819
    Call-ID: 1b066f5e-be23-11dd-b23a-dd442be84012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:39508>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 709
    v=0
    o=Leo 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:3060
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 39508 RTP/AVP 110 121 12 3 0
    a=rtcp:39508
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2812498341
    m=video 39508 RTP/AVP 126 34
    a=rtcp:39508
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 39508 VIDEO 39508
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1424668522
    367.639535 @Video Conference/VCInitiateConference.m:1583 type=2 (00000000/0)
    [Connection Data for call id: 3 returns 1
    396.975537 @Video Conference/VCInitiateConference.m:1583 type=2 (00000000/0)
    [Connection Data for call id: 4 returns 1
    397.513806 @Video Conference/VCInitiateConference.m:1598 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    800.733880 @Video Conference/VCInitiateConference.m:1583 type=2 (00000000/0)
    [Connection Data for call id: 5 returns 1
    809.690063 @Video Conference/VCInitiateConference.m:1598 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    809.694985 @Video Conference/VCInitiateConference.m:1702 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    815.705465 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK285829c47505f35d
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=650812698
    Call-ID: f87e25ec-be24-11dd-b23a-bae3fae94012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 702
    v=0
    o=Leo 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:3060
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3189215810
    m=video 16402 RTP/AVP 126 34
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:258435594
    816.205740 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK285829c47505f35d
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=650812698
    Call-ID: f87e25ec-be24-11dd-b23a-bae3fae94012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 702
    v=0
    o=Leo 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:3060
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3189215810
    m=video 16402 RTP/AVP 126 34
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:258435594
    817.206027 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK285829c47505f35d
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=650812698
    Call-ID: f87e25ec-be24-11dd-b23a-bae3fae94012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 702
    v=0
    o=Leo 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:3060
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3189215810
    m=video 16402 RTP/AVP 126 34
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:258435594
    817.705512 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:33362;branch=z9hG4bK516fef2f1884bd83
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1907454051
    Call-ID: f9af5166-be24-11dd-b23a-8b966e444012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:33362>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 708
    v=0
    o=Leo 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:3060
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 33362 RTP/AVP 110 121 12 3 0
    a=rtcp:33362
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:3189215810
    m=video 33362 RTP/AVP 126 34
    a=rtcp:33362
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 33362 VIDEO 33362
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:258435594
    830.050380 @Video Conference/VCInitiateConference.m:1583 type=2 (00000000/0)
    [Connection Data for call id: 7 returns 1
    841.081429 @Video Conference/VCInitiateConference.m:1598 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    841.086401 @Video Conference/VCInitiateConference.m:1702 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    847.097444 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK628efc96477f9bb2
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=365193390
    Call-ID: 0b33ed52-be25-11dd-b23a-b43328f64012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 702
    v=0
    o=Leo 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:3060
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1469239155
    m=video 16402 RTP/AVP 126 34
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:403794809
    847.597721 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK628efc96477f9bb2
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=365193390
    Call-ID: 0b33ed52-be25-11dd-b23a-b43328f64012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 702
    v=0
    o=Leo 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:3060
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1469239155
    m=video 16402 RTP/AVP 126 34
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:403794809
    848.598005 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK628efc96477f9bb2
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=365193390
    Call-ID: 0b33ed52-be25-11dd-b23a-b43328f64012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 702
    v=0
    o=Leo 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:3060
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1469239155
    m=video 16402 RTP/AVP 126 34
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:403794809
    849.097513 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:33362;branch=z9hG4bK5d2349225c39dbcf
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1813869510
    Call-ID: 0c65198a-be25-11dd-b23a-fafe0ed74012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:33362>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 708
    v=0
    o=Leo 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:3060
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 33362 RTP/AVP 110 121 12 3 0
    a=rtcp:33362
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1469239155
    m=video 33362 RTP/AVP 126 34
    a=rtcp:33362
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 33362 VIDEO 33362
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:403794809
    Video Conference User Report:
    0.000000 @:0 type=5 (00000000/16402)
    [Local SIP port]
    Binary Images Description for "iChat":
    0x1000 - 0x23bfff com.apple.iChat 4.0.5 (608) /Applications/iChat.app/Contents/MacOS/iChat
    0x2b0000 - 0x31efff com.apple.Bluetooth 2.1 (2.1f17) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x36a000 - 0x4bdfff com.apple.viceroy.framework 363.2.12 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x52b000 - 0x56afff com.apple.vmutils 4.1 (104) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x58c000 - 0x5a5fff com.apple.frameworks.preferencepanes 12.1 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x5bf000 - 0x5f9fff com.apple.remotedesktop.screensharing 1.0.1 /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x609000 - 0x61dfff com.apple.ScreenSaver 2.1 /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x62e000 - 0x64cfff libexpat.1.dylib /usr/lib/libexpat.1.dylib
    0x654000 - 0x685fff com.apple.iChatCommonGUI 4.0.5 (608) /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0x6ae000 - 0x6b1fff com.apple.BezelServicesFW 1.4.832 /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x6f1000 - 0x6f6fff com.apple.iChat.Styles.Balloons 4.0.3 (608) /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents/MacO S/Balloons
    0x219fb000 - 0x219fefff com.apple.iChat.Styles.Boxes 4.0.3 (608) /Applications/iChat.app/Contents/PlugIns/Boxes.transcriptstyle/Contents/MacOS/B oxes
    0x21a05000 - 0x21a0bfff com.apple.iChat.Styles.Compact 4.0.3 (608) /Applications/iChat.app/Contents/PlugIns/Compact.transcriptstyle/Contents/MacOS /Compact
    0x21a13000 - 0x21a15fff com.apple.iChat.Styles.Text 4.0.3 (608) /Applications/iChat.app/Contents/PlugIns/Text.transcriptstyle/Contents/MacOS/Te xt
    0x2424e000 - 0x2425afff com.apple.airport.diskmenu 1.2.1 (121.4) /System/Library/Contextual Menu Items/AirPort Disk Menu.plugin/Contents/MacOS/AirPort Disk Menu
    0x2425f000 - 0x24261fff com.apple.AutomatorCMM 1.1 (160) /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x24267000 - 0x24268fff com.apple.BluetoothMenu 2.1 (2.1f17) /System/Library/Contextual Menu Items/BluetoothContextualMenu.plugin/Contents/MacOS/BluetoothContextualMenu
    0x2426d000 - 0x24272fff com.apple.FolderActionsMenu 1.3.2 /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x24803000 - 0x249ebfff com.apple.RawCamera.bundle 2.0.11 (410) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x24ad5000 - 0x24adafff com.apple.CoreGraphics 1.351.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x2665f000 - 0x26668fff com.apple.IOFWDVComponents 1.9.5 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x26679000 - 0x2667cfff com.apple.audio.AudioIPCPlugIn 1.0.4 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x26682000 - 0x26683fff com.apple.bluetooth.IOBluetoothSCOAudioDriverPlugIn 2.1 (2.1f17) /System/Library/Extensions/IOBluetoothFamily.kext/Contents/PlugIns/IOBluetoothS COAudioDriver.kext/Contents/Resources/IOBluetoothSCOAudioDriverPlugIn.bundle/Con tents/MacOS/IOBluetoothSCOAudioDriverPlugIn
    0x26691000 - 0x26696fff com.apple.audio.AppleHDAHALPlugIn 1.5.7 (1.5.7a24) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x266ed000 - 0x26728fff com.apple.QuickTimeFireWireDV.component 7.5.5 (990.7) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x26735000 - 0x26762fff com.apple.QuickTimeIIDCDigitizer 7.5.5 (990.7) /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x2676d000 - 0x267b7fff com.apple.QuickTimeUSBVDCDigitizer 2.1.7 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x267de000 - 0x26961fff com.apple.opengl 1.5.7 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x2698f000 - 0x26cf6fff com.apple.GeForce8xxxGLDriver 1.5.30 (5.3.0) /System/Library/Extensions/GeForce8xxxGLDriver.bundle/Contents/MacOS/GeForce8xx xGLDriver
    0x27031000 - 0x2704dfff com.apple.opengl 1.5.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x28469000 - 0x28626fff com.apple.audio.codecs.Components 1.6.4 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x289c3000 - 0x289c3fff liblangid.dylib /usr/lib/liblangid.dylib
    0x289c8000 - 0x289c8fff com.apple.JavaPluginCocoa 12.2.0 /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x289db000 - 0x289dcfff com.apple.iChat.PersonIconPlugIn 4.0.3 (608) /Applications/iChat.app/Contents/PlugIns/PersonIcon.plugin/Contents/MacOS/Perso nIcon
    0x2926f000 - 0x29275fff com.apple.JavaVM 12.2.0 /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x29759000 - 0x2975cfff com.apple.iokit.IOQTComponents 1.6 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x2a6c9000 - 0x2a6e5fff com.apple.QuartzComposer.ExtraPatches 2.1 (106.5) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x2a777000 - 0x2a794fff com.apple.audio.midi.CoreMIDI 1.6 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x2a83d000 - 0x2a84afff com.apple.QuartzComposer.Backdrops 1.1 /System/Library/Graphics/Quartz Composer Patches/Backdrops.plugin/Contents/MacOS/Backdrops
    0x8fe00000 - 0x8fe2dfff dyld /usr/lib/dyld
    0x90003000 - 0x9003afff com.apple.SystemConfiguration 1.9.2 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9003b000 - 0x90057fff com.apple.IMFramework 4.0.5 (582) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x9006c000 - 0x900ebfff com.apple.SearchKit 1.2.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x900ec000 - 0x900f3fff libbsm.dylib /usr/lib/libbsm.dylib
    0x900f4000 - 0x900f6fff com.apple.securityhi 3.0 (30817) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x900f7000 - 0x90154fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90155000 - 0x90179fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x90244000 - 0x90244fff com.apple.audio.units.AudioUnit 1.5 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x90245000 - 0x9025dfff com.apple.openscripting 1.2.8 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9025e000 - 0x9028ffff com.apple.quartzfilters 1.5.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x90290000 - 0x902dffff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x902e0000 - 0x90330fff com.apple.HIServices 1.7.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x903e0000 - 0x905aefff com.apple.security 5.0.4 (34102) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x905af000 - 0x90c4bfff com.apple.CoreGraphics 1.351.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x90c4c000 - 0x90c50fff com.apple.ImageIO.framework 2.0.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x90c51000 - 0x90c95fff com.apple.DirectoryService.PasswordServerFramework 3.0.3 /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x90c96000 - 0x90d77fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x90d78000 - 0x90d8efff com.apple.CoreVideo 1.5.1 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90d8f000 - 0x90da5fff com.apple.DictionaryServices 1.0.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x90da6000 - 0x90dd0fff com.apple.CoreMediaPrivate 11.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x90dd1000 - 0x90e13fff com.apple.NavigationServices 3.5.2 (163) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x90e14000 - 0x90f46fff com.apple.CoreFoundation 6.5.4 (476.15) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90f47000 - 0x91357fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x91358000 - 0x91392fff com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x91393000 - 0x913c5fff com.apple.LDAPFramework 1.4.5 (110) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x914a7000 - 0x914aafff com.apple.help 1.1 (36) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x914ab000 - 0x915f1fff com.apple.ImageIO.framework 2.0.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x915f2000 - 0x91631fff com.apple.ImageIO.framework 2.0.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91632000 - 0x919f0fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x919f1000 - 0x919fcfff com.apple.CoreGraphics 1.351.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x919fd000 - 0x91b35fff com.apple.imageKit 1.0.2 (1.0) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x91b36000 - 0x91b65fff com.apple.AE 402.2 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x91b66000 - 0x91b9cfff libtidy.A.dylib /usr/lib/libtidy.A.dylib
    0x91b9d000 - 0x91bdefff com.apple.CoreGraphics 1.351.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x91bdf000 - 0x91bf0fff com.apple.CFOpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x91bf1000 - 0x91c98fff com.apple.QD 3.11.54 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91c99000 - 0x91ca8fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x91ca9000 - 0x91d05fff com.apple.htmlrendering 68 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x91d06000 - 0x91d83fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91d84000 - 0x91db1fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91db2000 - 0x91e3dfff com.apple.framework.IOKit 1.5.1 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x91e3e000 - 0x91e66fff com.apple.shortcut 1 (1.0) /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x91e67000 - 0x91e85fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x91e86000 - 0x91f4dfff com.apple.vImage 3.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f4e000 - 0x9200cfff com.apple.WebKit 5525.26 (5525.26.2) /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9200d000 - 0x92014fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x92015000 - 0x92021fff com.apple.opengl 1.5.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92022000 - 0x9209efff com.apple.audio.CoreAudio 3.1.0 (3.1) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9209f000 - 0x920a8fff com.apple.speech.recognition.framework 3.7.24 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9217c000 - 0x9249efff com.apple.QuickTime 7.5.5 (990.7) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9249f000 - 0x9254ffff edu.mit.Kerberos 6.0.12 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x92550000 - 0x92630fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x92631000 - 0x9263dfff com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x9263e000 - 0x92669fff libauto.dylib /usr/lib/libauto.dylib
    0x9266a000 - 0x9267efff com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9267f000 - 0x926d8fff com.apple.opengl 1.5.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x926d9000 - 0x92727fff com.apple.datadetectorscore 1.0.2 (52.14) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x92728000 - 0x92728fff com.apple.quartzframework 1.5 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x92729000 - 0x9272efff com.apple.CommonPanels 1.2.4 (85) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9272f000 - 0x92742fff com.apple.IMUtils 4.0.5 (582) /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x92743000 - 0x928fefff com.apple.QuartzComposer 2.1 (106.5) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x928ff000 - 0x92989fff com.apple.DesktopServices 1.4.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9298a000 - 0x92991fff com.apple.agl 3.0.9 (AGL-3.0.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x92992000 - 0x92993fff libffi.dylib /usr/lib/libffi.dylib
    0x92994000 - 0x92994fff com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9299a000 - 0x929f4fff com.apple.CoreText 2.0.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x929f5000 - 0x92a3ffff com.apple.securityinterface 3.0 (32532) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x92a40000 - 0x92a40fff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x92a41000 - 0x92ddefff com.apple.QuartzCore 1.5.5 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x92ddf000 - 0x93d94fff com.apple.QuickTimeComponents.component 7.5.5 (990.7) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x93d95000 - 0x93e07fff com.apple.iLifeMediaBrowser 1.0.9 (212.0.1) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x93e08000 - 0x93ebafff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x93ebb000 - 0x93f21fff com.apple.ISSupport 1.7 (38) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x93f22000 - 0x93fdcfff com.apple.CoreServices.OSServices 226.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x93fdd000 - 0x940a8fff com.apple.ColorSync 4.5.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x940a9000 - 0x940aefff com.apple.backup.framework 1.0 /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x940af000 - 0x940b9fff com.apple.audio.SoundManager 3.9.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x940ba000 - 0x940defff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x940df000 - 0x9435afff com.apple.Foundation 6.5.6 (677.21) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9435b000 - 0x943eefff com.apple.ink.framework 101.3 (86) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x943ef000 - 0x943effff com.apple.Carbon 136 /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x943f0000 - 0x9440ffff com.apple.ImageIO.framework 2.0.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x94410000 - 0x94497fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94498000 - 0x9449cfff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x944a7000 - 0x944cffff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x944d0000 - 0x9450ffff com.apple.CoreMediaIOServicesPrivate 12.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x94510000 - 0x94b61fff com.apple.WebCore 5525.26 (5525.26.6) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x94b62000 - 0x94ba0fff com.apple.opengl 1.5.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94d03000 - 0x94d87fff com.apple.CFNetwork 339.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x94d88000 - 0x94f07fff com.apple.AddressBook.framework 4.1.1 (696) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94f08000 - 0x94f7afff com.apple.PDFKit 2.1.1 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x94f7b000 - 0x94f89fff libz.1.dylib /usr/lib/libz.1.dylib
    0x94f97000 - 0x94fa7fff com.apple.LangAnalysis 1.6.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x94fa8000 - 0x94fa8fff com.apple.MonitorPanelFramework 1.2.0 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x94fa9000 - 0x94fa9fff com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x94faa000 - 0x95024fff com.apple.print.framework.PrintCore 5.5.3 (245.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x95025000 - 0x95075fff com.apple.framework.familycontrols 1.0.2 /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x95076000 - 0x95094fff com.apple.DirectoryService.Framework 3.5.5 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9518a000 - 0x9521dfff com.apple.ApplicationServices.ATS 3.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9548a000 - 0x95c87fff com.apple.AppKit 6.5.3 (949.34) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x95c88000 - 0x95c88fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x95c89000 - 0x95c8bfff com.apple.CrashReporterSupport 10.5.5 (159) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x95c8c000 - 0x95c92fff com.apple.print.framework.Print 218.0.2 (220.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x95c93000 - 0x95d41fff com.apple.QTKit 7.5.5 (990.7) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x95d42000 - 0x95d59fff com.apple.datadetectors 1.0.1 (66.2) /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x95d5a000 - 0x96034fff com.apple.CoreServices.CarbonCore 786.6 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x96035000 - 0x96042fff com.apple.opengl 1.5.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x96043000 - 0x96060fff com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x96061000 - 0x96065fff com.apple.OpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x96066000 - 0x9606efff com.apple.DiskArbitration 2.2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9606f000 - 0x960b8fff com.apple.Metadata 10.5.2 (398.22) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x960b9000 - 0x960c0fff com.apple.CoreGraphics 1.351.33 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x960c1000 - 0x960d0fff com.apple.DSObjCWrappers.Framework 1.2.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x960d1000 - 0x9610afff com.apple.securityfoundation 3.0 (32989) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9610b000 - 0x9622ffff com.apple.audio.toolbox.AudioToolbox 1.5.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x96230000 - 0x96230fff com.apple.CoreServices 32 /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x96231000 - 0x96241fff com.apple.speech.synthesis.framework 3.7.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x96273000 - 0x96744fff com.apple.opengl 1.5.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x96745000 - 0x9674afff com.apple.DisplayServicesFW 2.0 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9674b000 - 0x968abfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x968ac000 - 0x968c7fff com.apple.ImageIO.framework 2.0.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x968c8000 - 0x96a00fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x96a01000 - 0x96a01fff com.apple.Cocoa 6.5 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x96a02000 - 0x96a02fff com.apple.ApplicationServices 34 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x96a03000 - 0x96a8ffff com.apple.LaunchServices 290 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x96a90000 - 0x96d97fff com.apple.HIToolbox 1.5.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x96d98000 - 0x96d9afff com.apple.ImageIO.framework 2.0.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x96d9b000 - 0x96e69fff com.apple.JavaScriptCore 5525.26 (5525.26.2) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x96e6a000 - 0x96f4ffff com.apple.CoreData 100.1 (186) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x96f50000 - 0x97051fff com.apple.PubSub 1.0.3 (65.1.1) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub

    In that case I would guess the ADSL modem is possibly a Thomson-Alcatel Speedtouch.
    There are several dozen Speedtouch variations going back at least 10 years with the base 500 series (510, 510i 510v4 516, 546, 580 and so on)
    At about 4 years ago they brought newer versions to work with their Version 5 fimware (they are now up to Version 7) and numbers like 716 and 780 and others have appeared.
    If it is a Speedtouch they have specific issues for iChat that are difficult to solve above version 5 firmware.
    Other modems that do Port Forwarding can create the same situation.
    http://www.ralphjohns.co.uk/page15.html#CertainBuddy Using UPnP is normally the answer.
    Knowing the precise Make and Model of the device you have will help even if it is not a Speedtouch.
    7:03 PM Monday; December 1, 2008

Maybe you are looking for

  • 2 files scenario design

    Hey guys, I have a simple interface where I need to get 2 files from an FTP directory, and then post it in SAP. Once both files are posted, I need to do an RFC call but only once. So the flow will be: FILE1 AND FILE2 --> PI --> FILE1 AND FILE2 IN SAP

  • Running a windows batch file on the middle teir

    Hi, I am converting a client/server Forms app to 10iAS (9.0.4). in Client Server mode, one of the forms calls a batch file that runs on the client. The same batch file must now run on the middle teir app server where iAS is installed, not the client'

  • Premiere Pro 2014 Cannot Handle Medium-Sized Project

    Dear Adobe, I just got back from filming 2 projects in China and wanted to start organizing my footage. I started in Prelude, thinking that would be a great place to start, but it was SO SLOW. It took a full day for it to just register all my files f

  • Fonts can show in other illustrator CS version but not illustratorCS6....

    Hello, I am a new useer of CS6 Creative Suite and please forgive my poor english. I found a big problem (for me ) of the font showing. Since i used CS5 before , the font can show normally. But I found that some of the type cannot be show but instead

  • ACE 4710 Redirection based on incoming Spanish Language

    I have a customer that wants to redirect incoming traffic to a different url or host based on the end users language. Spanish in particular. What is the best way to accomplish this task with the least amount of issues. Stan