Enqueue works fine Dequeue works when run manually but not via Notification

Hi,
My Enqueue works fine. My Dequeue procedure works fine when run manually. But when I register a notification the procedure is not called.
The log file shows:
ORACLE_HOME = /u01/app/oracle/product/10.2.0
System name: Linux
Node name: gooch.com
Release: 2.4.21-50.ELsmp
Version: #1 SMP Tue May 8 17:18:29 EDT 2007
Machine: i686
Instance name: xml
Redo thread mounted by this instance: 1
Oracle process number: 25
Unix process pid: 7761, image: [email protected] (J000)
*** 2010-03-06 14:09:22.167
*** ACTION NAME:() 2010-03-06 14:09:22.167
*** MODULE NAME:() 2010-03-06 14:09:22.167
*** SERVICE NAME:(SYS$USERS) 2010-03-06 14:09:22.167
*** SESSION ID:(145.99) 2010-03-06 14:09:22.167
Error in PLSQL notification of msgid:8128C090A10BE480E0407E0A660F1B97
Queue :"XML4"."TEST14_Q"
Consumer Name :TEST14
PLSQL function :xml4.test14_proc
: Exception Occured, Error msg:
ORA-00604: error occurred at recursive SQL level 2
ORA-06550: line 1, column 7:
PLS-00306: wrong number or types of arguments in call to 'TEST14_PROC'
ORA-06550: line 1, column 7:
PL/SQL: Statement ignored
my code is
BEGIN
  DBMS_AQADM.CREATE_QUEUE_TABLE(
     queue_table        => 'test14_t',
     comment            => 'Queue Table to process incoming ORDER XML messages from Management Dynamics',
     multiple_consumers => TRUE,
     queue_payload_type => 'SYS.XMLTYPE',
     compatible         => '8.1');
END;
BEGIN
  DBMS_AQADM.CREATE_QUEUE(
    queue_name  => 'test14_q',
    queue_table => 'test14_t');
