IMAP fails silently

I am trying to convert an account from POP to IMAP. The POP version works. The IMAP version does not. No messages show up in the IMAP account. There are some other strange symptoms as well:
1. I control my mail server so I can look at the server logs. When I synchronize the IMAP account, nothing shows up in the server logs.
2. On the client side, both the activity window in mail.app and eavesdrop show activity when I try to synchronize. However...
3. When I intentionally misconfigure the client to try to log in to a non-existent account, the client does not complain that the login attempt has failed. This is the main reason I believe the problem to be on the client side.
Any suggestions on how to debug this would be much appreciated.

Wouldn't you know that five minutes after posting this I would figure it out. Apparently you have to restart mail for changes to an IMAP account to take effect.

Similar Messages

  • Linux-3.10.10 fails silently when booting with UEFI

    This problem has occured for me on several occasions in the past (with 3.10.2 and 3.10.8) but that has been with kernels in [testing]. With 3.10.10 dropping to [core], this is the first time this has happened for me with an official release.
    Though the linked-to thread is marked as "Solved", the only solution found was downgrading and waiting for a new kernel to be released that did not have the issue (3.10.3 and 3.10.9). I am using UEFI with gummiboot, but I have no idea why this is happening (and since the boot fails silently it's rather difficult for me to provide helpful logs). Is anyone else experiencing this issue? Have you found any workable solution that isn't just waiting? Can anyone else guide me in some troubleshooting?
    All the best,
    -HG

    srs5694 wrote:
    Booting directly from the firmware and via gummiboot are basically the same, in the sense that they both rely on the EFI stub loader. The problem under discussion in the thread to which I linked appears to be a bug in the EFI stub loader that interacts with the firmware version -- it affects many Lenovo computers, but few others. It appears when using the EFI stub loader directly, from rEFInd, or from gummiboot; but it's a highly inconsistent bug. It can go away by switching from gummiboot to rEFInd, from rEFInd to gummiboot, from one version of rEFInd to another, from either of these to a direct boot from the firmware, etc. It also comes and goes with the exact kernel version, with different people reporting problems with different kernels.
    As I said, there's no real fix. The precise cause hasn't been nailed down; if it had been, chances are there'd be a fix by now.
    Fascinating. I wonder what's going wrong with it.
    If SYSLINUX is getting you further into the boot process, then I recommend you try to debug what's happening with SYSLINUX. Try posting details of any error messages you see.
    Fair enough. Then, here's my plan. Given that this thread appears to be a duplicate of the thread srs5694 linked to, it should probably either be merged in or closed (I don't necessarily have any preference, and since there has been no new discovery made in it, it doesn't seem as though there is any inherent advantage one way or another). And, I will shortly open a new thread on troubleshooting syslinux.
    Thank you for your guidance srs! You've been a huge help.
    All the best,
    -HG

  • JSTL fails silently

    I am a complete newbie to jstl. I'm working on a forEach loop in a jsp page and the code I want to call is not being called. I have something like this:
    <c:forEach items="${Access.allThings}" var="thing">...
    This corresponds to the Access.getAllThings() method, but that method is not being called. The scary thing is that no error is being triggered. When I change the jstl code to point to a bogus method, it also fails silently.
    Is this how jstl deals with errors - silently ignoring them?

    From what you have described, my guess is that ${Access} is null
    JSTL will ignore null values on evaluation.
    What is the value of ${Access}? <c:out value="${Access}"/>
    It is an attribute somewhere in scope right?
    JSTL only works with object instances - it does not access static class methods.

  • SET_CUSTOM_PROPERTY calling JavaBean failing silently

    Hello,
    I have a custom Oracle Form installed into Oracle eBusiness Suite where this form contains a Bean Area referencing a PJC (Pluggable Java Component). The PJC extends oracle.forms.ui.VBean.
    The PJC was being called successfully via the SET_CUSTOM_PROPERTY forms built in when this custom form was installed into Oracle eBusiness Suite 11.5.10 (running Forms 6i), however after the upgrade to EBS R12.1.3 (with Oracle Forms 10.1.2.0.2), the SET_CUSTOM_PROPERTY built in is not calling the setProperty method of the PJC at all. It fails silently, no error is displayed in either the Forms status bar, or in the Java JRE console.
    I have added extra debugging into the PJC class, and the debug is being output when the class is being loaded by the JRE, that is debug messages that I have added to the class constructor are being output to the Java console. The JAR file that contains the PJC has been signed correctly (signed and verified with jarsigner), and the custom JAR is being loaded successfully as Oracle Forms loads all the necessary JAR files to run eBusiness Suite forms (the load of the JAR is shown in the Java console).
    The property being used in the SET_CUSTOM_PROPERTY call is being initialized in the PJC class in the following way:
    private static final ID ORAWORD = oracle.forms.properties.ID.registerProperty("ORAWORD");
    The same property is being used in the SET_CUSTOM_PROPERTY call:
    Set_Custom_Property(vBeanHdl,1,'ORAWORD',vOutputString);
    The vBeanHdl variable references the Java Bean item, and contains a valid item identifier, I have checked that using the id_Null() function. A forms trace FRD shows that the SET_CUSTOM_PROPERTY built in is being called, it just simply does not fire the setProperty() method within the PJC.
    This is the content of the setProperty method that I have tried:
    public boolean setProperty(ID function, Object params)
    System.out.println("DEBUG: setProperty function called");
    return super.setProperty(function, params);
    At run time the function does not get called as the debugging text does not get output to the Java console. If I place any other code within the setProperty function it does not get executed.
    I have tried compiling the Java class under Java version 1.4 through to 1.6, and that has not helped (under all versions the Java class's constructor does get called).
    Can anybody offer me any hints? What has changed between Forms 6i and Forms 10.1.2.0.2 that could have led to this issue occurring?
    Thanks
    Daryl Budd

    Hi
    Stumbled upon the resolution myself. The Bean Area item needs to be set to Visible=Yes in the property palette for the bean within Forms Builder, and also the implementation class also in the bean's properties must match exactly the package & class name specified in the PJC (my full implementation class string had to be set to oracle.forms.demos.runApplication).
    As this bean has no user interface component, and since the Visible property has to be set to Yes, to avoid having a random square shape for the bean sitting on the form's canvas, I also set the Width and Height properties for the bean to 0.001. This does show a very small dot on the form, but that will be acceptable.
    So in summary there has been a change for PJC / Bean Areas between 6i and 10g Forms, in 6i you could have the Bean Item to be set Visible=No, and the SET_CUSTOM_ PROPERTY built-in would work, however in 10g Forms the Bean Item must be set to Visible=Yes for the SET_CUSTOM_PROPERTY built-in to work.
    Daryl

  • Catch Erros or Let them Fail silently ?? What Option to choose ??

    I have heard that there will be a Problem with Flash Players when dealing with RunTIme Errors , so do i have any advnatage if i catch the Error
    inside the catch block , create a Alert class from there and display it to the User??
    Over from this option of Let them happen fail silently .
    Please share your Ideas on this .
    Thanks in advance .

    There is no thumb rule for this. This depends on your requirement. If you encounter an error for which you want to notify your user (may be giving them alternatives or just asking them to try later) you can choose to catch and show appropriate popups. In case error does not affect your user, you can choose to let them fail silently.

  • Efibootmgr 0.5.4 works but 0.6.0 fails silently

    The code below works flawlessly with the 0.5.4 version of efibootmgr but not with version 0.6.0 ... it fails silently and does not add any entries to the NVRAM.
    echo "initrd=\EFI\arch\initramfs-linux.img root=/dev/mapper/vgTESTDrive-lvRoot cryptdevice=/dev/md33:vgTESTDrive add_efi_memmap pcie_aspm=force quiet" | iconv -f ascii -t ucs2 | efibootmgr --verbose --create --write-signature --gpt --disk /dev/sdd --part 1 --label "arch 2013-03-30 14:30:52" --loader '\EFI\arch\vmlinuz-linux.efi' --append-binary-args -
    So my question is what changed in efibootmgr 0.6.0 that could explain this and how do I fix my code?

    dhave wrote:
    timi wrote:depends on the kernel, efibootmgr works with 3.7.* er kernel, and probably pre 3.8.3 but not with 3.8.3 and above on my system (mainboard: asus f1a75m-pro)
    due to uefi patches in 3.8.3?
    @KairiTech: What kernel are you using? Timi's post has me wondering.
    efibootmgr version 0.5.4
    Linux archboot 3.6.2-1-ARCH #1 SMP PREEMPT Fri Oct 12 23:58:58 CEST 2012 x86_64 GNU/Linux
    Code below works as expected and adds an entry to the NVRAM:
    efibootmgr --create --write-signature --gpt --disk /dev/sdd --part 1 --label "TESTarch 2013-04-03 19:45:25" --loader '\EFI\TESTarch\vmlinuz-linux.efi' --unicode "initrd=\\EFI\\TESTarch\\initramfs-linux.img root=/dev/mapper/vgTESTDrive-lvRoot cryptdevice=/dev/md33:vgTESTDrive add_efi_memmap pcie_aspm=force quiet"
    efibootmgr version 0.6.0
    Linux archboot 3.8.4-1-ARCH #1 SMP PREEMPT Wed Mar 20 22:10:25 CET 2013 x86_64 GNU/Linux
    Code below does not add an entry to the NVRAM nor provides any error messages:
    efibootmgr --create --write-signature --gpt --disk /dev/sdd --part 1 --label "TESTarch 2013-04-03 19:59:14" --loader '\EFI\TESTarch\vmlinuz-linux.efi' --unicode "initrd=\\EFI\\TESTarch\\initramfs-linux.img root=/dev/mapper/vgTESTDrive-lvRoot cryptdevice=/dev/md33:vgTESTDrive add_efi_memmap pcie_aspm=force quiet"
    The two lines of code above are generated by the same script and should be identical except for the time in the label text.
    Last edited by KairiTech (2013-04-04 00:20:12)

  • [solved] acroread suddenly fails silently

    I think I must be missing something obvious but I can't think what and searching the wiki and forums hasn't helped. (Probably I'm searching for the wrong things.)
    acroread was working fine a couple of days ago. I am using the AUR PKGBUILD file, updated for 9.4.7 according to the instructions in the AUR comments. (9.4.7 is a security update but the package hasn't been updated in a long time.)
    The most recent things I've done which might have affected things involve font configuration. I've been working my way through the font config wiki. In particular, I've replaced the default freetype2, fontconfig, libxft with infinality/lcd versions. I've done the same for the lib32- versions of these packages, where applicable.
    I have tried rebuilding and reinstalling acroread and the system-wide installation of acroread fonts (just in case). I've also updated the font cache list and the fonts.dir and fonts.scale files.
    I first noticed that acroread wasn't working in firefox. Usually, the kpartsplugin opens pdf in acroread in the browser. Now I just get an empty space. (Not a blank page but the grey background behind the page which you don't usually see, I think.) But no sign of acroread. I then tried opening some pdf files on disk from the cli with acroread. I get a general error about not being able to find oxygen-gtk:
    (acroread:14245): Gtk-WARNING **: Unable to locate theme engine in module_path: "oxygen-gtk",
    However, I always get this and acroread works fine. (I've tried to solve this following hints found on the forums by installing lib32-libxslt and lib32-xcb-util but this didn't make any difference.) oxygen-gtk2 is installed just fine.
    Apart from this, the OS switches to the appropriate virtual desktop as though acroread was starting but acroread never starts. I don't get an error message. I just get left at the empty desktop.
    No errors are logged in ~/.xsession-errors and I can't find anything in the system log files either (errors.log, everything.log, dmesg, Xorg.0.log etc.).
    I tried acroread -info so I could check paths etc. but this also fails silently.
    What have I missed? Or how can I obtain more useful error messages from acroread? (i.e. any error messages at all!)
    In the meantime, I've also been unable to find out how kpartsplugin decides which applications to use. I wondered if I might persuade it to use okular (the system default for pdfs) instead...
    Last edited by cfr (2012-03-06 18:30:30)

    Thanks for the quick reply. Do you mean installing the older versions of the packages?
    lib32-freetype2-2.4.8-1-x86_64.pkg.tar.xz
    lib32-gtk2-2.24.8-1-x86_64.pkg.tar.xz
    freetype2-2.4.8-1-x86_64.pkg.tar.xz
    gtk2-2.24.8-2-x86_64.pkg.tar.xz
    I'm the person who asked if that kludge was compatible with having the standard versions installed on the system. No, I haven't tried that.
    I think this is a different issue because acroread isn't even starting. I get the crashes usually but not before it even starts.
    I'll definitely try this, though, if somebody can tell me what (if anything) I'd need to uninstall to use this...
    OK. So this does seem to have worked. Thanks very much for suggesting it. I just hadn't made the connection with the sporadic crashes or remembered that suggestion.
    What I did was find these files:
    lib32-freetype2-2.4.8-1-x86_64.pkg.tar.xz
    lib32-gtk2-2.24.8-1-x86_64.pkg.tar.xz
    freetype2-2.4.8-1-x86_64.pkg.tar.xz
    gtk2-2.24.8-1-x86_64.pkg.tar.xz
    (I used 2.24.8-1 for all of them - don't know if that is bad?) and the corresponding signatures. Downloaded them, checked the signatures and unpacked them. I then ran the post install instructions for the gtk packages. This didn't work for lib32 and I don't think it was necessary for either of them. I copied the corresponding file from the system for lib32 just in case.
    I stuck all this in a directory under my home directory. I then adjusted the KDE launcher with an appropriately modified form of the command from the comments, thus creating ~/.local/share/applications/acroread.desktop. (I tried doing this manually but couldn't get KDE to use it.) I then created a sh function along similar lines which will get sourced in all my sh/bash shells. Won't get propagated to tcsh without intervention but I hardly ever use tcsh anyhow....
    So I hope most stuff should use the kludge automatically.
    Sure would be nice to see this package getting a little attention from somebody who knows what they're doing!
    Thanks very much. Unfortunately I rely heavily on acroread as I can't find a replacement so fixing acroread tends to have a depressingly high priority when it (frequently) breaks.
    I don't understand what made it so much worse. Presumably infinality versions of freetype are even less to its liking than the current official versions!
    Last edited by cfr (2012-03-06 02:21:04)

  • Importing fails silently

    I have been trying to import some video into iMovie. I started with some mts files that I converted to mp4 using hand brake. The mp4 files almost all fail to import. Only one succeeded, and it was a much smaller resolution/length, so I believe the issue is that the files are too big. However, the problem is that imovie just fails silently. It sits there optimizing for 2 hours, and when I come back there's nothing. No indication that anything failed or went wrong. No rejected clips in the clip browser. Just 2 hours of chugging away and no message.
    How can I get these files into imovie? How can I find out what files are valid sizes to import?

    Hi David,
    Can you please attach your log file to help us figure out what's going wrong? Here's how you can find it:
    1. Open up the Terminal (in Applications/Utilities).
    2. Type the following and then press enter:
    cp Library/Application\ Support/Adobe/Flash\ Catalyst/workspace/.metadata/.log Desktop/log
    3. You should see a file called log on your Desktop. Attach this file to your post.
    Thanks!

  • 10.2.153.1 Fails Silently in Firefox, WHAT CAN I DO?

    An Actionscript 3 program I wrote 1.5 years ago that loads and displays multiple images in a slideshow with transitions that has been running great, now fails silently in Firefox.  It still continues to show some of the images loaded earlier, but browser controls are unresponsive (requiring me to kill the process).
    MS Windows XP SP3 on system with 1Mb RAM

    (sheepishly) Nevermind.  It's a server problem.
    It does have something to do with changes in the Flash player (something in the way my app is issuing server requests has changed), but the failure is occuring on my apache/php server-side (though, I still cannot explain why the Firefox controls were unresponsive).
    thanks,
    bob

  • Air 3.4.0.27.10 Win 7x64 fails - Silent Install Fix

    2012-10-14 Update: I tried the fix another forum member posted about silent install..It worked!
    In an elevated command window, <Your Path>\AdobeAIRInstaller.exe-silent
    MT
    Original ----------------------------------
    Same problem many report and same frustration that the steps outlined by Adobe do not fix the problem. Win 7x64.  Acrobat X Pro, Elements 10, Digital Editions and Premier 10 installed.  MS installer/uninstaller cleanup tried. Uninstall of AIR done. Attempted update of AIR opens a new window every time I click "I Agree" and ultimately fails with message Sorry, an error has occurred...Please contact your administrator (I am the Admin). Defunctioning the Antivirus (ESET) does nothing. Registry cleaning useless etc.
    Install log:
    [2012-10-07:11:38:28] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2012-10-07:11:38:28] Runtime Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-10-07:11:38:28] Commandline is: -updatecheck
    [2012-10-07:11:38:28] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-10-07:11:38:28] Performing pingback request
    [2012-10-07:11:38:28] Starting runtime background update check
    [2012-10-07:11:38:28] Clearing unused background update directory
    [2012-10-07:11:38:28] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.4.0.2540/update
    [2012-10-07:11:38:28] Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.4.0.2540/update to C:\Users\mtreloar\AppData\Roaming\Adobe\AIR\Updater\Background
    [2012-10-07:11:38:29] Runtime update not available
    [2012-10-07:11:38:29] Unpackaging cancelled
    [2012-10-07:11:38:29] Runtime Installer end with exit code 0
    [2012-10-13:18:38:26] Runtime Installer begin with version 3.4.0.2710 on Windows 7 x86
    [2012-10-13:18:38:26] Commandline is:
    [2012-10-13:18:38:26] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-10-13:18:38:29] Relaunching with elevation
    [2012-10-13:18:38:29] Launching subprocess with commandline c:\users\mtreloar\appdata\local\temp\aireb2e.tmp\adobe air installer.exe -ei
    [2012-10-13:18:38:29] Runtime Installer begin with version 3.4.0.2710 on Windows 7 x86
    [2012-10-13:18:38:29] Commandline is:
    [2012-10-13:18:38:29] Installed runtime (3.4.0.2540) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2012-10-13:18:38:33] Runtime Installer end with exit code 6
    [2012-10-13:18:38:33] Elevated install failed: returned error code -1
    [2012-10-13:18:38:33] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Launching elevated sub-installer failed" errorID=5100]
    [2012-10-13:18:38:34] Runtime Installer end with exit code 7
    [2012-10-13:19:39:25] Runtime Installer begin with version 3.4.0.2710 on Windows 7 x86
    [2012-10-13:19:39:25] Commandline is:
    [2012-10-13:19:39:25] No installed runtime detected
    [2012-10-13:19:39:30] Relaunching with elevation
    [2012-10-13:19:39:30] Launching subprocess with commandline c:\users\mtreloar\appdata\local\temp\airf5b4.tmp\adobe air installer.exe -ei
    [2012-10-13:19:39:30] Runtime Installer begin with version 3.4.0.2710 on Windows 7 x86
    [2012-10-13:19:39:30] Commandline is:
    [2012-10-13:19:39:30] No installed runtime detected
    [2012-10-13:19:39:36] Runtime Installer end with exit code 6
    [2012-10-13:19:39:37] Elevated install failed: returned error code -1
    [2012-10-13:19:39:37] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Launching elevated sub-installer failed" errorID=5100]
    [2012-10-13:19:39:37] Runtime Installer end with exit code 7
    [2012-10-13:20:43:32] Runtime Installer begin with version 3.4.0.2710 on Windows 7 x86
    [2012-10-13:20:43:32] Commandline is:
    [2012-10-13:20:43:32] No installed runtime detected
    [2012-10-13:20:43:35] Relaunching with elevation
    [2012-10-13:20:43:35] Launching subprocess with commandline c:\users\mtreloar\appdata\local\temp\airf4f9.tmp\adobe air installer.exe -ei
    [2012-10-13:20:43:35] Runtime Installer begin with version 3.4.0.2710 on Windows 7 x86
    [2012-10-13:20:43:35] Commandline is:
    [2012-10-13:20:43:35] No installed runtime detected
    [2012-10-13:20:43:38] Runtime Installer end with exit code 6
    [2012-10-13:20:43:38] Elevated install failed: returned error code -1
    [2012-10-13:20:43:38] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Launching elevated sub-installer failed" errorID=5100]
    [2012-10-13:20:43:39] Runtime Installer end with exit code 7
    [2012-10-13:20:45:00] Runtime Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-10-13:20:45:00] Commandline is:
    [2012-10-13:20:45:00] No installed runtime detected
    [2012-10-13:20:45:03] Relaunching with elevation
    [2012-10-13:20:45:03] Launching subprocess with commandline c:\users\mtreloar\appdata\local\temp\air4bfe.tmp\adobe air installer.exe -ei
    [2012-10-13:20:45:03] Runtime Installer begin with version 3.4.0.2540 on Windows 7 x86
    [2012-10-13:20:45:03] Commandline is:
    [2012-10-13:20:45:03] No installed runtime detected
    [2012-10-13:20:45:05] Runtime Installer end with exit code 6
    [2012-10-13:20:45:05] Elevated install failed: returned error code -1
    [2012-10-13:20:45:05] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Launching elevated sub-installer failed" errorID=5100]
    [2012-10-13:20:45:13] Runtime Installer end with exit code 7
    [2012-10-13:20:45:47] Runtime Installer begin with version 3.4.0.2710 on Windows 7 x86
    [2012-10-13:20:45:47] Commandline is:
    [2012-10-13:20:45:47] No installed runtime detected
    [2012-10-13:20:45:50] Relaunching with elevation
    [2012-10-13:20:45:50] Launching subprocess with commandline c:\users\mtreloar\appdata\local\temp\air12d5.tmp\adobe air installer.exe -ei
    [2012-10-13:20:45:50] Runtime Installer begin with version 3.4.0.2710 on Windows 7 x86
    [2012-10-13:20:45:50] Commandline is:
    [2012-10-13:20:45:50] No installed runtime detected
    [2012-10-13:20:45:52] Relaunching with elevation
    [2012-10-13:20:45:52] Launching subprocess with commandline c:\users\mtreloar\appdata\local\temp\air12d5.tmp\adobe air installer.exe -ei
    [2012-10-13:20:45:52] Runtime Installer begin with version 3.4.0.2710 on Windows 7 x86
    [2012-10-13:20:45:52] Commandline is:
    [2012-10-13:20:45:52] No installed runtime detected
    [2012-10-13:20:45:54] Relaunching with elevation
    [2012-10-13:20:45:54] Launching subprocess with commandline c:\users\mtreloar\appdata\local\temp\air12d5.tmp\adobe air installer.exe -ei
    [2012-10-13:20:45:54] Runtime Installer begin with version 3.4.0.2710 on Windows 7 x86
    [2012-10-13:20:45:54] Commandline is:
    [2012-10-13:20:45:54] No installed runtime detected
    [2012-10-13:20:45:57] Relaunching with elevation
    [2012-10-13:20:45:57] Launching subprocess with commandline c:\users\mtreloar\appdata\local\temp\air12d5.tmp\adobe air installer.exe -ei
    [2012-10-13:20:45:57] Runtime Installer begin with version 3.4.0.2710 on Windows 7 x86
    [2012-10-13:20:45:57] Commandline is:
    [2012-10-13:20:45:57] No installed runtime detected
    [2012-10-13:20:46:10] Relaunching with elevation
    [2012-10-13:20:46:10] Launching subprocess with commandline c:\users\mtreloar\appdata\local\temp\air12d5.tmp\adobe air installer.exe -ei
    [2012-10-13:20:46:10] Runtime Installer begin with version 3.4.0.2710 on Windows 7 x86
    [2012-10-13:20:46:10] Commandline is:
    [2012-10-13:20:46:10] No installed runtime detected
    [2012-10-13:20:46:12] Runtime Installer end with exit code 6
    [2012-10-13:20:46:13] Elevated install failed: returned error code -1
    [2012-10-13:20:46:13] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Launching elevated sub-installer failed" errorID=5100]
    [2012-10-13:20:46:14] Runtime Installer end with exit code 7
    [2012-10-13:20:46:14] Elevated install failed: returned error code -1
    [2012-10-13:20:46:14] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Launching elevated sub-installer failed" errorID=5100]
    [2012-10-13:20:46:15] Cancelling elevated install
    [2012-10-13:20:46:17] Runtime Installer end with exit code 7
    [2012-10-13:20:46:17] Elevated install failed: returned error code -1
    [2012-10-13:20:46:17] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Launching elevated sub-installer failed" errorID=5100]
    [2012-10-13:20:46:18] Runtime Installer end with exit code 7
    [2012-10-13:20:46:18] Elevated install failed: returned error code -1
    [2012-10-13:20:46:18] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Launching elevated sub-installer failed" errorID=5100]
    [2012-10-13:20:46:19] Runtime Installer end with exit code 7
    [2012-10-13:20:46:19] Elevated install failed: returned error code -1
    [2012-10-13:20:46:19] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Launching elevated sub-installer failed" errorID=5100]
    [2012-10-13:20:46:19] Runtime Installer end with exit code 7
    [2012-10-13:21:08:25] Runtime Installer begin with version 3.4.0.2710 on Windows 7 x86
    [2012-10-13:21:08:25] Commandline is:
    [2012-10-13:21:08:25] No installed runtime detected
    [2012-10-13:21:08:50] Relaunching with elevation
    [2012-10-13:21:08:50] Launching subprocess with commandline c:\users\mtreloar\appdata\local\temp\aircb99.tmp\adobe air installer.exe -ei
    [2012-10-13:21:08:51] Runtime Installer begin with version 3.4.0.2710 on Windows 7 x86
    [2012-10-13:21:08:51] Commandline is:
    [2012-10-13:21:08:51] No installed runtime detected
    [2012-10-13:21:08:54] Runtime Installer end with exit code 6
    [2012-10-13:21:08:54] Elevated install failed: returned error code -1
    [2012-10-13:21:08:54] Exiting due to error: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Launching elevated sub-installer failed" errorID=5100]
    [2012-10-13:21:09:48] Runtime Installer end with exit code 7

    Excellent, glad you were able to get this to work!  Had you tried right clicking the installer and doing a "run as administrator"?

  • Installation Fails ( SILENT Install)

    I am using following syntax to install Oracle 10g using response file and silent option.
    /home/oracle/database/runInstaller -silent -responseFile=enterprise.rsp
    This fails with:
    Unexpected Signal : 11 occurred at PC=0xF7D807CE
    Function=(null)
    Library=/tmp/OraInstall2011-11-15_06-13-22AM/jre/1.4.2/lib/i386/client/libjvm.so
    NOTE: We are unable to locate the function name symbol for the error
    just occurred. Please refer to release documentation for possible
    reason and solutions.
    Current Java thread:
    at oracle.sysman.oii.oiip.osd.unix.OiipuUnixOps.chgrp(Native Method)
    at oracle.sysman.oii.oiip.oiipg.OiipgBootstrap.changeGroup(OiipgBootstrap.java:1206)
    at oracle.sysman.oii.oiip.oiipg.OiipgBootstrap.writeInvLoc(OiipgBootstrap.java:900)
    at oracle.sysman.oii.oiip.oiipg.OiipgBootstrap.updateInventoryLoc(OiipgBootstrap.java:408)
    at oracle.sysman.oii.oiic.OiicSessionInterfaceManager.doInvSetupOperations(OiicSessionInterfaceManager.java:400)
    at oracle.sysman.oii.oiic.OiicSilentInterfaceManager.doInvSetupOperations(OiicSilentInterfaceManager.java:679)
    at oracle.sysman.oii.oiic.OiicInvSetupWCCE.doOperation(OiicInvSetupWCCE.java:217)
    at oracle.sysman.oii.oiif.oiifb.OiifbCondIterator.
    0007000 08:03 176980436 /tmp/OraInstall2011-11-15_06-17-32AM/jre/1.4.2/lib/i386/native_threads/libhpi.so
    ffc2a000-ffc3f000 rwxp 7ffffffe9000 00:00 0 [stack]
    Heap at VM Abort:
    Heap
    def new generation total 576K, used 271K [0xe65f0000, 0xe6690000, 0xe7170000)
    eden space 512K, 51% used [0xe65f0000, 0xe6632828, 0xe6670000)
    from space 64K, 8% used [0xe6680000, 0xe66816b0, 0xe6690000)
    to space 64K, 0% used [0xe6670000, 0xe6670000, 0xe6680000)
    tenured generation total 1408K, used 1074K [0xe7170000, 0xe72d0000, 0xefbf0000)
    the space 1408K, 76% used [0xe7170000, 0xe727ca18, 0xe727cc00, 0xe72d0000)
    compacting perm gen total 4864K, used 4645K [0xefbf0000, 0xf00b0000, 0xf3bf0000)
    the space 4864K, 95% used [0xefbf0000, 0xf0079468, 0xf0079600, 0xf00b0000)
    Local Time = Tue Nov 15 06:17:34 2011
    Elapsed Time = 0
    # HotSpot Virtual Machine Error : 11
    # Error ID : 4F530E43505002EF
    Heap at VM Abort:
    Heap
    def new generation total 576K, used 271K [0xe66e0000, 0xe6780000, 0xe7260000)
    eden space 512K, 51% used [0xe66e0000, 0xe6722828, 0xe6760000)
    from space 64K, 8% used [0xe6770000, 0xe67716b0, 0xe6780000)
    to space 64K, 0% used [0xe6760000, 0xe6760000, 0xe6770000)
    tenured generation total 1408K, used 1074K [0xe7260000, 0xe73c0000, 0xefce0000)
    the space 1408K, 76% used [0xe7260000, 0xe736ca18, 0xe736cc00, 0xe73c0000)
    compacting perm gen total 4864K, used 4645K [0xefce0000, 0xf01a0000, 0xf3ce0000)
    the space 4864K, 95% used [0xefce0000, 0xf0169458, 0xf0169600, 0xf01a0000)
    Local Time = Tue Nov 15 06:13:23 2011
    Elapsed Time = 0
    # HotSpot Virtual Machine Error : 11
    # Error ID : 4F530E43505002EF
    # Please report this error at
    is the above a space issue??? Not clear on the error messages..
    thanks
    OS is: CentOS release 5.7
    thanks

    Pl identify exact version of "10g" being installed. CentOS is not a supported distro, so things may or may not work as expected. Search this forum for others who have tried to install on CentOS.
    http://download.oracle.com/docs/cd/B19306_01/install.102/b15660/pre_install.htm#sthref111
    HTH
    Srini

  • Mail IMAP fails

    My school changed their email to gmail, but uses my schools domain if that matters. When I create my account I always get a message saying, "Trying to log into the IMAP server "imap.gmail.com" failed. Make sure the user name and password you entered are correct, then click Continue. If the information isn't correct, you cannot receive your email." My information is correct. And I've searched long and far for reasons why my Mail is not working. My school mail settings enable IMAP and I've tried following the account setup for gmail, but I can't get passed the Incoming Mail Server part. Halp!

    itonont wrote:
    My school changed their email to gmail, but uses my schools domain if that matters.
    It does. You shouldn't use gmail in any of your settings. Your school should give you all the information you need. Handing off all e-mail processing to Google is the fad-du-jour. In theory, you shouldn't ever have to know that gmail is running things. All the servers you enter should be your school's servers.

  • Setting up apple mail account with imap fails

    Hi folks.
    I have a mail address from a german provider www.all-inkl.com.
    My hardware is a MacBook Air 1,7 GHz Intel Core i5 with MacOSX 10.7.5
    I do not succeed setting up Apple Mail (Version 5.3) for this mail address using IMAP. Strangely it works on Thunderbird 17 for Mac.
    Find the settings below (those which Thunderbird accepts):
    INCOMING: imap.XXXX.de – Port 143
    OUTGOING: smtp.XXXX.de – Port 587
    STARTTLS
    Email: [email protected]
    Username: j.raff
    Apple Mail says (translated from German):
    "Login at the IMAP Server 'imap.XXXX.de' failed. Make sure Username and Password are correct ..."
    Does anyone have a clue?

    Thank you for staying with me.
    And, yes, I have the same error as described above.
    I double checked all details.
    Still, there is some ambiguity with username and servernames. Username may either be the email  OR email name before @ OR client number ... Tried all.
    Btw, in the Android E-Mail App it doesn't work either. I guess I have to call the provider.

  • Dragging local nested folders to Gmail IMAP fails after a while

    When dragging and dropping a nested local folder to gmail IMAP, copying commences as expected.
    However, after a while, it just stops and fails to replicate the folder structure and fails to copy messages.
    Any thoughts on how to proceed? I don't really want to manually re-create the folder structure and manually copy messages as this will take too long!

    Hi,
    I had tried using that very same extension right after messing things up, but it hadn't worked because I deleted the original folders as well.
    Then I tried doing a System Restore (luckily, Windows had decided to do an automatic one the night before), but still the missing emails weren't showing.
    A while after that I saw your suggestion and it hit me that I had not tried it after doing the System Restore, so I tried it and all messages were flooding back just like magic.
    Thank you very much for your help! I'm very happy right now.

  • JSP fails silently: Logs reveal "exception occurred in JNI_OnLoad"

    I'm running Apache Tomcat/4.1.10 with JVM 1.4.0_02. This is all running on Solaris 2.6 under a chrooted environment and seems to work quite well when I run test apps and such.
    Here's my problem:
    I installed Jive 2.6.1 Enterprise and attempted to run the initial setup tool by pointing my browser to /admin/setup/index.jsp. The JSP output starts loading into my browser, but then stops abruptly. The setup tool never finishes.
    Logs record a stack trace after this first failed attempt. Subsequent attempts to run the JSP record a different stack trace. They're listed below in order.
    I'm banging my head against a wall trying to debug this. Installing a previous version of Tomcat didn't change anything. Google searches have not been forthcoming, except that most JNI_OnLoad errors seem to happen on Solaris. I've copied countless megs worth of *.so files into my chrooted environment. Any insight into this would be much appreciated.
    Thanks,
    Greg
    2002-09-20 10:19:26 StandardWrapperValve[jsp]: Servlet.service() for servlet jsp threw exception
    org.apache.jasper.JasperException: exception occurred in JNI_OnLoad
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:246)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:289)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:240)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:260)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline. java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline. java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2397)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline. java:643)
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline. java:641)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:171)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline. java:641)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline. java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:405)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.ja va:380)
    at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:508)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:533)
    at java.lang.Thread.run(Thread.java:536)
    ----- Root Cause -----
    javax.servlet.ServletException: exception occurred in JNI_OnLoad
    at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:497)
    at org.apache.jsp.index_jsp._jspService(index_jsp.java:1064)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:136)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:202)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:289)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:240)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:260)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline. java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline. java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2397)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline. java:643)
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline. java:641)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:171)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline. java:641)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline. java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:405)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.ja va:380)
    at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:508)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:533)
    at java.lang.Thread.run(Thread.java:536)
    2002-09-20 10:19:51 StandardWrapperValve[jsp]: Servlet.service() for servlet jsp threw exception
    org.apache.jasper.JasperException
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:246)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:289)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:240)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:260)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline. java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline. java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2397)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline. java:643)
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline. java:641)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:171)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline. java:641)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline. java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:405)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.ja va:380)
    at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:508)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:533)
    at java.lang.Thread.run(Thread.java:536)
    ----- Root Cause -----
    javax.servlet.ServletException
    at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:497)
    at org.apache.jsp.index_jsp._jspService(index_jsp.java:1064)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:136)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:202)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:289)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:240)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:260)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline. java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline. java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2397)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline. java:643)
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline. java:641)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:171)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline. java:641)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline. java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:405)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.ja va:380)
    at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:508)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:533)
    at java.lang.Thread.run(Thread.java:536)

    Update:
    Running Tomcat from a non-chrooted environment gives correct behavior. Evidentally my Jive installation is fine, my Tomcat is fine, and my JVM is fine.
    The problem must be related to the chroot, where the JVM is trying to load some native library that doesn't exist in chroot world.
    My question is simply, how do I figure out which one? Can anybody point me in the right direction?
    Thanks a bunch,
    Greg

