Callback Function in AQ not launched

Hi All,
I have registered a callback function on a queue. When I enqueue it has to call callback function. Below is my scrip for creation of Queue and Enqueue.
CREATE type xxMessage_typ as object
    ( subject VARCHAR2(30), text VARCHAR2(80));
=================================================
BEGIN
SYS.DBMS_AQADM.CREATE_QUEUE_TABLE(
                  QUEUE_TABLE           =>  'XXKNL_TEST_QTAB'
                 ,QUEUE_PAYLOAD_TYPE    =>  'xxMessage_typ'
                 ,MULTIPLE_CONSUMERS    =>  TRUE);
END;
===============================================
BEGIN
SYS.DBMS_AQADM.CREATE_QUEUE(
                  QUEUE_NAME          =>   'XXKNL_TEST_Q'
                 ,QUEUE_TABLE         =>   'XXKNL_TEST_QTAB'
END;
============================================
BEGIN
dbms_aqadm.add_subscriber
        ( queue_name => 'XXKNL_TEST_Q',
          subscriber => sys.aq$_agent( 'RECIPIENT', null, null ) );
SYS.DBMS_AQ.REGISTER ( SYS.AQ$_REG_INFO_LIST( SYS.AQ$_REG_INFO('XXKNL_TEST_Q:RECIPIENT',DBMS_AQ.NAMESPACE_AQ,
               'plsql://XXKNL_NOTIFYCB',
                HEXTORAW('FF')
          1
END;
===================================
BEGIN
  SYS.DBMS_AQADM.START_QUEUE
    QUEUE_NAME => 'XXKNL_TEST_Q'
   ,ENQUEUE => TRUE
   ,DEQUEUE => TRUE
END;
==========================================
DECLARE
enqueue_options dbms_aq.enqueue_options_t;
     message_properties dbms_aq.message_properties_t;
     message_handle RAW(16);
     message xxmessage_typ;
BEGIN
       message := xxmessage_typ('NORMAL MESSAGE',  'This is my Q..' );
       dbms_aq.enqueue(queue_name => 'xxknl_test_q',
                      enqueue_options => enqueue_options,
                      message_properties => message_properties,
                      payload => message,
                      msgid => message_handle);
end;
========================================================
create or replace procedure xxknl_notifyCB( context raw,
                                          reginfo sys.aq$_reg_info,
                                          descr sys.aq$_descriptor,
                                          payload raw,
                                          payloadl number)
    as
     dequeue_options dbms_aq.dequeue_options_t;
     message_properties dbms_aq.message_properties_t;
     message_handle RAW(16);
    message xxmessage_typ;
   BEGIN
      dequeue_options.msgid := descr.msg_id;
      dequeue_options.consumer_name := descr.consumer_name;
      DBMS_AQ.DEQUEUE(queue_name => descr.queue_name,
                      dequeue_options => dequeue_options,
                      message_properties => message_properties,
                      payload => message,
                      msgid => message_handle);
      insert into xxknl_test values
      ( 'Dequeued and processed "' || message.text || '"' );
      COMMIT;
   END;
Please let me know if something is missed.
Thanks
Rishi

Hi,
Kindly check below;
AQ PL/SQL Notification: PL/SQL Callback and Email Notification (Doc ID 225749.1)
Also let me know if there are any Q0** or J0** traces generated.
Thanks,

Similar Messages

  • Custom UI Runtime Error in Adobe LeanPrint Outlook COM Addin:  The callback function "OnHide" was not found in

    Has anyone experienced this error and if so can you please tell me how to fix it?  I can't seem to find anything on Adobe regarding this error.  I am running Windows 8.1 O/S, MS Office & Outlook 2013 and the latest version of LeanPrint (which I purchased from Adobe on-line about 2 weeks ago). Thank you.

    HI,
    Would you be able to please confirm if you made any changes on your machine after which you started getting this error, like installing some new update or plugin.
    I would suggest you to try repairing Adobe LeanPrint from Control Panel > Program's and Featured and select LeanPrint and choose the repair option from there.
    Let us know if this helps in fixing the issue.
    Regards,
    Sharad

  • IPhone 5 callback function

    When try to use callback function, it's not working well.
    I'm expecting to hear ring tone when successful re-dial but now is listening to my own voice.
    It's seem in the background process is dialling but the audio is not link to the dial tone and just listen to my own mic/voice.
    I got to hang up and wait the other party to call me.

    When the call fails (interrupts or even don't connect) the phone suggests you to "call back" or cancel.
    When you click "call back", it shows you the connection screen saying "calling" but if you put the phone to your ear, you'll hear your own voice instead if tones. It's like my mic is on and i hear it in my speaker/headphone.
    It's not about carrier since it have never happened on any other phone.
    Anyway, they always say "change your phone".
    If i press "cancel" instead of "call back" and dial the number as usual, via contacts say, everything is fine. So the problem appears only when using "call back"

  • Queue with callback function not dequeuing

    Hi,
    I would like to ask you for help or for a hint regarding our problem with the queue:
    A trigger is enqueuing to a queue. This works fine, but the callback function is never called. The queue already worked for a while, but since i changed something at the procedure called by the callback it does not work anymore.
    I already have tried the following:
    -Stopping and restarting
    -Dropping and recreating (with the scheduler having no jobs anymore)
    -Dropping, restarting the database and recreating
    None of these worked. Where do I fail, when considering that the queue with the same scripts worked already? I post the script for creating the queue and adding the subscriber:
    CREATE OR REPLACE TYPE pat_history_queue_payload_type AS OBJECT
    ( TSTAMP VARCHAR2(22 CHAR),
    TYP VARCHAR2(10 CHAR),
    DELTA_MENGE NUMBER,
    ORIGIN VARCHAR2(1 CHAR),
    TEXT VARCHAR2(1000 CHAR),
    QL_TSTAMP VARCHAR2(22 CHAR)
    BEGIN
    DBMS_AQADM.CREATE_QUEUE_TABLE (
    queue_table => 'pat_history_queue_table',
    queue_payload_type => 'pat_history_queue_payload_type',
    multiple_consumers => TRUE
    END;
    BEGIN
    DBMS_AQADM.CREATE_QUEUE (
    queue_name => 'pat_history_queue',
    queue_table => 'pat_history_queue_table',
    max_retries => 10
    DBMS_AQADM.START_QUEUE (
    queue_name => 'pat_history_queue'
    END;
    BEGIN
    DBMS_AQADM.ADD_SUBSCRIBER (
    queue_name => 'pat_history_queue',
    subscriber => SYS.AQ$_AGENT(
    'pat_history_queue_subscriber',
    NULL,
    NULL )
    DBMS_AQ.REGISTER (
    SYS.AQ$_REG_INFO_LIST(
    SYS.AQ$_REG_INFO(
    'pat_history_queue:pat_history_queue_subscriber',
    DBMS_AQ.NAMESPACE_AQ,
    'plsql://PAT.HISTORY_QUEUE_DISTRIBUTION.CALLBACK',
    HEXTORAW('FF')
    1
    END;
    The function CALLBACK which is called by the queue, is never called, I checked that with log messages. Also the package that contains the function is compiled ok.
    Thanks.
    Roland

    Hi,
    Does the subscription show up correct in sys.reg$ ?
    Regards,
    Harry
    http://dbaharrison.blogspot.com/

  • Edit function of Photoshop Elements 8 will not launch, suggestions?

    When the "edit" buttion is selected it simply times out/resets itself and will not launch the application however, the organizer still seems to be functioning.

    If PSE8 uses an Unwelcome Screen, bypass the Unwelcome Screen by creating Desktop shortcuts for the Organizer and the Editor, and restarting your computer.
    The Editor's executable is:
    "C:\Program Files (x86)\Adobe\Photoshop Elements 10\PhotoshopElementsEditor.exe"
    The Organizer's executable is:
    "C:\Program Files (x86)\Adobe\Elements 10 Organizer\PhotoshopElementsOrganizer.exe"
    The Unwelcome Screen leaves a zombie process running which prevents the actual program from launching again.
    Ken

  • Applications installed in my iTouch does not launch. the music and internet functions but the installed applications does not. tried switching it on and off, still problem persists

    Applications installed in my iTouch does not launch. the music and internet functions but the installed applications does not. tried switching it on and off, still problem persists. help...

    Your only chance besides getting it serviced would be setting it up as new device:
    http://support.apple.com/kb/HT4137

  • Windows Apps Not Launching and Store Not Functioning (with logs).. to do with "Local AppData"

    I keep my "Local AppData" folder along with a handful of other settings folders on a separate SSD so I can format monthly without losing a beat.
    I notice that each time my Local AppData folder is located anywhere other than it's normal location, Windows Apps do not launch and the store produces the "Your purchase couldn't be completed" error.
    Two of my friends do the same thing that I do and have the exact same result.
    Event Viewer Logs (on launch of App):
    "Activation of app Microsoft.XboxLIVEGames_8wekyb3d8bbwe!Microsoft.XboxLIVEGames failed with error: The remote procedure call failed. See the Microsoft-Windows-TWinUI/Operational log for additional information."
    "Faulting application name: wwahost.exe, version: 6.2.9200.16384, time stamp: 0x50107c6e
    Faulting module name: KERNELBASE.dll, version: 6.2.9200.16384, time stamp: 0x5010ab2d
    Exception code: 0x00000004
    Fault offset: 0x00000000000189cc
    Faulting process id: 0xc8c
    Faulting application start time: 0x01cda64746053be3
    Faulting application path: C:\Windows\system32\wwahost.exe
    Faulting module path: C:\Windows\system32\KERNELBASE.dll
    Report Id: 83b3360f-123a-11e2-beb4-485b394307b9
    Faulting package full name: Microsoft.XboxLIVEGames_1.0.928.0_x64__8wekyb3d8bbwe
    Faulting package-relative application ID: Microsoft.XboxLIVEGames"
    "The App Host could not start because the web module 1::Windowing::Initialize failed with 0x0x80070005."
    Any ideas?  Anyone else with this problem?

    Hi,
    This is by design, seems Windows App cannot allow to change the location of Local Appdata.
    Juke Chou
    TechNet Community Support

  • FaceTime will not launch in Yosemite; "Application Not Responding"

    I'm using a late 2012 iMac.  Following advice I saw in another, similar thread, I deleted all FaceTime items in Keychain Access (including certificates), as well as all of the following from my User/Library/Preferences folder:
    com.apple.facetime.bag.plist
    com.apple.FaceTime.plist
    com.apple.ids.service.com.apple.ess.plist
    com.apple.ids.service.com.apple.madrid.plist
    com.apple.ids.service.com.apple.private.ac.plist
    com.apple.ids.service.com.apple.private.alloy.callhistorysync.plist
    com.apple.ids.service.com.apple.private.alloy.continuity.activity.plist
    com.apple.ids.service.com.apple.private.alloy.continuity.activity.public.plist
    com.apple.ids.service.com.apple.private.alloy.continuity.auth.plist
    com.apple.ids.service.com.apple.private.alloy.continuity.encryption.plist
    com.apple.ids.service.com.apple.private.alloy.continuity.tethering.plist
    com.apple.ids.service.com.apple.private.alloy.icloudpairing.plist
    com.apple.ids.service.com.apple.private.alloy.idsremoteurlconnection.plist
    com.apple.ids.service.com.apple.private.alloy.maps.plist
    com.apple.ids.service.com.apple.private.alloy.multiplex1.plist
    com.apple.ids.service.com.apple.private.alloy.phonecontinuity.plist
    com.apple.ids.service.com.apple.private.alloy.screensharing.plist
    com.apple.ids.service.com.apple.private.alloy.sms.plist
    com.apple.imagent.plist
    com.apple.imservice.FaceTime.0016cb8bcac8.plist
    com.apple.imservice.FaceTime.A709F320-4249-5DEC-B9D9-7E6A3D5722CA.plist
    com.apple.imservice.FaceTime.plist
    com.apple.imservice.ids.FaceTime.A709F320-4249-5DEC-B9D9-7E6A3D5722CA.plist
    com.apple.imservice.ids.FaceTime.plist
    There were no equivalent files in User/Library/Preferences/ByHost.  I logged out and back in, then tried launching FaceTime, to no avail.
    I have not yet emptied the Trash.
    FaceTime is working fine on my iPad 3.  I received a call on it yesterday. 
    I am stumped.  Help, please?

    Thank you for offering assistance, Mr. Davis.  Here's the log entry:
    11/16/14 6:04:07.573 PM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    11/16/14 6:04:14.662 PM osascript[6316]: Error loading /Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types:  dlopen(/Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types, 262): no suitable image found.  Did find:
      /Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types: no matching architecture in universal wrapper
    11/16/14 6:04:14.663 PM osascript[6316]: Performance: Please update this scripting addition to supply a value for ThreadSafe for each event handler: "/Library/ScriptingAdditions/SIMBL.osax"
    11/16/14 6:04:47.614 PM sharingd[4032]: 18:04:47.614 : Stopping Handoff advertising
    11/16/14 6:04:53.189 PM com.apple.WebKit.WebContent[6253]: Warning: accessing obsolete X509Anchors.
    11/16/14 6:04:54.304 PM com.apple.WebKit.WebContent[6253]: Warning: accessing obsolete X509Anchors.
    11/16/14 6:04:56.512 PM sharingd[4032]: 18:04:56.511 : Stopping Handoff advertising
    11/16/14 6:05:05.381 PM sharingd[4032]: 18:05:05.380 : Stopping Handoff advertising
    11/16/14 6:05:07.925 PM SIMBL Agent[4072]: warning: failed to get scripting definition from /Applications/FaceTime.app; it may not be scriptable.
    11/16/14 6:05:07.925 PM SIMBL Agent[4072]: AppleEvents: Send port for process has no send right, port=( port:29023/0x715f rcv:1,send:0,d:0 limit:5) (findOrCreate()/AEMachUtils.cp #526) com.apple.main-thread
    11/16/14 6:05:08.475 PM com.apple.Safari.SearchHelper[4279]: Warning: accessing obsolete X509Anchors.
    11/16/14 6:05:08.487 PM com.apple.Safari.SearchHelper[4279]: Warning: accessing obsolete X509Anchors.
    11/16/14 6:05:08.498 PM com.apple.Safari.SearchHelper[4279]: Warning: accessing obsolete X509Anchors.
    11/16/14 6:05:08.510 PM com.apple.Safari.SearchHelper[4279]: Warning: accessing obsolete X509Anchors.
    11/16/14 6:05:08.687 PM com.apple.Safari.SearchHelper[4279]: Warning: accessing obsolete X509Anchors.
    11/16/14 6:05:08.698 PM com.apple.Safari.SearchHelper[4279]: Warning: accessing obsolete X509Anchors.
    11/16/14 6:05:08.709 PM com.apple.Safari.SearchHelper[4279]: Warning: accessing obsolete X509Anchors.
    11/16/14 6:05:08.720 PM com.apple.Safari.SearchHelper[4279]: Warning: accessing obsolete X509Anchors.
    11/16/14 6:05:09.215 PM FaceTime[6314]: Error loading /Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types:  dlopen(/Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types, 262): no suitable image found.  Did find:
      /Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types: no matching architecture in universal wrapper
    11/16/14 6:05:09.216 PM FaceTime[6314]: Performance: Please update this scripting addition to supply a value for ThreadSafe for each event handler: "/Library/ScriptingAdditions/SIMBL.osax"
    11/16/14 6:05:09.217 PM SIMBL Agent[4072]: AppleEvents: Send port for process has no send right, port=( port:29023/0x715f rcv:1,send:0,d:0 limit:5) (findOrCreate()/AEMachUtils.cp #526) com.apple.main-thread
    11/16/14 6:05:13.388 PM sharingd[4032]: 18:05:13.387 : Stopping Handoff advertising
    11/16/14 6:05:13.870 PM iGlasses[5891]: Error loading /Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types:  dlopen(/Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types, 262): no suitable image found.  Did find:
      /Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types: no matching architecture in universal wrapper
    11/16/14 6:05:13.871 PM iGlasses[5891]: Performance: Please update this scripting addition to supply a value for ThreadSafe for each event handler: "/Library/ScriptingAdditions/SIMBL.osax"
    11/16/14 6:05:13.876 PM iGlasses[5891]: Bartender: Loaded BartenderHelperSeventyFour
    11/16/14 6:05:14.730 PM osascript[6323]: Error loading /Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types:  dlopen(/Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types, 262): no suitable image found.  Did find:
      /Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types: no matching architecture in universal wrapper
    11/16/14 6:05:14.731 PM osascript[6323]: Performance: Please update this scripting addition to supply a value for ThreadSafe for each event handler: "/Library/ScriptingAdditions/SIMBL.osax"
    11/16/14 6:05:17.025 PM iGlasses[5891]: *** WARNING: CFMachPortSetInvalidationCallBack() called on a CFMachPort with a Mach port (0x1362b) which does not have any send rights.  This is not going to work.  Callback function: 0x7fff8e7e4e70
    11/16/14 6:05:19.565 PM iGlasses[5891]: *** WARNING: CFMachPortSetInvalidationCallBack() called on a CFMachPort with a Mach port (0x147bb) which does not have any send rights.  This is not going to work.  Callback function: 0x7fff8e7e4e70
    11/16/14 6:05:22.180 PM sharingd[4032]: 18:05:22.180 : Stopping Handoff advertising
    11/16/14 6:05:22.428 PM iGlasses[5891]: assertion failed: 14A389: libxpc.dylib + 76986 [9437C02E-A07B-38C8-91CB-299FAA63083D]: 0x11
    11/16/14 6:05:23.865 PM mdworker[6327]: Warning: accessing obsolete X509Anchors.
    11/16/14 6:05:23.897 PM mdworker[6327]: Warning: accessing obsolete X509Anchors.
    11/16/14 6:05:23.999 PM mdworker[6327]: Warning: accessing obsolete X509Anchors.
    11/16/14 6:05:24.023 PM mdworker[6327]: Warning: accessing obsolete X509Anchors.
    11/16/14 6:05:24.049 PM mdworker[6327]: Warning: accessing obsolete X509Anchors.
    11/16/14 6:05:24.099 PM mdworker[6327]: Warning: accessing obsolete X509Anchors.
    11/16/14 6:05:24.117 PM mdworker[6328]: code validation failed in the process of getting signing information: Error Domain=NSOSStatusErrorDomain Code=-67062 "The operation couldn’t be completed. (OSStatus error -67062.)"
    11/16/14 6:05:24.419 PM mdworker[6328]: code validation failed in the process of getting signing information: Error Domain=NSOSStatusErrorDomain Code=-67030 "The operation couldn’t be completed. (OSStatus error -67030.)" UserInfo=0x7fabf36a4310 {SecCSArchitecture=i386}
    11/16/14 6:05:24.420 PM mdworker[6327]: code validation failed in the process of getting signing information: Error Domain=NSOSStatusErrorDomain Code=-67030 "The operation couldn’t be completed. (OSStatus error -67030.)" UserInfo=0x7fe1455224f0 {SecCSArchitecture=i386}
    11/16/14 6:05:24.424 PM mdworker[6327]: code validation failed in the process of getting signing information: Error Domain=NSOSStatusErrorDomain Code=-67062 "The operation couldn’t be completed. (OSStatus error -67062.)"
    11/16/14 6:05:28.724 PM iGlasses[5891]: *** -[__NSPlaceholderArray initWithObjects:count:]: attempt to insert nil object from objects[0]
    11/16/14 6:05:28.725 PM iGlasses[5891]: (
      0   CoreFoundation                      0x00007fff8e82964c __exceptionPreprocess + 172
      1   libobjc.A.dylib                     0x00007fff8e1506de objc_exception_throw + 43
      2   CoreFoundation                      0x00007fff8e6cd068 -[__NSPlaceholderArray initWithObjects:count:] + 360
      3   CoreFoundation                      0x00007fff8e7336b4 +[NSArray arrayWithObjects:count:] + 52
      4   CoreFoundation                      0x00007fff8e75b0fa -[NSDictionary allKeys] + 202
      5   iGlasses                            0x0000000100011544 -[iGlassesFrameSender aHostAppIsPlugin] + 38
      6   iGlasses                            0x0000000100011377 -[iGlassesFrameSender aHostAppIsPluginForApp:] + 29
      7   iGlasses                            0x0000000100004390 -[AppController checkActiveApp:] + 611
      8   Foundation                          0x00007fff8c2b2f4c __NSThreadPerformPerform + 293
      9   CoreFoundation                      0x00007fff8e747661 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
      10  CoreFoundation                      0x00007fff8e7397ed __CFRunLoopDoSources0 + 269
      11  CoreFoundation                      0x00007fff8e738e1f __CFRunLoopRun + 927
      12  CoreFoundation                      0x00007fff8e738838 CFRunLoopRunSpecific + 296
      13  HIToolbox                           0x00007fff8405f43f RunCurrentEventLoopInMode + 235
      14  HIToolbox                           0x00007fff8405f1ba ReceiveNextEventCommon + 431
      15  HIToolbox                           0x00007fff8405effb _BlockUntilNextEventMatchingListInModeWithFilter + 71
      16  AppKit                              0x00007fff848de821 _DPSNextEvent + 964
      17  AppKit                              0x00007fff848ddfd0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
      18  AppKit                              0x00007fff848d1f73 -[NSApplication run] + 594
      19  AppKit                              0x00007fff848bd424 NSApplicationMain + 1832
      20  iGlasses                            0x0000000100001b14 start + 52
    11/16/14 6:05:28.747 PM sharingd[4032]: 18:05:28.747 : Stopping Handoff advertising
    11/16/14 6:05:30.752 PM sharingd[4032]: 18:05:30.752 : Stopping Handoff advertising
    11/16/14 6:05:33.603 PM SystemUIServer[4026]: Attempt to use XPC with a MachService that has HideUntilCheckIn set. This will result in unpredictable behavior: com.apple.backupd.status.xpc
    11/16/14 6:05:50.398 PM BusyCal[5024]: Warning: accessing obsolete X509Anchors.
    11/16/14 6:05:50.409 PM BusyCal[5024]: Warning: accessing obsolete X509Anchors.
    11/16/14 6:05:50.418 PM BusyCal[5024]: Warning: accessing obsolete X509Anchors.
    11/16/14 6:05:50.427 PM BusyCal[5024]: Warning: accessing obsolete X509Anchors.
    11/16/14 6:05:50.436 PM BusyCal[5024]: Warning: accessing obsolete X509Anchors.
    11/16/14 6:05:50.533 PM BusyCal[5024]: Warning: accessing obsolete X509Anchors.
    11/16/14 6:06:14.792 PM osascript[6332]: Error loading /Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types:  dlopen(/Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types, 262): no suitable image found.  Did find:
      /Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types: no matching architecture in universal wrapper
    11/16/14 6:06:14.794 PM osascript[6332]: Performance: Please update this scripting addition to supply a value for ThreadSafe for each event handler: "/Library/ScriptingAdditions/SIMBL.osax"
    11/16/14 6:06:44.483 PM sharingd[4032]: 18:06:44.483 : Stopping Handoff advertising
    11/16/14 6:06:52.944 PM sharingd[4032]: 18:06:52.944 : Stopping Handoff advertising
    11/16/14 6:06:54.948 PM sharingd[4032]: 18:06:54.947 : Stopping Handoff advertising
    Is iGlasses causing the problem?
    EDIT:  Wait— FaceTime launched after a several minutes (I hadn't force quit it), but the iSight camera light did not come on, and the FaceTime window shows something I've never seen before— a large image of a camera lens with a series of small spectrum-colored squares arrayed along its top edge.  Moreover, the iGlasses mini-window that appears beside it lacks images, showing just small reproductions of that same image of a camera lens.
    NEW EDIT:  I tried using FaceTime.  I called a friend, and the audio worked and I could see him, but all he could see was that same camera lens image.

  • BB Desktop Software will not launch

    PC, running Windows XP  - Upgraded to new BB Desktop Software.  Was working for about a month.  Now, Will NOT launch - getting Windows Error
    Error Signature:
    EventType : clr20r3     P1 : rim.desktop.exe     P2 : 6.0.1.18     P3 : 4cfdab9c
    P4 : microsoft.practices.composite     P5 : 2.0.1.0     P6 : 4cfdaa3a     
    P7 : 12b     P8 : 50     P9 : sclhiaanmqhkf4zdfpvvwejkphnm1zuj 
    I re-connected to BB and loaded the "fix" versus the fuill version and still cannot load.
    From the Windows Control Panel - Removed the BB Desktop Software and re-booted the PC.  Re-Loaded the full Desktop Software from the BB website.  Still NOTHING - except for the Windows errror.
    Dead in the water.  Cannot launch the BB Software to connect and synch BB Storm!  iPhone on Verizon is looking better and better.  Mid-February is NOT coming soon enough. 
    Help! 

    WaynePharm wrote:
    OK  Instead of dueling each other, the issue is my Problem.  If you want to 'duel', please take it off-line.
     No one is "dueling" , we are tying to fix your problem.
    Re-stating my Problem:
    1.  I had loaded BB DM6 on a Windows XP PC about 3 months ago with no problems.  In fact, it linked with all aspects of Outlook that I needed  (Calendar, Task and Contacts).  Yeah!!  This did not happen with the 'original' BB DM that I loaded January 2009 when I bought the BB Storm from Verizon, but I lived with this short coming of BB.  Built my calendar and contacts directly into the BB Storm.
     So the original installation of the desktop manager software loaded in January 2009 did not correctly function with Outlook.
    2.  OK.  So something happened last week and the BB DM6 will not launch without getting the error message that I put in my 1st Posting of this Problem.
    "So something happened". We can only go on your description of the problem. If you have no idea what happened  i couldn't possibly know.  The only "guess" would be an there was an auto update to existing software or you have added software.
    3.  I went to BB and loaded the "Fix" for PC.  Also, this did not Launch BB DM6.
    4.  Unloaded the BB DM6 with the Windows XP Control Panel "Remove Program".  Re-Booted the PC.  Then, went to BB and reloaded the BB DM6.  Same error message and no Launch.
    Try using the repair/modify option in the Remove Program function on the DM installation currently loaded on the PC.
    5.  I am far from the "Techie" that the respondants to this Problem are!!  I am a SIMPLE End User of this BB Storm having mucho problems ... all of a sudden ... last week after using BB DM6 without the problems.
    6.  What can a SIMPLE, non-techie End User do?  From the Respondants Postings .. I am reading about Loading Roxio for BB DM from the Roxio website?  Also, reading about that the Unload from the Windows XP Control Panel, Remove Programs, is incomplete for the removal of the BB DM6.  I am being directed to removing 'hidden' files/keys as directed in a BB Problem Solving Posting for the CLEAN Removal of BB DM6--- which is surely not written for the SIMPLE, non-techie End User!!
    The error indicates a problem with some Roxio software. If you were using DM with Media manager prior Roxio was a part of that software, or you are running Roxio software.The Roxio information I gave you was to remove Roxio drivers not load Roxio software.
    In your description of the January 2009 install  there were problems with the install that were never correctly addressed. What we are suggesting is to remove all traces of the Various installation of desktop manager which includes editing the registry. That is why using Windows remove programs is not sufficient.
    Once complete you will be installing a fresh copy of DM on your system, this will ensure that the DM software can correctly integrate wit both Windows and MS Outlook
    The install procedure is SUGGESTED as the best resolution to your problem. Whether you run it or not is your decision.
    7.  In simple non-Techie language for this SIMPLE, non-techie End User ... what can I do to fix the problem and be able to launch BB DM6 from my Windows XP PC??
     This is as plain "non-techie" as I can write it.
    Thanks,
    Bifocals
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • How to create a callback function module

    Hi all,
    I am working in a requirement where we need to call a function module at a 'after change' event. So how to create a callback function module and register it with the crmvevent ?_
    I created a sample function module and try to create entries in table crmv_event_cust, but i got an error message saying that the function module name I provided is not in table CRMC_FUNC_ASSIGN. When I try to create entry there, I got a message that function module is not in CRMC_OBJ_FUNC and that table is a standard table with no maintanance options !!
    looks like i am going in wrong way ... can any one please help ??

    Looking at my system all you need to do is create the entry for the callback function in maint view: CRMV_FUNC_ASSIGN.
    Your entry should be as simple as Z-function name Object Function - <same as others in the segment you are assigning>
    IE for the partner it would be CRM_PARTNER as object function, for general order processing CRM_ORDER
    Take care,
    Stephen

  • Number.floor appears to be a valid function but is not. Causing crashes on mobile.

    This is a cross post from http://forums.adobe.com/message/4993660/  We didn't get an answer there and this issue, and similar discrepencies between what the IDE can compile and what will run on a device, have been costing us man days in work.
    We recently had a problem where when compiling using FB and debugging on devices works fine. But when we built the app using Ant, it was crashing on Android devices. After debugging that, we found that Number.floor was not a function.
    I cannot find any documentaiton that says Number.floor was ever a function in ActionScript/Flex/AIR.
    So why does Flash Builder seem to think it's valid, let us compile it, and even run it on the device?! Is there some 'even more strict' compiler option I need to check?

    Great! Thanks for that. There's more too. Like this... Looks and works great in FB, but dies on the command line. What's going on here?
    class CallbackInfo extends Object
         public var requestID:int;
         public var callback:Function;
         public var userData:Object;
    package framework
        class Moo extends Object
    Produces this output over the command line:
      [mxmlc] Loading configuration file /Flex_4.6.0_Air_3.5/frameworks/airmobile-config.xml
    [mxmlc] Loading configuration file /client/config_dev.xml
    [mxmlc] /client/src/framework/EASPProxy.as(27): col: 1 Error: Syntax error: package is unexpected.
    [mxmlc]  [mxmlc] package framework [mxmlc] ^ [mxmlc]

  • The "edit in" does not launch if I make any develop changes.  I am using LR 5.6 and all of my plug ins are properly installed, up to date and were working just fine.  Edit in does work if I reset the image or load an unmodified DNG.

    I am using LR5.6 on a Windows 7 machine with plenty of memory.  LR, CS5 and all of my plug ins have been working just fine.  Tonight I've found that if I make any kind of significant adjustments to an image, and the go to "Edit in.." that function does not launch.  I can use the Edit in command on an unmodified image, or if I reset the modified image.  I have the issue with all of my plug ins, including Photoshop, all of the Nik software, RadLab, and OnOne.  I believe that all of the plug ins are current.  I've been working with them yesterday and I had no issue.  I cannot recall anything that has changed since then, and I have not installed any software.  I'm at a loss!!  Please help!

    I have traced the problem to a corrupted profile.  When I captured the images in question, I also used Color Cherckr to create a profile for processing.  When I apply that profile to the adjustments I make, I can no longer "Edit In".  If I use another profile, even one that I created using Color Checkr at a different point in time, I don't have the issue.  Something seems to have corrupted the new profile.  I will re-create the profile and see if the issue is resolved.

  • My ipod 1st gen battery went totally dead because the usb cable was defective. I've changed the cable.  now when i connect my ipod to the netbook, itune is not launching automatically and windows does not recognize it......how can these issues be resolved

    My ipod 32gb 1st generation battery went totally dead because the usb cable was defective.  I have since replaced the cable but now itune will not launch automatically as it did before and windows xp does not recognize it.  Nonetheless it is charging.  However can i resolve these issues bearing in mind that i am not tech savvy?

    have since replaced the cable but now itune will not launch automatically as it did before and windows xp does not recognize it. 
    Try disabling a/v software and turn off the Firewall on your PC.
    Disable antivirus software
    Turn-Windows-Firewall-on-or-off
    Then connect the iPod to your computer. Launch iTunes. If your computer still won't recognize the iPod check out this article.
    http://support.apple.com/kb/TS1538
    Once your iPod is functioning again, with it connected to your computer, launch iTunes. Select the iPod under Devices in the source list on the left.
    Select the box next to:   Open iTunes when this iPhone is connected
    That way iTunes should open automatically when you connect your iPod to your computer.
    And iTunes / Preferences - Devices. You can have your iPod sync automatically whenever it's connected from the Devices pane.

  • Prey game not launching after Security Update 2007-004

    After applying Apple Security Update 2007-004, Prey (Mac version) is not launching and continuously crashes on my computer. I have uninstalled all game files and reinstalled the game from the original DVD but with no success. Repairing disc permissions, updating prebindings and other usual maintainence meaures are unfortunately not helping. I have an external USB hard disc running Mac OS 10.4.9 without the Security Update applied and Prey works properly when my computer boots up from this external hard drive. It is therefore apparent that Apple Security Update 2007-004 has most probably caused Prey to become non-functional as prior to this the game was working without any problems whatsoever.
    Has anyone else expereinced this problem and are there any suggestions?
    Any advice is greatly appreciated.

    Contact the game author's site and report it so they can update it.

  • App Not Launching, Problem Reported, Dev (F84Games) Not Responding, Refund?

    Hi all, I really need help with the 'Railroad Madness' app purchased for my son's ipad (from F84Games in Los Angeles). When he tried to play/launch it the game just crashes immediately after the splash screen.
    Reporting the problem to Apple (through my itunes purchase history 'report a problem' function) suggested contacting the developer directly, which I have done, twice, via email and with an app review describing how the app does not work at all. I have asked F84Games either for a refund or a functioning replacement.
    I have patiently waited for over a week on a response from Apple or F84Games, with no reply from either, which has been very disappointing since my general experience is that Apple has excellent customer support. Since the fault of the application is because it does not launch at all (and not a simpler functional issue), it seems reasonable to me that they would send some kind of message responding to my request?
    Does Apple allow developers to post and sell 'bad' apps on the app store? I thought Apple had a rigorous approval/testing processes in place to prevent this sort of situation from happening in the first place?
    Since I have already reported the problem to Apple via iTunes, I cannot report it a second using a different label.
    Please, if anyone out there (or Apple, if you are monitoring these discussions) can advise how I can have my problem resolved, purchase refunded, or get some sort of human reply from Apple support; or at least have the faulty 'Railroad Madness' game removed from the app store so that others do not waste $4.99 I would be most thankful and appreciative.
    Thank you, Steve

    Hello Lauren, greetings from Australia.
    I (and my son) really appreciate the message, thanks!
    We look forward to seeing the updated version of Railroad Madness to enjoy playing on our iPad. I hope we have not put you all to too much trouble.
    BTW, I tried Ian's suggestions but was unsuccessful. Maybe the problem has something to do with running under the new version of the OS?
    Again, thank you for taking the time to respond to my post.
    Steve M

Maybe you are looking for

  • Importing Motion project into After Effects

    I am attempting to import a Motion 4 project in After Effects CS4. I am using the suggested instructions: 1 In After Effects, choose File > Import > File. 2 In the Import File dialog, choose All Files from the Enable pop-up menu. 3 Click to select th

  • Acrobat Pro 9 - URL link to open in browser in background (behind PDF)?

    Hi!  I've been searching for days now... does anyone know if it's possible using Acrobat Pro 9 to force a URL link to open in the background, behind a PDF in order to keep the reader at the PDF instead of instantly switching to their web browser?  Th

  • CSS 3.0 Problem

    Facing some problem plz help me out:- How to create rounded box with help of CSS 3.0

  • HP PSC 1315 All in one printing problem

    My printer only prints text in red in the body. It will print black along the top and bottom of the paper.  It also prints in black when I copy something.  I put in new fresh cartridges.  What can I do?

  • SaveAs Document Failed ... Deski document being saved to Favourites folder in Webi

    Post Author: amcc CA Forum: Administration I have been unable to work out what access right is needed for Webi users to be able to save a Deski document to their Favourites folder.  We have some migrated documents containing features that will not co