END;
BEGIN
dbms_aqadm.start_queue('test14_q');
END;
BEGIN
  DBMS_AQADM.ADD_SUBSCRIBER (
     queue_name => 'test14_q',
     subscriber => SYS.AQ$_AGENT('test14', NULL, NULL)
END;
CREATE or replace PROCEDURE test14_proc AS
  deq_opts dbms_aq.dequeue_options_t;
  mess_prop dbms_aq.message_properties_t;
  mess_handle RAW(16);
  message XMLTYPE;
  buffer varchar2(100);
  msglen number;
begin
  deq_opts.wait := dbms_aq.FOREVER;
  deq_opts.consumer_name := 'test14';
  dbms_aq.dequeue(queue_name=> 'test14_q',
                  dequeue_options => deq_opts,
                  message_properties => mess_prop,
                  payload => message,
                  msgid => mess_handle);
  commit;
  insert into testxml values(message);
  commit;
  insert into hello select extractvalue(xml1, '/Hello') from testxml;
  commit;
end test14_proc;
DECLARE
  queue_options DBMS_AQ.ENQUEUE_OPTIONS_T;
  message_properties DBMS_AQ.MESSAGE_PROPERTIES_T;
  message_id RAW(16);
  message SYS.XMLType;
BEGIN
  message := sys.XMLType.createXML('<?xml version="1.0"?><Hello>Test</Hello>');
  DBMS_AQ.ENQUEUE( queue_name => 'test14_q',
                   enqueue_options => queue_options,
                   message_properties => message_properties,
                   payload => message,
                   msgid => message_id);
  COMMIT;
END;
BEGIN
  DBMS_AQ.REGISTER (
      SYS.AQ$_REG_INFO_LIST(
        SYS.AQ$_REG_INFO(
          'xml4.test14_q:test14',
           DBMS_AQ.NAMESPACE_AQ,
           'plsql://xml4.test14_proc?PR=0',
           HEXTORAW('FF'))),1);
  END;Any ideas?
Thanks in advance!

I actually changed it to process RAW as well i.e.
BEGIN
  DBMS_AQ.REGISTER (
      SYS.AQ$_REG_INFO_LIST(
        SYS.AQ$_REG_INFO(
          'xml4.test14_q:test14',
           DBMS_AQ.NAMESPACE_AQ,
           'plsql://xml4.test14_proc?PR=0',
           HEXTORAW('FF'))),1);
  END;and it still is failing with the same error

Similar Messages

  • SQL Procedure working when run manually, not running from sql server agent

    I have a procedure that runs fine using the execute command in SSMS, however putting the same command in a job gives the following error.
    line 9, character 9, unexpected end of input
    The code takes a very long XML string in UTF-8 encoding and puts it into a single nvarchar(max) cell. Then puts this string into a XML cell in a different table, allowing me to query the individual parts of the XML code using the nodes function. I cannot put
    the data directly into a nvarchar cell due to encoding differences.
    I can't reproduce the string here as it is very very long.
    I'm just looking for ideas really as to where it might be going wrong.
    Here is what I know so far:
    The procedure runs without issue when executed manually
    I have checked permission issues, and that doesn't seem to be the problem. The agent runs under my own account and I am a sysadmin on the database
    I split the procedure into seperate parts to locate exactly where the problem is occuring. Once again the seperate procedures run fine when executed manually but an error occurs when run through SQL Server agent.
    When the query is run seperately through SQL Server Agent it gives a slightly different error. This leads me to believe it is an encoding issue. However I am getting the XML from a webpage and I can't change the encoding on the webpage.
    line 1, character 38, unable to switch the encoding
    I know this is a long shot since you can't replicate the issue but if anyone could give an idea as to where to start looking for an answer, it would be greatly appreciated.

    Here's how I'm taking the XML data and putting it into an nvarchar(max) column (Column Name TEXT):
    Select @url = 'http://....'
    EXEC @hr=sp_OACreate 'WinHttp.WinHttpRequest.5.1',@win OUT
    IF @hr <> 0 EXEC sp_OAGetErrorInfo @win
    EXEC @hr=sp_OAMethod @win, 'Open',NULL,'GET',@url,'false'
    IF @hr <> 0 EXEC sp_OAGetErrorInfo @win
    EXEC @hr=sp_OAMethod @win,'Send'
    IF @hr <> 0 EXEC sp_OAGetErrorInfo @win
    INSERT #TextData(TEXT)
    EXEC @hr=sp_OAGetProperty @win,'ResponseText'
    IF @hr <> 0 EXEC sp_OAGetErrorInfo @win
    EXEC @hr=sp_OADestroy @win
    IF @hr <> 0 EXEC sp_OAGetErrorInfo @win

  • Me edge animate project works when I test, but not when I publish. Please help.

    I feel like this has happened to me in the past, but I just cannot get the thing to work when I post it online. It's just a blank page, all white. I think there might be something in the code of one of the .js files that I need to change.
    ??  I saw something about the phrase 'use strict' but I can't find that code anywhere.
    There must be something I'm forgetting. I put all of the published files up on the server, and I just can't access it. Any help would be seriously appreciated.
    Thanks.

    Can you share the website link so that we can see what the issue is?
    Regards,
    Vivekuma

  • [SOLVED] Hibernate works when using rmmod, but not SUSPEND_MODULES

    I've been having trouble hibernating (or suspending) an ASUS U36JC laptop.
    Running pm-suspend causes the computer to hang on a blank screen with
    an unblinking cursor. I have found that this is caused by two modules not
    suspending properly, ath9k and ehci_hcd.
    Using rmmod to remove the modules makes suspend work:
    # rmmod ath9k
    # rmmod ehci_hcd
    # pm-suspend # Suspend will now work
    So I created a file /etc/pm/config.d/modules containing the line:
    SUSPEND_MODULES="ath9k ehci_hcd"
    But in this setup (without using rmmod) the original problem is back!
    The computer hangs on a blank screen with an unblinking cursor after
    I run suspend.
    The log file /var/log/pm-suspend.log shows that the modules are unloaded:
    Running hook /usr/lib/pm-utils/sleep.d/75modules suspend suspend:
    Unloading kernel module echi_hcd...Done.
    Unloading kernel module ath9k...Done.
    What could be causing the SUSPEND_MODULES solution to fail when the
    rmmod solution works?
    Thanks,
    Last edited by maw09 (2012-02-14 22:42:20)

    maw09 wrote:Running hook /usr/lib/pm-utils/sleep.d/75modules suspend suspend:
    Unloading kernel module echi_hcd...Done.
    Unloading kernel module ath9k...Done.
    Interesting question, I don't have an answer.
    But: Did you retype the output above, or is the log really calling it "echi_hcd" ??

  • SW updater seems to work when using EDGE but not w...

    i used to check for updates via wifi and SW updater .i always got refreshing failed.but when i tried via EDGE it worked partially .it showed the update "ovi unlimited maps" and sucessfully downloaded it  but failed to install it ..any ideas?

    Try going to wlan settings and select start web browsing, then select menu and go to sw app and check for updates you should then be able to download and install apps.
    Good Luck
    If I have helped at all, a click on the White Star is always appreciated :
    you can also help others by marking 'accept as solution' 

  • Error when running EXE but not from editor. How do I find it?

    When I run my app from the editor, the program works fine. But when I try to run the EXE, I get an "index out of range" error. (???)
    I examined my code extensively but I can't figure out for the life of me where the error's coming from.
    Any advice on how to track it down? Thanks.

    Find out what is using indexes then correct whichever code is using indexes. Apparently you have not examined your code extensively enough.
    Can't you see details of the error and find what line the error occured on?
    La vida loca
    Monkeyboy brings an interesting point.
    Try wrapping all of your code in a try-catch block and msgboxing the stacktrace, that way you can find the line.
    “If you want something you've never had, you need to do something you've never done.”
    Don't forget to mark
    helpful posts and answers
    ! Answer an interesting question? Write a
    new article
    about it! My Articles
    *This post does not reflect the opinion of Microsoft, or its employees.

  • Home sharing works on primary wifi but not via Access Point

    I have two wifi routers set up at either ends of the house.  The primary router (Netgear DGN2000) is connected to an Access Point (Edimax EW-7416APN) via a D-link Powerline ethernet connection.  Both are configured with identical SSID names/passwords meaning I get seamless switching between the units when walking from one end of the house to the other.  Internet connectivity works fine when connected to either unit on laptop, phone and ipad.
    The only issue I am having is with itunes Home Sharing.  My main PC is connected to the primary router via a further D-link Powerline ethernet connection.  When I am within the wifi signal of the primary router, the Home Sharing library from the Main PC shows on my ipad2 and I can access all music no problem.  However, if I walk to the other end of the house whilst playing a track then as soon as the wifi connection switches to the AP then the track will stop.  When I search for libraries then the Home Sharing library doesn't show.
    The Access Point is set to be in AP mode. The latest version of itunes is installed.  The PC is running Windows XP
    Any pointers anyone can give with this issue would be very welcomed as our main entertaining room is in the range of the AP wifi.

    Do the old "forget this network" while on your home wifi, then reconnect to it.    If that doesn't fix it, it's prob a router/internet issue at your home.    Would need some more info to help futher troubleshoot.

  • Can make manually but not via PKGBUILD

    I'm trying to install exonerate from the AUR, where it is now an orphan. When I run makepkg -s, it fails.
    The PKGBUILD looked a little bit funny (just old?) so I attempted to expand and modify the build section as follows.
    build() {
    cd "$pkgname-$pkgver"
    ./configure --prefix=/usr
    make
    check() {
    cd "$pkgname-$pkgver"
    make check
    package() {
    cd "$pkgname-$pkgver"
    make DESTDIR="$pkgdir/" install
    This did not help.
    Further, if I download the upstream source files I can run `./configure` then `make` fine, which seeemed to imply to me that the BUILDPKG should work fine. Is there a way to install this via pacman?

    Salkay wrote:
    Scimmia wrote:1. You could, but it's kind of heavy handed. You should mess with the variables and see exactly what's causing the problem. You can then modify the variables before running make.
    I'm having a bit of trouble finding exactly how to do this. Would you have a reference that I could read?
    Also, you say "heavy handed", but if this builds okay, would the resulting compiled file be essentially the same as the files if I tweaked the variables more precisely? What advantage would there be in defining variables more precisely?
    I don't have a reference. You can do it by changing the variables in makepkg.conf, but what I would do is to leave !buildflags in the options, then copy the variable definitions into the build function in the PKGBUILD. The defaults would look like this:
    export CPPFLAGS="-D_FORTIFY_SOURCE=2"
    export CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4"
    export CXXFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fstack-protector-strong --param=ssp-buffer-size=4"
    export LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,relro"
    That should fail to build. You can then comment out each of them to see which one is causing the failure. Once you know that, you can remove the flags one at a time to figure out exactly which one is causing the failure.
    As to what they do, you can check the gcc documentation. Google each of the flags and it should point you to the right part.

  • VPN connects when on LAN but not via WAN

    Hi Guys,
    I've recently configured a VPN on my SLS. I uses the following settings:
    L2TP over IPsec
    PPP Authentication: Directory Services: MS-CHAPv2
    Shared Secret: xxxxxxxxx
    Client Information:
    DNS Servers: 10.0.1.250 (my server) 10.0.1.1 (my airport extreme) - This is where I think I'm going wrong
    In my SLS firewall I've open every possible port for both L2TP, PPTP and all required directory authentication ports I believe. If there are any tricky ones please let me know
    I am able to successfully connect to the VPN and route all traffic to the delegated IP when on my local network. However when ever I'm away from that network - friends, work, and various other tested internet connections - I am unable to connect to the VPN.
    I've ruled out the SLS firewall by turning it of for several days and trying to connect at several locations. I've checked the log on the VPN and there is no record of even an attempt to connect.
    In Security of Server Preferences i have exposed the VPN on the airport extreme. I've tried both with and without port forwarding. As far as i know (correct me if I'm wrong) because I have my domain name resolving to my server then I don't need port forwarding. My DNS works for all other services on the SLS.
    Any ideas at to what I might be doing wrong? Things I could try to isolate the problem?
    Any suggestions would be very handy!
    Best
    -J

    Your Airport Extreme does not contain a DNS server.
    Ensure MobileMe is disabled at your Airport. That messes up VPN pass-through.
    From a remote network, confirm that all of the necessary ports are open via nmap or Applications > Utilities > Network Utility or other tools.
    Quadruple-check the list of ports (and preferably with a second and third technical resource), as the Apple documentation around L2TP port pass-through with Airport and Time Capsule is murky.
    Ensure that you don't have the same subnet on both ends of the VPN connection as that can interfere with IP routing.
    Also try testing with PPTP, in place of L2TP.
    I'm in the midst of tussling with a recalcitrant VPN router myself, but that's another topic.

  • SBS2011 Reports send manually but not via schedule

    When I click generate and email the report it works perfectly but for some reason it will not email the report when it is generated as per schedule.

    Hi Allymac35,
    Based on your description, I understand that the SBS report can’t be sent automatically at scheduled time.
    Before going further, would you please let me know if send the report to people outside the network or not?
    In Windows SBS Console, locate to report properties, if you change the E-mail address in the E-Mail Options, will encounter the same issue? When generate the report, please ensure the account
    SBSMonAcct was enabled at scheduled time.
    In addition, please refer to the following TechNet article, and then repair Monitoring and Reporting Features.
    Repair Monitoring and Reporting Features in Windows Small Business Server 2011 Standard
    http://technet.microsoft.com/en-us/library/gg680308.aspx
    If this issue still exists, please locate to: C:\Program files\Windows Small Business Server\Logs\MonitoringServiceLogs
    folder, and check the related log files if you can find some clues.
    Hope this helps.
    Best regards,
    Justin Gu

  • Ipw3945 only working when modprobing manually / not on startup

    The last kernel update broke my wireless.
    When booting, the ipw3945d daemon will tell me "ERROR: Could not find Intel PRO/Wireless 3945ABG Network Connection". After it finishes booting, I can rmmod the ipw3945 module and modprobe it again. Starting the daemon after that works flawlessly. Even if I try to start the daemon manually after the booting sequence, I'll get that error. I first need to rmod and modprobe ipw3945 for it to work. So...:
    [21:32:40 | shapeshifter@Tachycineta ~]$ sudo /etc/rc.d/ipw3945d start
    :: Starting IPW3945d                                                                                                [BUSY]
    2008-03-01 21:32:47: ERROR: Could not find Intel PRO/Wireless 3945ABG Network Connection
                                                                                                                                  [DONE]
    [21:32:48 | shapeshifter@Tachycineta ~]$ sudo rmmod ipw3945
    [21:32:50 | shapeshifter@Tachycineta ~]$ sudo modprobe ipw3945
    [21:32:53 | shapeshifter@Tachycineta ~]$ sudo /etc/rc.d/ipw3945d start
    :: Starting IPW3945d                                                                                                [DONE]
    [21:32:57 | shapeshifter@Tachycineta ~]$
    And I have no idea why it only works when modprobing manually.
    Anyone?
    Last edited by TB2 (2008-03-01 23:05:33)

    zenlord wrote:
    Are you sure it's driver-related? I have never heard anyone complain about deassociating wireless networks unless they were using networkmanager or wicd or something like that. In the various threads about netcfg2 I have never seen anyone with this problem.
    Zl.
    I don't know if it's driver-related, but it could be power-related: iwl3945 isn't able to retrieve my ap essid everytime, since on the other hand ipw3945 is able to do, with the laptop in the SAME position.
    Last edited by uastasi (2008-03-13 20:10:18)

  • Multitouch on track pad not working when running Windows 8 in boot camp

    Does anyone know a work around on how to resolve the issue of more than one fingers on the trackpad? For example, I use one finger to click a window then another finger to slide/move the window to a different location on the screen. This does not work when running Windows 8 in Boot Camp latest version. Any suggestion is much appreciated.

    very very few gestures are supported in windows
    https://discussions.apple.com/message/24548533#24548533
    if it's a limitation from ms you need to contact them
    if it's a limitation from apples drivers you can use feedback channel
    http://www.apple.com/feedback/

  • How do I troubleshoot installation/distribution of a LabVIEW .exe which processes data using Matlab when it works on some computers but not others?

    I've been given the unenviable task of troubleshooting and installing/distributing software written by a former co-worker. I've modified the LabVIEW code and built an .exe file. I've successfully installed the Labview .exe file on several computers, but it won't work on some others. What's more baffling is that I installed it successfully on one computer, uninstalled it, and tried reinstalling it with no success. In fact, it's a new error (Dr. Watson for Windows NT application error). It doesn't help that I have different versions of LabVIEW and Matlab on the target computers. Some have LabVIEW 5.1, some
    have 5.0, and some don't have it at all. Some have Matlab 5.2, some have 5.3 (R11) and some have 6.0 (R12). It's also not clear to me where the Matlab m files should be located. I'm not sure if it's a LabVIEW Runtime Engine problem, or if it's a Matlab problem. I've also wondered how LabVIEW and Matlab talk to each other. When LabVIEW calls Matlab, it seems that Matlab is running in the background. In other words, clicking on the Matlab Command Window and typing "whos" or any other command/variable doesn't work.

    Jay del Rosario wrote:
    >
    > How do I troubleshoot installation/distribution of a LabVIEW .exe
    > which processes data using Matlab when it works on some computers but
    > not others?
    Poke around zone.ni.com and
    http://digital.natinst.com/public.nsf/$$Search/ .
    Good luck, Mark

  • Launchdaemon works manually but not at startup

    I am trying to create a launchdaemon that will run a script to upload some information to our inventory server BEFORE login.
    Here is the .plist located in /Library/LaunchDaemons
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
        <key>Label</key>
        <string>Inventory</string>
        <key>ProgramArguments</key>
        <array>
            <string>/ae_scan_mac</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>KeepAlive</key>
        <false/>
    </dict>
    </plist>
    and here is the script it points to
    #!/bin/sh
    ############ Server details ############
    hostName="DOSSVCDSK"
    portNo="80"
    protocol="http"
    ############ Server details ############
    SUPPORT="[email protected]"
    PRODUCT="AssetExplorer"
    COMPUTERNAME=`hostname`
    OUTPUTFILE="$COMPUTERNAME.xml"
    main()
              echo "##### Scanning Started #####"
            echo "<?xml version=\"1.0\" encoding=\"UTF-8\" ?><DocRoot>" >$OUTPUTFILE
              constructXML "ComputerName" "hostname"
              constructXML "OS_Category" "uname -s"
              echo "<Hardware_Info>" >>$OUTPUTFILE
              constructXML "OS_Category" "sw_vers"
              constructXML "Memory_Information" "sysctl hw.physmem"
              constructXML "Memory_Information" "sysctl hw.usermem"
              constructXML "Memory_Informationw" "sysctl hw.memsize"
              constructXML "Memory_Information" "sysctl vm.swapusage"
              constructXML "Computer_Information" "hostname"
              constructXML "Computer_Information" "hostname -s"
              constructXML "CPU_Information" "system_profiler SPHardwareDataType"
              constructXML "Disk_Space" "df -k"
              constructXML "NIC_Info" "/sbin/ifconfig"
      #-----------Last logged in user name -----------
              constructXML "Software_Info" "/usr/sbin/system_profiler SPSoftwareDataType"
      #-------------Chipset, VRAM, Monitor display type, resolution---------------------
              constructXML "Monitoranddisplayinfo" "/usr/sbin/system_profiler SPDisplaysDataType"
      #--------------Sound card -----------------------------
              constructXML "SoundCardinfo" "/usr/sbin/system_profiler SPAudioDataType"        
      #---------------Memory modules----------------------
              constructXML "MemoryInfo" "/usr/sbin/system_profiler SPMemoryDataType"          
      #--------------Physical drives-------------------------
              constructXML "PhysicaldrivesInfo" "/usr/sbin/system_profiler SPParallelATADataType"    
      #--------------Harddisk info if no data is available in SPParallelATADataType------------
              constructXML "HarddrivesInfo" "/usr/sbin/system_profiler SPSerialATADataType"          
      #----------------Printer Info-----------------------
              constructXML "Printer_Info" "/usr/sbin/system_profiler SPPrintersDataType -xml"          
              echo "</Hardware_Info>" >>$OUTPUTFILE
              echo "<Software_Info>" >>$OUTPUTFILE
              constructXML "Installed_Softwares" "system_profiler SPApplicationsDataType -xml"
              echo "</Software_Info>" >>$OUTPUTFILE
              echo "</DocRoot>" >>$OUTPUTFILE
              echo "##### Scanning completed #####"
      #echo $data
              pushData
    constructXML()
      ##Need to replace the < into &lt; , > into &gt; and & into &amp;#####
              echo "<$1><command>$2</command><output><![CDATA[">>$OUTPUTFILE
              eval $2 >> $OUTPUTFILE 2>&1
              echo "]]></output></$1>" >>$OUTPUTFILE
    pushData()
            data=$(cat $OUTPUTFILE)
            eval "type curl > /dev/null 2>&1"
            if [ $? -ne 0 ]
            then
                    echo "curl is not installed, so could not post the scan data to $PRODUCT, You can import the  $COMPUTERNAME.xml available in the current directory into $PRODUCT using Stand Alone Workstations Audit. Executing the curl command will lead to the installation."
                    exit 1
            fi
              curl --header "Content-Type: text/xml" --data-binary @$OUTPUTFILE "$protocol://$hostName:$portNo/discoveryServlet/WsDiscoveryServlet?COMPUTERNAME= $COMPUTERNAME"
            if [ $? -ne 0 ]
            then
               echo "$PRODUCT is not reachable. You can import the  $COMPUTERNAME.xml available in the current directory into $PRODUCT using Stand Alone Workstations Audit. For further queries, please contact $SUPPORT."
            else
               rm -rf $OUTPUTFILE
               echo "Successfully scanned the system data, Find this machine details in $PRODUCT server."
            fi
    main $*
    I can get it to run manually, but it does not run during startup. I THINK the plist is actually running, because it seems to create the file (that I commented out the remove), but it does not upload it to our server. Could there be a problem with trying to access the network before login? Like maybe it doesn't have an IP at that point? I haven't tested it as a LaunchAgent, yet however all the research points to that being easier. I would like this to run regardless of someone logging in if possible though.
    However, I have also created test .plist which points to a script that just "touches" a file, and that doesn't seem to work at startup either.
    Any help would be appreciated.

    launchd almost never fails silently - it's probably writing a more descriptive error message to the logs.  is there anything in console.app about this process?
    one of the more common problems with launchdaemons is that they cannot do anything that requires the window server or any other post-login utility.  That's sometimes hard to diagnose.  for instance, you're using eval statements and echo statements: do the eval statements trigger anything that would require login context?  are the echo statements getting sent to a non-existant conole?  try sending those last status and error messages directly to the logs.

  • Interclue fails to initalise upon restart from either shut down or back out of hibernation. Works when re-installed, but then fails every time.

    Interclue fails to initialize upon restart from either shut down or back out of hibernation. Works when re-installed, but then fails every time. What would cause this situation. Never had problems with this add-on with Firefox until I downloaded Firefox 4.0. I can disable, re-start, enable,re-start, and it works fine. The same scenario holds true if I uninstall and then re-install add-on.

    Just a guess, but I wonder if you have some application or process hanging up that's stopping it from shutting down? You might try closing each application individually and see if this helps.
    Good luck!

Maybe you are looking for

  • Can't drag songs onto iPod in iTunes

    I recently sent my corrupted iPod to Apple to be serviced. It got sent back and something was wrong with the hard drive in my computer I guess. Now I set up my iPod with my computer again but I can't put song on it. I drag the songs over to the iPod

  • Displays with Mavericks

    I have a 2010 macbook pro 13" that I occasionally hook up to a 19" external monitor using the miniport adapter for the VGA cable.  With Mavericks, will I be able to power my 13" screen along with the 19" plugged in and an additional monitor hooked up

  • ICal or MobileMe issue

    I use MobileMe to sync 4 Calendars among 3 computers and two iPhones. Something, somewhere, became corrupted. If you back up the calendar in Month view, events from other months start drawing on top of events from the selected month, among other odd

  • Resize During Transition - Flex Bug?

    I'm using move and resize parrallel transitions. Everything works fine if the user doesn't change the size of the window while the transition is occuring. If the screen gets resized, it does not go all the way to the correct position and then jumps t

  • Reject Travel Request (Enter and Send Msg Error)

    Hi Experts. I Copied standard workflow for approve travel request, and add a decision control to know whether is national or not. It seems that runs fine, but when the user choose to reject the request, the screen of "Enter and Send Msg seems to open