Maybe you are looking for

  • How do I use my iPhone 4s to set GPS co-ordinates to use at a later date?

    I'm wanting to go to an aread in the bush - enter the GPS co-ordinates in my iPhone 4s and then be able to go back to the same place at a later date. How do I go about it.  I have no idea if I even have a GPS on my iPhone 4s.

  • How to convert Oracle to SQL (Dual)

    Hello everyone, Thanks in advance for your time and help. I am using an application to try to generate a report, and it relies on SQL in the syntax that the database back-end is using. In my case, this is SQLServer. I have a colleague who is using th

  • Apple applications slow or not working

    When I booted up safari today my homepage wouldn't load at all. I thought it was the wifi so I tried another website which took quite some time, but eventually loaded. Every page has been the same, but once it's up it works fine. Anything I've typed

  • Inspection lot stock

    Dear Gurus After the usage decision in qa32 if I want to post stock to scrap . The message is coming Posting only to free or blocked stock due to missing goods receipt     QHU     17.What configuration I am missing.? Regards Sandip Sarkar

  • Table not found error in procedure

    i am logged in as user A. Trying to create a procedure in schema TGT by referring to a table in schema STG. I can directly select from the table such as select count(*) from STG.TABLE1; by logging in as USER A. The above runs fine and gives result se