Cached Lookup error in GWia log ???

Response: 550 No such user (imailserver) Cached lookup ...
Above is the error I'm getting in my GWIA logs ... below is more in Diagnostic mode on the GWIA.
14:27:44 1FD MSG 1907 Analyzing result file: servername/vol01:\DOM03\WPGATE\GWIA\result\rbf2a3c3.026
14:27:44 1FD {SmtpResl:ProcessErrors
14:27:44 1FD MSG 1907 Command: xyzp.gc.ca
14:27:44 1FD MSG 1907 Response: 220 ************************************************** ********
14:27:44 1FD MSG 1907 Command: EHLO xyzp.gc.ca
14:27:44 1FD MSG 1907 Response: 250 ok
14:27:44 1FD MSG 1907 Command: M:<>
14:27:44 1FD MSG 1907 Response: 250 Command MAIL OK
14:27:44 1FD MSG 1907 Detected error on SMTP command
14:27:44 1FD MSG 1907 Command: RCPT TO:
14:27:44 1FD MSG 1907 Response: 550 No such user (imailserver) Cached lookup
14:27:44 1FD MSG 1907 Command: DATA
14:27:44 1FD MSG 1907 Response: 221 Command QUIT, disconnecting
The (imailserver) entry above is what we use to grab POP mail from our provider (It's a product called iMailDS).
D

Ok then ... I traced it back to the iMailDS. It was a (a few) bad .MSG messages that seemed to be stuck in the Output directory of iMailDS. Once we removed them all was back to normal.
Thanks ...
>>>
From: DZanre<dzanre@no_mx.forums.novell.com>
To:novell.support.groupwise.7x.gwia
Date: 2010-05-19 8:41 AM
Subject: Re: Cached Lookup error in GWia log ???
> The (imailserver) entry above is what we use to grab POP
> mail from our provider (It's a product called iMailDS).
This is what is generating this error though. The GWIA log is just
reporting what iMailDS tells it.
Danita - http://www.caledonia.net.blog

Similar Messages

  • [Solved]All QT programs crash."symbol lookup error","undefined symbol"

    Today when I open my computer I can not start any QT program. For example the error messages are
    kile: symbol lookup error: /usr/lib/libkdecore.so.5: undefined symbol: qt_locale_initialized
    kate: symbol lookup error: /usr/lib/libkio.so.5: undefined symbol: _ZN21QNetworkAccessManager16staticMetaObjectE
    /usr/bin/qtcreator.bin: symbol lookup error: /usr/bin/qtcreator.bin: undefined symbol: _ZN12QLocalServerC1EP7QObject
    okular: symbol lookup error: /usr/lib/libkdecore.so.5: undefined symbol: qt_locale_initialized
    Yesterday they are OK. I checked /var/log/pacman.log, yesterday I upgraded these packages
    [2010-03-09 10:08] upgraded lib32-libpng (1.4.0-2 -> 1.4.1-1)
    [2010-03-09 10:08] upgraded lucene (3.0.0-1 -> 2.9.2-1)
    [2010-03-09 10:08] upgraded xorg-server (1.7.5.901-1 -> 1.7.5.901-2)
    [2010-03-09 13:18] upgraded ghostscript (8.71-1 -> 8.71-2)
    [2010-03-09 19:13] upgraded ipython (0.10-2 -> 0.10-3)
    [2010-03-10 09:26] upgraded live-media (2010.02.10-1 -> 2010.03.08-1)
    [2010-03-10 09:26] upgraded menu-cache (0.3.1-1 -> 0.3.2-1)
    [2010-03-10 09:26] upgraded lxpanel (0.5.5-2 -> 0.5.5-3)
    Can any of these changements cause QT crash? Should I down-grade them?
    I have also rebuild qt from abs, but errors remain.
    Thx.
    Last edited by funslove (2010-03-11 08:19:50)

    It is solved.
    I remember that I installed Mathematica and changed the path of library in .bashrc:
    export LD_LIBRARY_PATH=/opt/mathematica/SystemFiles/Libraries/Linux-x86-64:$LD_LIBRARY_PATH
    There may be some conflict. When I change it to
    export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/mathematica/SystemFiles/Libraries/Linux-x86-64
    Everything is OK.

  • Cache lookup failed

    Dear Experts,
    I am stuck on the error :*' ERROR [HY000] ERROR: fmgr_info: function 0: cache lookup failed'* while calling a stored procedure(SP).
    The function in the SP run successfully but while calling the same SP from call function then it is executing this type of error.
    Please suggest
    Best Regards,
    Manish

    hi guys,
    sorry where to post this issue.But i am trying this in netezza.
    dear p0428,
    my calling function is
    call AEI_OPS_MD_STEP_CHECK_PROC(1,1,1,1)
    and the called function is :
    CREATE OR REPLACE PROCEDURE AEI_OPS_MD_STEP_CHECK_PROC(INTEGER, INTEGER, INTEGER, INTEGER)
    RETURNS integer
    LANGUAGE NZPLSQL AS
    BEGIN_PROC
    DECLARE
    pAPP_ID ALIAS FOR $1;
    pSUB_ID ALIAS FOR $2;
    pJOB_ID ALIAS FOR $3;
    pSTEP_ID ALIAS FOR $4;
    STATUS_CHECK INTEGER;
    BEGIN
    SELECT CASE DSL.PROC_STATUS
    WHEN 0 THEN 0
    WHEN 1 THEN 1
    WHEN 2 THEN 1
    ELSE 3 END
    INTO STATUS_CHECK
    FROM DEVELOPER.AEI_APPLICATION DA
    JOIN DEVELOPER.AEI_SUBJECT_AREA DSA
    ON DA.APPLICATION_ID = DSA.APPLICATION_ID
    AND DA.APPLICATION_ID = pAPP_ID
    AND DSA.SUBJECT_AREA_ID = pSUB_ID
    JOIN DEVELOPER.AEI_JOB DJ
    ON DSA.APPLICATION_ID = DJ.APPLICATION_ID
    AND DSA.SUBJECT_AREA_ID = DJ.SUBJECT_AREA_ID
    AND DJ.JOB_ID = pJOB_ID
    JOIN DEVELOPER.AEI_STEP DS
    ON DJ.APPLICATION_ID = DS.APPLICATION_ID
    AND DJ.SUBJECT_AREA_ID = DS.SUBJECT_AREA_ID
    AND DJ.JOB_ID = DS.JOB_ID
    AND DS.STEP_ID = pSTEP_ID
    LEFT OUTER JOIN DEVELOPER.AEI_STEP_LOG DSL
    ON DS.APPLICATION_ID = DSL.APPLICATION_ID
    AND DS.SUBJECT_AREA_ID = DSL.SUBJECT_AREA_ID
    AND DS.JOB_ID = DSL.JOB_ID
    AND DS.STEP_ID = DSL.STEP_ID
    AND DA.CURRENT_LOG_ID = DSL.LOG_ID
    Return 1;
    END;
    END_PROC;
    where DA,DSA,DJ,DSL are the tables
    Help is hugely appreciable
    manish

  • Xorg: symbol lookup error: path : undifined symbol: LoaderReqSymLists

    having problems with xorg.
    first noticed something was wrong when i ran Xorg -configure (yes, i now realize that this is an outdated method)
    the output from that was:
    X.Org S Server 1.11.3
    Release Date: 2011-12-16
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 3.1.5-1-ARCH x86-64
    Current Operating System: Linux rustyTower 3.1.5-1-ARCH #1 SMP PREEMPT Sat Dec 10 14:43:09 CET 2011 x86-64
    Kernel command line: root=/dev/sda1 ro
    Build Date: 17 December 2011 09:17:41AM
    Current version of pixman: 0.24.0
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--)probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (++) Log file: "/var/log/Xorg.0.log", Time; Fri Dec 23 10:46:23 2011
    List of video drivers:
    rendition
    cirrus
    ati
    s3virge
    mach64
    savage
    i740
    r128
    v4l
    xgixp
    tdfx
    sis
    apm
    ast
    glint
    radeon
    sisusb
    vmware
    nv
    i128
    dummy
    intel
    ark
    siliconmotion
    mga
    trident
    neomagic
    vmwlegacy
    s3
    voodoo
    xgi
    chips
    tseng
    fbdev
    vesa
    Xorg: symbol lookup error: /usr/lib/xorg/modules/drivers/xgixp_drv.so: undefined symbol: LoaderReqSymLists
    the /var/log/Xorg.0.log file is
    [ 3881.044]
    X.Org X Server 1.11.3
    Release Date: 2011-12-16
    [ 3881.044] X Protocol Version 11, Revision 0
    [ 3881.044] Build Operating System: Linux 3.1.5-1-ARCH x86_64
    [ 3881.046] Current Operating System: Linux rustyTower 3.1.5-1-ARCH #1 SMP PREEMPT Sat Dec 10 14:43:09 CET 2011 x86_64
    [ 3881.047] Kernel command line: root=/dev/sda1 ro
    [ 3881.048] Build Date: 17 December 2011 09:17:41AM
    [ 3881.050]
    [ 3881.051] Current version of pixman: 0.24.0
    [ 3881.053] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 3881.056] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 3881.060] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Dec 23 11:03:22 2011
    [ 3881.061] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 3881.063] (==) No Layout section. Using the first Screen section.
    [ 3881.063] (==) No screen section available. Using defaults.
    [ 3881.063] (**) |-->Screen "Default Screen Section" (0)
    [ 3881.063] (**) | |-->Monitor "<default monitor>"
    [ 3881.063] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 3881.063] (==) Automatically adding devices
    [ 3881.063] (==) Automatically enabling devices
    [ 3881.063] (WW) The directory "/usr/share/fonts/TTF/" does not exist.
    [ 3881.063] Entry deleted from font path.
    [ 3881.063] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 3881.063] Entry deleted from font path.
    [ 3881.063] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 3881.063] Entry deleted from font path.
    [ 3881.063] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 3881.063] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 3881.063] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 3881.063] (II) Loader magic: 0x7ccae0
    [ 3881.063] (II) Module ABI versions:
    [ 3881.063] X.Org ANSI C Emulation: 0.4
    [ 3881.063] X.Org Video Driver: 11.0
    [ 3881.063] X.Org XInput driver : 13.0
    [ 3881.063] X.Org Server Extension : 6.0
    [ 3881.064] (--) PCI:*(0:2:0:0) 1002:9498:1458:21c5 rev 0, Mem @ 0xd0000000/268435456, 0xfebf0000/65536, I/O @ 0x0000e000/256, BIOS @ 0x????????/131072
    [ 3881.064] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 3881.064] (II) LoadModule: "extmod"
    [ 3881.064] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 3881.064] (II) Module extmod: vendor="X.Org Foundation"
    [ 3881.064] compiled for 1.11.3, module version = 1.0.0
    [ 3881.064] Module class: X.Org Server Extension
    [ 3881.064] ABI class: X.Org Server Extension, version 6.0
    [ 3881.064] (II) Loading extension MIT-SCREEN-SAVER
    [ 3881.064] (II) Loading extension XFree86-VidModeExtension
    [ 3881.064] (II) Loading extension XFree86-DGA
    [ 3881.064] (II) Loading extension DPMS
    [ 3881.064] (II) Loading extension XVideo
    [ 3881.064] (II) Loading extension XVideo-MotionCompensation
    [ 3881.064] (II) Loading extension X-Resource
    [ 3881.064] (II) LoadModule: "dbe"
    [ 3881.064] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 3881.064] (II) Module dbe: vendor="X.Org Foundation"
    [ 3881.064] compiled for 1.11.3, module version = 1.0.0
    [ 3881.064] Module class: X.Org Server Extension
    [ 3881.064] ABI class: X.Org Server Extension, version 6.0
    [ 3881.064] (II) Loading extension DOUBLE-BUFFER
    [ 3881.064] (II) LoadModule: "glx"
    [ 3881.065] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 3881.065] (II) Module glx: vendor="X.Org Foundation"
    [ 3881.065] compiled for 1.11.3, module version = 1.0.0
    [ 3881.065] ABI class: X.Org Server Extension, version 6.0
    [ 3881.065] (==) AIGLX enabled
    [ 3881.065] (II) Loading extension GLX
    [ 3881.065] (II) LoadModule: "record"
    [ 3881.065] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 3881.065] (II) Module record: vendor="X.Org Foundation"
    [ 3881.065] compiled for 1.11.3, module version = 1.13.0
    [ 3881.065] Module class: X.Org Server Extension
    [ 3881.065] ABI class: X.Org Server Extension, version 6.0
    [ 3881.065] (II) Loading extension RECORD
    [ 3881.065] (II) LoadModule: "dri"
    [ 3881.065] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 3881.065] (II) Module dri: vendor="X.Org Foundation"
    [ 3881.065] compiled for 1.11.3, module version = 1.0.0
    [ 3881.065] ABI class: X.Org Server Extension, version 6.0
    [ 3881.065] (II) Loading extension XFree86-DRI
    [ 3881.065] (II) LoadModule: "dri2"
    [ 3881.065] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 3881.065] (II) Module dri2: vendor="X.Org Foundation"
    [ 3881.065] compiled for 1.11.3, module version = 1.2.0
    [ 3881.065] ABI class: X.Org Server Extension, version 6.0
    [ 3881.065] (II) Loading extension DRI2
    [ 3881.065] (==) Matched ati as autoconfigured driver 0
    [ 3881.065] (==) Matched vesa as autoconfigured driver 1
    [ 3881.065] (==) Matched fbdev as autoconfigured driver 2
    [ 3881.065] (==) Assigned the driver to the xf86ConfigLayout
    [ 3881.065] (II) LoadModule: "ati"
    [ 3881.066] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
    [ 3881.066] (II) Module ati: vendor="X.Org Foundation"
    [ 3881.066] compiled for 1.11.1.902, module version = 6.14.3
    [ 3881.066] Module class: X.Org Video Driver
    [ 3881.066] ABI class: X.Org Video Driver, version 11.0
    [ 3881.066] (II) LoadModule: "radeon"
    [ 3881.066] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 3881.066] (II) Module radeon: vendor="X.Org Foundation"
    [ 3881.066] compiled for 1.11.1.902, module version = 6.14.3
    [ 3881.066] Module class: X.Org Video Driver
    [ 3881.066] ABI class: X.Org Video Driver, version 11.0
    [ 3881.066] (II) LoadModule: "vesa"
    [ 3881.066] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    [ 3881.066] (II) Module vesa: vendor="X.Org Foundation"
    [ 3881.066] compiled for 1.11.1, module version = 2.3.0
    [ 3881.066] Module class: X.Org Video Driver
    [ 3881.066] ABI class: X.Org Video Driver, version 11.0
    [ 3881.066] (II) LoadModule: "fbdev"
    [ 3881.066] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
    [ 3881.066] (II) Module fbdev: vendor="X.Org Foundation"
    [ 3881.066] compiled for 1.10.99.902, module version = 0.4.2
    [ 3881.067] ABI class: X.Org Video Driver, version 11.0
    [ 3881.067] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
    ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI Radeon 9700 Pro ND (AGP),
    ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9600TX NF (AGP),
    ATI FireGL X1 NG (AGP), ATI Radeon 9800PRO NH (AGP),
    ATI Radeon 9800 NI (AGP), ATI FireGL X2 NK (AGP),
    ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
    ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
    ATI Mobility Radeon HD 4670, ATI FirePro M5750,
    ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
    ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
    ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
    ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
    ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
    ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
    ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
    SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200, ATI Radeon 4100,
    ATI Mobility Radeon HD 4200, ATI Mobility Radeon 4100,
    ATI Radeon HD 4290, ATI Radeon HD 4250, AMD Radeon HD 6310 Graphics,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6250 Graphics, AMD Radeon HD 6300 Series Graphics,
    AMD Radeon HD 6200 Series Graphics, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
    ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
    ATI Mobility Radeon Graphics, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    ATI Radeon HD 5450, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, AMD Radeon HD 6900 Series,
    AMD Radeon HD 6900 Series, CAYMAN, CAYMAN, CAYMAN,
    AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series, BARTS,
    BARTS, Mobility Radeon HD 6000 Series,
    Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS
    [ 3881.070] (II) VESA: driver for VESA chipsets: vesa
    [ 3881.070] (II) FBDEV: driver for framebuffer: fbdev
    [ 3881.070] (--) using VT number 7
    [ 3881.081] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 3881.081] (II) [KMS] Kernel modesetting enabled.
    [ 3881.081] (WW) Falling back to old probe method for vesa
    [ 3881.081] (WW) Falling back to old probe method for fbdev
    [ 3881.081] (II) Loading sub module "fbdevhw"
    [ 3881.081] (II) LoadModule: "fbdevhw"
    [ 3881.082] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
    [ 3881.082] (II) Module fbdevhw: vendor="X.Org Foundation"
    [ 3881.082] compiled for 1.11.3, module version = 0.0.2
    [ 3881.082] ABI class: X.Org Video Driver, version 11.0
    [ 3881.082] (II) RADEON(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 3881.082] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 3881.082] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 3881.082] (==) RADEON(0): Default visual is TrueColor
    [ 3881.082] (==) RADEON(0): RGB weight 888
    [ 3881.082] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 3881.082] (--) RADEON(0): Chipset: "ATI RV730 PRO [Radeon HD 4650]" (ChipID = 0x9498)
    [ 3881.082] (II) RADEON(0): PCIE card detected
    [ 3881.082] drmOpenDevice: node name is /dev/dri/card0
    [ 3881.082] drmOpenDevice: open result is 8, (OK)
    [ 3881.082] drmOpenByBusid: Searching for BusID pci:0000:02:00.0
    [ 3881.082] drmOpenDevice: node name is /dev/dri/card0
    [ 3881.082] drmOpenDevice: open result is 8, (OK)
    [ 3881.082] drmOpenByBusid: drmOpenMinor returns 8
    [ 3881.082] drmOpenByBusid: drmGetBusid reports pci:0000:02:00.0
    [ 3881.082] (II) Loading sub module "exa"
    [ 3881.082] (II) LoadModule: "exa"
    [ 3881.082] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 3881.082] (II) Module exa: vendor="X.Org Foundation"
    [ 3881.082] compiled for 1.11.3, module version = 2.5.0
    [ 3881.082] ABI class: X.Org Video Driver, version 11.0
    [ 3881.082] (II) RADEON(0): KMS Color Tiling: enabled
    [ 3881.082] (II) RADEON(0): KMS Pageflipping: enabled
    [ 3881.082] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 3881.086] (II) RADEON(0): Output HDMI-0 has no monitor section
    [ 3881.106] (II) RADEON(0): Output VGA-0 has no monitor section
    [ 3881.162] (II) RADEON(0): Output DVI-0 has no monitor section
    [ 3881.166] (II) RADEON(0): EDID for output HDMI-0
    [ 3881.186] (II) RADEON(0): EDID for output VGA-0
    [ 3881.242] (II) RADEON(0): EDID for output DVI-0
    [ 3881.242] (II) RADEON(0): Manufacturer: ACR Model: 120 Serial#: 270597208
    [ 3881.242] (II) RADEON(0): Year: 2011 Week: 2
    [ 3881.242] (II) RADEON(0): EDID Version: 1.3
    [ 3881.242] (II) RADEON(0): Digital Display Input
    [ 3881.242] (II) RADEON(0): Max Image Size [cm]: horiz.: 52 vert.: 29
    [ 3881.242] (II) RADEON(0): Gamma: 2.20
    [ 3881.242] (II) RADEON(0): DPMS capabilities: StandBy Suspend Off
    [ 3881.242] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 3881.242] (II) RADEON(0): First detailed timing is preferred mode
    [ 3881.242] (II) RADEON(0): redX: 0.640 redY: 0.329 greenX: 0.300 greenY: 0.600
    [ 3881.242] (II) RADEON(0): blueX: 0.150 blueY: 0.060 whiteX: 0.313 whiteY: 0.329
    [ 3881.242] (II) RADEON(0): Supported established timings:
    [ 3881.242] (II) RADEON(0): 720x400@70Hz
    [ 3881.242] (II) RADEON(0): 640x480@60Hz
    [ 3881.242] (II) RADEON(0): 640x480@67Hz
    [ 3881.242] (II) RADEON(0): 640x480@72Hz
    [ 3881.242] (II) RADEON(0): 800x600@56Hz
    [ 3881.242] (II) RADEON(0): 800x600@60Hz
    [ 3881.242] (II) RADEON(0): 800x600@72Hz
    [ 3881.242] (II) RADEON(0): 1024x768@60Hz
    [ 3881.242] (II) RADEON(0): 1024x768@70Hz
    [ 3881.242] (II) RADEON(0): Manufacturer's mask: 10
    [ 3881.242] (II) RADEON(0): Supported standard timings:
    [ 3881.242] (II) RADEON(0): #0: hsize: 1680 vsize 1050 refresh: 60 vid: 179
    [ 3881.242] (II) RADEON(0): #1: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 3881.242] (II) RADEON(0): #2: hsize: 1280 vsize 800 refresh: 60 vid: 129
    [ 3881.242] (II) RADEON(0): #3: hsize: 1440 vsize 900 refresh: 60 vid: 149
    [ 3881.242] (II) RADEON(0): #4: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 3881.242] (II) RADEON(0): #5: hsize: 1280 vsize 720 refresh: 60 vid: 49281
    [ 3881.242] (II) RADEON(0): #6: hsize: 1920 vsize 1080 refresh: 60 vid: 49361
    [ 3881.242] (II) RADEON(0): Supported detailed timing:
    [ 3881.242] (II) RADEON(0): clock: 138.5 MHz Image Size: 521 x 293 mm
    [ 3881.242] (II) RADEON(0): h_active: 1920 h_sync: 1968 h_sync_end 2000 h_blank_end 2080 h_border: 0
    [ 3881.242] (II) RADEON(0): v_active: 1080 v_sync: 1082 v_sync_end 1087 v_blanking: 1111 v_border: 0
    [ 3881.242] (II) RADEON(0): Ranges: V min: 56 V max: 75 Hz, H min: 31 H max: 84 kHz, PixClock max 185 MHz
    [ 3881.242] (II) RADEON(0): Serial No: LK60C0134030
    [ 3881.242] (II) RADEON(0): Monitor name: G235H
    [ 3881.242] (II) RADEON(0): EDID (in hex):
    [ 3881.242] (II) RADEON(0): 00ffffffffffff000472200158fc2010
    [ 3881.242] (II) RADEON(0): 0215010380341d78eade95a3544c9926
    [ 3881.242] (II) RADEON(0): 0f5054bb8c10b300714f810095008180
    [ 3881.242] (II) RADEON(0): 81c0d1c001011a3680a070381f403020
    [ 3881.242] (II) RADEON(0): 250009252100001f000000fd00384b1f
    [ 3881.242] (II) RADEON(0): 5412000a202020202020000000ff004c
    [ 3881.242] (II) RADEON(0): 4b363043303133343033300a000000fc
    [ 3881.242] (II) RADEON(0): 0047323335480a2020202020202000e4
    [ 3881.242] (II) RADEON(0): Printing probed modes for output DVI-0
    [ 3881.242] (II) RADEON(0): Modeline "1920x1080"x59.9 138.50 1920 1968 2000 2080 1080 1082 1087 1111 +hsync +vsync (66.6 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "1680x1050"x60.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "1440x900"x59.9 106.50 1440 1520 1672 1904 900 903 909 934 -hsync +vsync (55.9 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "1280x800"x59.8 83.50 1280 1352 1480 1680 800 803 809 831 +hsync -vsync (49.7 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "1280x720"x60.0 74.44 1280 1336 1472 1664 720 721 724 746 -hsync +vsync (44.7 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "1024x768"x70.1 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 491 520 -hsync -vsync (37.9 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "640x480"x66.7 30.24 640 704 768 864 480 483 486 525 -hsync -vsync (35.0 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz)
    [ 3881.242] (II) RADEON(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz)
    [ 3881.242] (II) RADEON(0): Output HDMI-0 disconnected
    [ 3881.242] (II) RADEON(0): Output VGA-0 disconnected
    [ 3881.242] (II) RADEON(0): Output DVI-0 connected
    [ 3881.242] (II) RADEON(0): Using exact sizes for initial modes
    [ 3881.242] (II) RADEON(0): Output DVI-0 using initial mode 1920x1080
    [ 3881.242] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 3881.242] (II) RADEON(0): mem size init: gart size :1fdff000 vram size: s:40000000 visible:f7d7000
    [ 3881.242] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
    [ 3881.242] (==) RADEON(0): DPI set to (96, 96)
    [ 3881.242] (II) Loading sub module "fb"
    [ 3881.242] (II) LoadModule: "fb"
    [ 3881.242] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 3881.243] (II) Module fb: vendor="X.Org Foundation"
    [ 3881.243] compiled for 1.11.3, module version = 1.0.0
    [ 3881.243] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 3881.243] (II) Loading sub module "ramdac"
    [ 3881.243] (II) LoadModule: "ramdac"
    [ 3881.243] (II) Module "ramdac" already built-in
    [ 3881.243] (II) UnloadModule: "vesa"
    [ 3881.243] (II) Unloading vesa
    [ 3881.243] (II) UnloadModule: "fbdev"
    [ 3881.243] (II) Unloading fbdev
    [ 3881.243] (II) UnloadModule: "fbdevhw"
    [ 3881.243] (II) Unloading fbdevhw
    [ 3881.243] (--) Depth 24 pixmap format is 32 bpp
    [ 3881.243] (II) RADEON(0): [DRI2] Setup complete
    [ 3881.243] (II) RADEON(0): [DRI2] DRI driver: r600
    [ 3881.243] (II) RADEON(0): [DRI2] VDPAU driver: r600
    [ 3881.243] (II) RADEON(0): Front buffer size: 8100K
    [ 3881.243] (II) RADEON(0): VRAM usage limit set to 221119K
    [ 3881.243] (==) RADEON(0): Backing store disabled
    [ 3881.243] (II) RADEON(0): Direct rendering enabled
    [ 3881.243] (II) RADEON(0): Setting EXA maxPitchBytes
    [ 3881.243] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 3881.243] (II) EXA(0): Driver registered support for the following operations:
    [ 3881.243] (II) Solid
    [ 3881.243] (II) Copy
    [ 3881.243] (II) Composite (RENDER acceleration)
    [ 3881.243] (II) UploadToScreen
    [ 3881.243] (II) DownloadFromScreen
    [ 3881.243] (II) RADEON(0): Acceleration enabled
    [ 3881.243] (==) RADEON(0): DPMS enabled
    [ 3881.243] (==) RADEON(0): Silken mouse enabled
    [ 3881.243] (II) RADEON(0): Set up textured video
    [ 3881.243] (II) RADEON(0): [XvMC] Associated with Radeon Textured Video.
    [ 3881.243] (II) RADEON(0): [XvMC] Extension initialized.
    [ 3881.243] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 3881.243] (--) RandR disabled
    [ 3881.243] (II) Initializing built-in extension Generic Event Extension
    [ 3881.243] (II) Initializing built-in extension SHAPE
    [ 3881.243] (II) Initializing built-in extension MIT-SHM
    [ 3881.243] (II) Initializing built-in extension XInputExtension
    [ 3881.243] (II) Initializing built-in extension XTEST
    [ 3881.243] (II) Initializing built-in extension BIG-REQUESTS
    [ 3881.243] (II) Initializing built-in extension SYNC
    [ 3881.243] (II) Initializing built-in extension XKEYBOARD
    [ 3881.243] (II) Initializing built-in extension XC-MISC
    [ 3881.243] (II) Initializing built-in extension SECURITY
    [ 3881.243] (II) Initializing built-in extension XINERAMA
    [ 3881.243] (II) Initializing built-in extension XFIXES
    [ 3881.243] (II) Initializing built-in extension RENDER
    [ 3881.243] (II) Initializing built-in extension RANDR
    [ 3881.243] (II) Initializing built-in extension COMPOSITE
    [ 3881.243] (II) Initializing built-in extension DAMAGE
    [ 3881.251] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 3881.251] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 3881.251] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 3881.251] (II) AIGLX: enabled GLX_SGI_make_current_read
    [ 3881.251] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 3881.251] (II) AIGLX: Loaded and initialized r600
    [ 3881.251] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 3881.252] (II) RADEON(0): Setting screen physical size to 508 x 285
    [ 3881.334] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 3881.334] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 3881.334] (II) LoadModule: "evdev"
    [ 3881.334] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 3881.335] (II) Module evdev: vendor="X.Org Foundation"
    [ 3881.335] compiled for 1.10.99.902, module version = 2.6.0
    [ 3881.335] Module class: X.Org XInput Driver
    [ 3881.335] ABI class: X.Org XInput driver, version 13.0
    [ 3881.335] (II) Using input driver 'evdev' for 'Power Button'
    [ 3881.335] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 3881.335] (**) Power Button: always reports core events
    [ 3881.335] (**) Power Button: Device: "/dev/input/event3"
    [ 3881.335] (--) Power Button: Found keys
    [ 3881.335] (II) Power Button: Configuring as keyboard
    [ 3881.335] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
    [ 3881.335] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 3881.335] (**) Option "xkb_rules" "evdev"
    [ 3881.335] (**) Option "xkb_model" "evdev"
    [ 3881.335] (**) Option "xkb_layout" "us"
    [ 3881.358] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 3881.358] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 3881.358] (II) Using input driver 'evdev' for 'Power Button'
    [ 3881.358] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 3881.359] (**) Power Button: always reports core events
    [ 3881.359] (**) Power Button: Device: "/dev/input/event2"
    [ 3881.359] (--) Power Button: Found keys
    [ 3881.359] (II) Power Button: Configuring as keyboard
    [ 3881.359] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event2"
    [ 3881.359] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 3881.359] (**) Option "xkb_rules" "evdev"
    [ 3881.359] (**) Option "xkb_model" "evdev"
    [ 3881.359] (**) Option "xkb_layout" "us"
    [ 3881.359] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP (/dev/input/event5)
    [ 3881.359] (II) No input driver/identifier specified (ignoring)
    [ 3881.359] (II) config/udev: Adding input device Logitech (/dev/input/event1)
    [ 3881.359] (**) Logitech: Applying InputClass "evdev pointer catchall"
    [ 3881.359] (II) Using input driver 'evdev' for 'Logitech'
    [ 3881.359] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 3881.359] (**) Logitech: always reports core events
    [ 3881.359] (**) Logitech: Device: "/dev/input/event1"
    [ 3881.359] (--) Logitech: Found 3 mouse buttons
    [ 3881.359] (--) Logitech: Found scroll wheel(s)
    [ 3881.359] (--) Logitech: Found relative axes
    [ 3881.359] (--) Logitech: Found x and y relative axes
    [ 3881.359] (II) Logitech: Configuring as mouse
    [ 3881.359] (II) Logitech: Adding scrollwheel support
    [ 3881.359] (**) Logitech: YAxisMapping: buttons 4 and 5
    [ 3881.359] (**) Logitech: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 3881.359] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:13.0/usb5/5-3/5-3:1.0/input/input1/event1"
    [ 3881.359] (II) XINPUT: Adding extended input device "Logitech" (type: MOUSE, id 8)
    [ 3881.359] (II) Logitech: initialized for relative axes.
    [ 3881.360] (**) Logitech: (accel) keeping acceleration scheme 1
    [ 3881.360] (**) Logitech: (accel) acceleration profile 0
    [ 3881.360] (**) Logitech: (accel) acceleration factor: 2.000
    [ 3881.360] (**) Logitech: (accel) acceleration threshold: 4
    [ 3881.360] (II) config/udev: Adding input device Logitech (/dev/input/mouse0)
    [ 3881.360] (II) No input driver/identifier specified (ignoring)
    [ 3881.360] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
    [ 3881.360] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [ 3881.360] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [ 3881.360] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 3881.360] (**) AT Translated Set 2 keyboard: always reports core events
    [ 3881.360] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event0"
    [ 3881.360] (--) AT Translated Set 2 keyboard: Found keys
    [ 3881.360] (II) AT Translated Set 2 keyboard: Configuring as keyboard
    [ 3881.360] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
    [ 3881.360] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
    [ 3881.360] (**) Option "xkb_rules" "evdev"
    [ 3881.360] (**) Option "xkb_model" "evdev"
    [ 3881.360] (**) Option "xkb_layout" "us"
    [ 3881.360] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
    [ 3881.360] (II) No input driver/identifier specified (ignoring)
    [ 4330.702] (II) Power Button: Close
    [ 4330.703] (II) UnloadModule: "evdev"
    [ 4330.703] (II) Unloading evdev
    [ 4330.746] (II) Power Button: Close
    [ 4330.746] (II) UnloadModule: "evdev"
    [ 4330.746] (II) Unloading evdev
    [ 4330.849] (II) Logitech: Close
    [ 4330.849] (II) UnloadModule: "evdev"
    [ 4330.849] (II) Unloading evdev
    [ 4330.956] (II) AT Translated Set 2 keyboard: Close
    [ 4330.956] (II) UnloadModule: "evdev"
    [ 4330.956] (II) Unloading evdev
    [ 4330.980] Server terminated successfully (0). Closing log file.
    after i execute:
    pacman -S xorg-xinit xorg-twm xorg-xclock xterm
    both xinit and startx work fine; i can use the keyboard and mouse
    so far i've tried reinstalling / updating with:
    pacman -S xorg
    pacman -S xorg-server
    pacman -S xorg-apps
    pacman -S xf86-video-ati
    the thread https://bbs.archlinux.org/viewtopic.php?id=126754 recommends removing the extra drivers (i have them all downloaded) by using this command:
    pacman -Rns $(pacman -Qqs xorg-drivers | grep -v xf86-input-evdev)
    the output that i get is:
    error: '1.5.0-2': target not found
    when i try to run fluxbox i get:
    Error: Couldn't connect to XServer
    the output i get from lspci | grep VGA is:
    02.00 VGA compatible controller: ATI Technologies Inc RV730 PRO [Radeon HD 4650]
    a similar problem was reported at https://bugzilla.novell.com/show_bug.cgi?id=667877
    i really don't know what they are talking about with using 'nomodset' and i'm not even sure that it applies to my situation
    hope thats enough info to get started on solving this problem

    played around with the .xinitrc file for a while after i got home from work and was able to get fluxbox running.  i would say problem solved, but i guess there wasn't really  a problem after all, just lack of reading. 
    don't know how i overlooked the wiki documentation on .xinitrc found at https://wiki.archlinux.org/index.php/Xinitrc
    mods please close this thread.

  • Cache - LookUp values

    Hi,
    Is there any possibility to cache the values when we used Lookup's in XI. So that we can not poll the database everytime in production environment.
    Can anybody share their valueable experiences with me.
    -Esha

    Hi,
    See the below links
    /people/sravya.talanki2/blog/2005/12/02/sxicache--ripped-off - SXI_CACHE - Ripped Off
    http://searchsap.techtarget.com/ sDefinition/0,,sid21_gci852485,00.html - 45k - Cached - Similar pages
    XI Runtime cache error: Cache contents are obsolete
    Cache Refresh - SAI_CACHE_REFRESH
    /people/sravya.talanki2/blog/2005/11/03/cache-refresh-errors--new-phenomena
    How To… Handle XPI Caches in SAP NetWeaver
    2004s https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/c0332b2a-eb97-2910-b6ba-dbe52a01be34
    also look at this forum link
    XI lookups - Cache - Performance Issues
    Please reward points if it helps
    Thanks
    Vikranth
    Edited by: Khimavath Vikranth on Jun 6, 2008 3:19 AM

  • Help: Errors in daemon logs

    Errors in /dcm/logs/daemon_logs/log.xml after
    infrastructure server upgraded to AIX 5.2 from 5.1.
    Sysadmin accidentally stopped portal, and on attempting to start up again, notice the following errors in log.xml.
    Both related to class not found, one related webDAV and the other to cache plugin -
    ================================================
    <PAYLOAD>
    <MSG_TEXT>The PlugIn named Cache will be not be functional within the iAS Home: /apps/infratst until this problem is resolved</MSG_TEXT>
    </PAYLOAD>
    </MESSAGE>
    eMESSAGE>
    sitory.plugin.portal.CachePlugin
    <HEADER>
    <TSTZ_ORIGINATING>2004-05-11T18:00:18.084+00:00</TSTZ_ORIGINATING>
    <COMPONENT_ID>iAS_dcm</COMPONENT_ID>
    <MSG_TYPE TYPE="ERROR"></MSG_TYPE>
    <MSG_GROUP>n/a</MSG_GROUP>
    <MSG_LEVEL>1</MSG_LEVEL>
    <HOST_ID>vulture.24hourfit.com</HOST_ID>
    <HOST_NWADDR>10.1.9.136</HOST_NWADDR>
    <MODULE_ID>oracle/defaultLogger/ExceptionLogger</MODULE_ID>
    <PROCESS_ID>null-Thread[main,5,main]</PROCESS_ID>
    <USER_ID>oraport</USER_ID>
    </HEADER>
    <PAYLOAD>
    <MSG_TEXT>Plugin Cache</MSG_TEXT>
    <SUPPL_DETAIL><![CDATA[java.lang.ClassNotFoundException: oracle.ias.sysmgmt.
    repository.plugin.portal.CachePlugin
            at java.net.URLClassLoader.findClass(URLClassLoader.java(Compiled Code))
            at java.lang.ClassLoader.loadClass(ClassLoader.java(Compiled Code))
            at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java(Compiled Cod
    e))
            at java.lang.ClassLoader.loadClass(ClassLoader.java(Compiled Code))
            at java.lang.Class.forName0(Native Method)
            at oracle.ias.sysmgmt.repository.RepositoryImpl.<init>(RepositoryImpl.ja
    va(Compiled Code))
            at oracle.ias.sysmgmt.repository.Repository.getRepositoryInstance(Reposi
    tory.java:58)
            at oracle.ias.sysmgmt.configsvc.ConfigurationServiceImpl.<init>(Configur
    ationServiceImpl.java:66)
            at java.lang.reflect.Constructor.newInstance(Native Method)
            at oracle.ias.sysmgmt.smimediator.SysMgmt._getInstance(SysMgmt.java:137)
            at oracle.ias.sysmgmt.smimediator.SysMgmt._getConfigSvc(SysMgmt.java:98)
            at oracle.ias.sysmgmt.smimediator.SysMgmt.getConfigSvc(SysMgmt.java:37)
            at oracle.ias.sysmgmt.smimediator.SysMgmt.getConfigAdapterAccessPoint(Sy
    sMgmt.java:111)
            at oracle.ias.sysmgmt.task.ConfigAdapter.getConfigAccessPoint(ConfigAdap
    ter.java:183)
            at oracle.ias.sysmgmt.task.ConfigAdapter.init(ConfigAdapter.java:132)
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    This sounds like https://discussions.apple.com/message/23511164?ac_cid=tw123456#23511164
    What kind of printers are you using? If possible, have you tried changing the fonts?

  • Errors in alert log and listener log and "alter database mount exclusive"

    Hello!
    I need a help.
    Database 11R2 works under MS Windows Server.
    Whwn I start it using Services, according alert log it is started by command "alter database mount exclusive".
    Next - alter database open.
    After this, it seams that program, which should put data into database, can not work with it, because I see errors in alert log: ora-12537, 12560, 12535, 12570, 12547.
    What does itmean and what to do?
    This is extract from alert_log
    ORACLE_BASE from environment = C:\Oracle
    Mon Feb 04 14:54:53 2013
    alter database mount exclusive
    Successful mount of redo thread 1, with mount id 1458539517
    Database mounted in Exclusive Mode
    Lost write protection disabled
    Completed: alter database mount exclusive
    alter database open
    Thread 1 opened at log sequence 3105
    Current log# 3 seq# 3105 mem# 0: C:\ORACLE\ORADATA\xxx\REDO03.LOG
    Successful open of redo thread 1
    MTTR advisory is disabled because FAST_START_MTTR_TARGET is not set
    SMON: enabling cache recovery
    Successfully onlined Undo Tablespace 2.
    Verifying file header compatibility for 11g tablespace encryption..
    Verifying 11g file header compatibility for tablespace encryption completed
    SMON: enabling tx recovery
    Database Characterset is AL32UTF8
    No Resource Manager plan active
    Mon Feb 04 14:55:04 2013
    replication_dependency_tracking turned off (no async multimaster replication found)
    Starting background process QMNC
    Mon Feb 04 14:55:06 2013
    QMNC started with pid=20, OS id=2860
    Completed: alter database open
    Mon Feb 04 14:55:11 2013
    Starting background process CJQ0
    Mon Feb 04 14:55:11 2013
    CJQ0 started with pid=25, OS id=2000
    Mon Feb 04 14:55:11 2013
    db_recovery_file_dest_size of 4977 MB is 0.00% used. This is a
    user-specified limit on the amount of space that will be used by this
    database for recovery-related files, and does not reflect the amount of
    space available in the underlying filesystem or ASM diskgroup.
    Mon Feb 04 15:00:29 2013
    Starting background process SMCO
    Mon Feb 04 15:00:29 2013
    SMCO started with pid=32, OS id=3212
    Edited by: kogotok1 on Feb 4, 2013 4:54 PM

    Thank you.
    But in the same time - when I see in alert log those error messages ora -12560, 12537,12535,12570 and so on - clients programs, whiie try to connect, hang up.
    For sql plus takes 20 minutes to connect.
    lsnrctl status gives the following
    LSNRCTL for 64-bit Windows: Version 11.2.0.1.0 - Production on 04-FEB-2013 16:01
    :46
    Copyright (c) 1991, 2010, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=xxx-BD.mosxxx
    .elektra.net)(PORT=1521)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 64-bit Windows: Version 11.2.0.1.0 - Produ
    ction
    Start Date 01-FEB-2013 10:22:48
    Uptime 3 days 5 hr. 39 min. 54 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File C:\Oracle\listener.ora
    Listener Log File c:\oracle\diag\tnslsnr\xxx-BD\listener\alert\l
    og.xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=xxx-BD.mosxxx.elektra.net)
    (PORT=1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1521ipc)))
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
    Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "XXX" has 2 instance(s).
    Instance "XXX", status UNKNOWN, has 1 handler(s) for this service...
    Instance "xxx", status READY, has 1 handler(s) for this service...
    Service "XXXDB" has 1 instance(s).
    Instance "xxx", status READY, has 1 handler(s) for this service...
    The command completed successfully
    To tell the truth I am confuse - I thought I have only 1 service "XXXDB" and 1 instance - "xxx".
    May be I have wrong entries in tnslsnr.ora?

  • Errors tracking through log file(tomcat5)/jsp

    Hi All!
    Can anyone find out errors in this log file ..pls its urgent..
    I got to make jsp package run perfectly ...but its not finding out class files.
    log4j: Finished configuring.
    Oct 12, 2005 2:04:24 PM org.apache.catalina.core.StandardHostDeployer install
    INFO: Installing web application at context path from URL file:C:\Program Files\Apache Software Foundation\Tomcat 5.0\webapps\ROOT
    Oct 12, 2005 2:04:24 PM org.apache.commons.digester.Digester fatalError
    SEVERE: Parse Fatal Error at line 16 column 2: The markup in the document following the root element must be well-formed.
    org.xml.sax.SAXParseException: The markup in the document following the root element must be well-formed.
         at org.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(Unknown Source)
         at org.apache.xerces.util.ErrorHandlerWrapper.fatalError(Unknown Source)
         at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
         at org.apache.xerces.impl.XMLErrorReporter.reportError(Unknown Source)
         at org.apache.xerces.impl.XMLScanner.reportFatalError(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentScannerImpl$TrailingMiscDispatcher.dispatch(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
         at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
         at org.apache.commons.digester.Digester.parse(Digester.java:1548)
         at org.apache.catalina.startup.ContextConfig.applicationConfig(ContextConfig.java:263)
         at org.apache.catalina.startup.ContextConfig.start(ContextConfig.java:624)
         at org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConfig.java:216)
         at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4290)
         at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:823)
         at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:807)
         at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:595)
         at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.java:277)
         at org.apache.catalina.core.StandardHost.install(StandardHost.java:832)
         at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:701)
         at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:432)
         at org.apache.catalina.startup.HostConfig.start(HostConfig.java:983)
         at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:349)
         at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1091)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:789)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1083)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:478)
         at org.apache.catalina.core.StandardService.start(StandardService.java:480)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:2313)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:556)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:287)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:425)
    Oct 12, 2005 2:04:24 PM org.apache.catalina.startup.ContextConfig applicationConfig
    SEVERE: Parse error in application web.xml
    org.xml.sax.SAXParseException: The markup in the document following the root element must be well-formed.
         at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
         at org.apache.commons.digester.Digester.parse(Digester.java:1548)
         at org.apache.catalina.startup.ContextConfig.applicationConfig(ContextConfig.java:263)
         at org.apache.catalina.startup.ContextConfig.start(ContextConfig.java:624)
         at org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConfig.java:216)
         at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4290)
         at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:823)
         at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:807)
         at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:595)
         at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.java:277)
         at org.apache.catalina.core.StandardHost.install(StandardHost.java:832)
         at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:701)
         at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:432)
         at org.apache.catalina.startup.HostConfig.start(HostConfig.java:983)
         at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:349)
         at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1091)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:789)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1083)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:478)
         at org.apache.catalina.core.StandardService.start(StandardService.java:480)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:2313)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:556)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:287)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:425)
    Oct 12, 2005 2:04:24 PM org.apache.catalina.startup.ContextConfig applicationConfig
    SEVERE: Occurred at line 16 column 2
    Oct 12, 2005 2:04:24 PM org.apache.catalina.startup.ContextConfig start
    SEVERE: Marking this application unavailable due to previous error(s)
    Oct 12, 2005 2:04:24 PM org.apache.catalina.core.StandardContext start
    SEVERE: Error getConfigured
    Oct 12, 2005 2:04:24 PM org.apache.catalina.core.StandardContext start
    SEVERE: Context startup failed due to previous errors
    Oct 12, 2005 2:04:24 PM org.apache.catalina.core.StandardHostDeployer install
    INFO: Installing web application at context path /servlets-examples from URL file:C:\Program Files\Apache Software Foundation\Tomcat 5.0\webapps\servlets-examples
    Oct 12, 2005 2:04:25 PM org.apache.catalina.core.StandardHostDeployer install
    INFO: Installing web application at context path /tomcat-docs from URL file:C:\Program Files\Apache Software Foundation\Tomcat 5.0\webapps\tomcat-docs
    Oct 12, 2005 2:04:25 PM org.apache.catalina.core.StandardHostDeployer install
    INFO: Installing web application at context path /webdav from URL file:C:\Program Files\Apache Software Foundation\Tomcat 5.0\webapps\webdav
    Oct 12, 2005 2:04:26 PM org.apache.coyote.http11.Http11Protocol start
    INFO: Starting Coyote HTTP/1.1 on http-8000
    Oct 12, 2005 2:04:26 PM org.apache.jk.common.ChannelSocket init
    INFO: JK2: ajp13 listening on /0.0.0.0:8009
    Oct 12, 2005 2:04:26 PM org.apache.jk.server.JkMain start
    INFO: Jk running ID=0 time=0/62 config=C:\Program Files\Apache Software Foundation\Tomcat 5.0\conf\jk2.properties
    Oct 12, 2005 2:04:26 PM org.apache.catalina.startup.Catalina start
    INFO: Server startup in 9953 ms
    <ERROR> http-8000-Processor25:ConfigSharedMem.setConfigMem() \tomcat5\webapps\sms\smsconfig.xml (The system cannot find the path specified)
    java.io.FileNotFoundException: \tomcat5\webapps\sms\smsconfig.xml (The system cannot find the path specified)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java:106)
         at java.io.FileInputStream.<init>(FileInputStream.java:66)
         at sun.net.www.protocol.file.FileURLConnection.connect(FileURLConnection.java:70)
         at sun.net.www.protocol.file.FileURLConnection.getInputStream(FileURLConnection.java:161)
         at org.apache.xerces.impl.XMLEntityManager.setupCurrentEntity(Unknown Source)
         at org.apache.xerces.impl.XMLVersionDetector.determineDocVersion(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
         at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
         at com.eprimes.sms.config.ConfigSharedMem.setConfigMem(ConfigSharedMem.java:61)
         at com.eprimes.sms.config.ConfigSharedMem.<init>(ConfigSharedMem.java:44)
         at com.eprimes.sms.mvc.ServletFactory.executeCommand(ServletFactory.java:417)
         at com.eprimes.sms.mvc.ServletFactory.executeMVC(ServletFactory.java:325)
         at com.eprimes.sms.mvc.ServletFactory.doPost(ServletFactory.java:309)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:237)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:198)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:152)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:137)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:118)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:929)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:160)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Thread.java:595)
    <ERROR> http-8000-Processor25:DaoLogin.login() Name smsdb is not bound in this Context
    javax.naming.NameNotFoundException: Name smsdb is not bound in this Context
         at org.apache.naming.NamingContext.lookup(NamingContext.java:768)
         at org.apache.naming.NamingContext.lookup(NamingContext.java:151)
         at com.eprimes.common.DBConnect.getConnection(DBConnect.java:30)
         at com.eprimes.sms.login.dao.DaoLogin.login(DaoLogin.java:45)
         at com.eprimes.sms.login.bizprocess.BizLogin.login(BizLogin.java:27)
         at com.eprimes.sms.mvc.login.LoginCmd.execute(LoginCmd.java:70)
         at com.eprimes.sms.mvc.ServletFactory.executeCommand(ServletFactory.java:507)
         at com.eprimes.sms.mvc.ServletFactory.executeMVC(ServletFactory.java:325)
         at com.eprimes.sms.mvc.ServletFactory.doPost(ServletFactory.java:309)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:237)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:198)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:152)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:137)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:118)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:929)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:160)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Thread.java:595)
    <ERROR> http-8000-Processor25:ConfigSharedMem.setConfigMem() \tomcat5\webapps\sms\smsconfig.xml (The system cannot find the path specified)
    java.io.FileNotFoundException: \tomcat5\webapps\sms\smsconfig.xml (The system cannot find the path specified)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java:106)
         at java.io.FileInputStream.<init>(FileInputStream.java:66)
         at sun.net.www.protocol.file.FileURLConnection.connect(FileURLConnection.java:70)
         at sun.net.www.protocol.file.FileURLConnection.getInputStream(FileURLConnection.java:161)
         at org.apache.xerces.impl.XMLEntityManager.setupCurrentEntity(Unknown Source)
         at org.apache.xerces.impl.XMLVersionDetector.determineDocVersion(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
         at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
         at com.eprimes.sms.config.ConfigSharedMem.setConfigMem(ConfigSharedMem.java:61)
         at com.eprimes.sms.config.ConfigSharedMem.<init>(ConfigSharedMem.java:44)
         at com.eprimes.sms.login.bizprocess.BizLogin.login(BizLogin.java:36)
         at com.eprimes.sms.mvc.login.LoginCmd.execute(LoginCmd.java:70)
         at com.eprimes.sms.mvc.ServletFactory.executeCommand(ServletFactory.java:507)
         at com.eprimes.sms.mvc.ServletFactory.executeMVC(ServletFactory.java:325)
         at com.eprimes.sms.mvc.ServletFactory.doPost(ServletFactory.java:309)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:237)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:198)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:152)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:137)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:118)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:929)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:160)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Thread.java:595)
    <ERROR> http-8000-Processor25:ServletFactory.executeMVC() getAttribute: Session already invalidated
    java.lang.IllegalStateException: getAttribute: Session already invalidated
         at org.apache.catalina.session.StandardSession.getAttribute(StandardSession.java:975)
         at org.apache.catalina.session.StandardSessionFacade.getValue(StandardSessionFacade.java:118)
         at com.eprimes.sms.login.bizprocess.BizLogin.login(BizLogin.java:40)
         at com.eprimes.sms.mvc.login.LoginCmd.execute(LoginCmd.java:70)
         at com.eprimes.sms.mvc.ServletFactory.executeCommand(ServletFactory.java:507)
         at com.eprimes.sms.mvc.ServletFactory.executeMVC(ServletFactory.java:325)
         at com.eprimes.sms.mvc.ServletFactory.doPost(ServletFactory.java:309)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:237)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:198)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:152)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:137)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:118)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:102)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContext.java:104)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:520)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:929)
         at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:160)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Thread.java:595)
    regards

    Thank you.
    But in the same time - when I see in alert log those error messages ora -12560, 12537,12535,12570 and so on - clients programs, whiie try to connect, hang up.
    For sql plus takes 20 minutes to connect.
    lsnrctl status gives the following
    LSNRCTL for 64-bit Windows: Version 11.2.0.1.0 - Production on 04-FEB-2013 16:01
    :46
    Copyright (c) 1991, 2010, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=xxx-BD.mosxxx
    .elektra.net)(PORT=1521)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 64-bit Windows: Version 11.2.0.1.0 - Produ
    ction
    Start Date 01-FEB-2013 10:22:48
    Uptime 3 days 5 hr. 39 min. 54 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File C:\Oracle\listener.ora
    Listener Log File c:\oracle\diag\tnslsnr\xxx-BD\listener\alert\l
    og.xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=xxx-BD.mosxxx.elektra.net)
    (PORT=1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1521ipc)))
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
    Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "XXX" has 2 instance(s).
    Instance "XXX", status UNKNOWN, has 1 handler(s) for this service...
    Instance "xxx", status READY, has 1 handler(s) for this service...
    Service "XXXDB" has 1 instance(s).
    Instance "xxx", status READY, has 1 handler(s) for this service...
    The command completed successfully
    To tell the truth I am confuse - I thought I have only 1 service "XXXDB" and 1 instance - "xxx".
    May be I have wrong entries in tnslsnr.ora?

  • Why am I getting lots of dns lookup error's after upgrading to 6.0?

    Half or more of the websites I try to access give me a DNS lookup error page. It didn't happen before the upgrade.

    Cannot connect after upgrading Firefox
    * https://support.mozilla.com/en-US/kb/Cannot%20connect%20after%20upgrading%20Firefox
    Firefox cannot load websites but other programs can
    * https://support.mozilla.com/en-US/kb/Firefox%20cannot%20load%20websites%20but%20other%20programs%20can
    Clear Cookies & Cache
    * https://support.mozilla.com/en-US/kb/Template:clearCookiesCache
    Clear the Network Cache
    * https://support.mozilla.com/en-US/kb/How%20to%20clear%20the%20cache#w_clear-the-cache
    Check and tell if its working.

  • RBL Lookup errors?

    My system.log is filling up with these:
    postfix/smtpd[22148]: warning: 57.223.192.81.relays.ordb.org: RBL lookup error: Host or domain name not found. Name service error for name=57.223.192.81.relays.ordb.org type=A: Host not found, try again
    Just started this afternoon. Made no changes to server whatsoever.. only thing I was able to google is that sometimes the RBL's come under DDoS attacks which mung their DNS.
    Anybody else ever see this?
    Thanks!

    rhwalker (Russ) posted this information in another thread this morning.
    "ordb.org vanished as of December 18, 2006."
    Go to your your main.cf file located in "/etc/postfix/" and edit the file.
    You can replace "rejectrblclient relays.ordb.org" with something like "rejectrblclient list.dsbl.org"
    Search the forums for other RBL options. If you don't already have it, you might also want to add "rejectrblclient zen.spamhaus.org" -- this replaces the old "sbl-xbl.spamhaus.org".
    These RBLs are listed under smtpdclientrestrictions and/or smtpdrecipientrestrictions.

  • Store status is stale; store status lookup error:

    Hi All,
    I am having a problem between the POS and server. After a store close if the store is then opened from the register after the server has been stopped and restarted I get a business date error on initial log in to any register to the effect that the business date cannot be confirmed do you want to continue opening the register?
    Here is what I am seeing in the logs
    WARN 2011-02-08 11:34:48,211 2020694 (StaticCacheThread-7:com.extendyourstore.foundation.manager.data.DataCommand):
    [com.extendyourstore.foundation.manager.data.DataCommand.execute(DataCommand.java:478)]
    Unhandled exception initializing DataOperation ReadStoreStatuses - Exception: Class: com.extendyourstore.foundation.manager.data.DataException(Revision $Revision: 3$) @4194368: DataCommand does not contain key ReadStoreStatuses
    Transaction Name:
    Error code: [5] [A Data Manager or Technician configuration error has occurred.]
    Error code (extended): [0]
    Description: [DataCommand does not contain key ReadStoreStatuses]
    Original exception: [null]
    ERROR 2011-02-08 11:34:48,211 2020694 (StaticCacheThread-7:com.extendyourstore.pos.services.PosSiteActionAdapter):
    [com.extendyourstore.pos.services.dailyoperations.common.LookupStoreStatusSite.arrive(LookupStoreStatusSite.java:181)]
    Store status is stale; store status lookup error:
    Class: com.extendyourstore.foundation.manager.data.DataException(Revision $Revision: 3$) @1084113054: DataCommand does not contain key ReadStoreStatuses
    Transaction Name: StoreDataTransaction
    Error code: [5] [A Data Manager or Technician configuration error has occurred.]
    Error code (extended): [0]
    Description: [DataCommand does not contain key ReadStoreStatuses]
    Original exception: [null]
    I am also getting connection errors right before the above error
    WARN 2011-02-08 11:34:48,201 2020684 (StaticCacheThread-7:com.extendyourstore.foundation.manager.data.DataManager):
    [com.extendyourstore.foundation.manager.data.DataManager.sendTransaction(DataManager.java:512)]
    Class: com.extendyourstore.foundation.manager.data.DataException(Revision $Revision: 3$) @880424058: Class: com.extendyourstore.foundation.comm.CommException(Revision 3) @982530704: RMI communication error executing valet.
         Nested exception--->java.net.ConnectException: Connection refused: connect
    Transaction Name:
    Error code: [3] [A connection error occurred during database access.]
    Error code (extended): [0]
    Description: [Class: com.extendyourstore.foundation.comm.CommException(Revision 3) @982530704: RMI communication error executing valet.
         Nested exception--->java.net.ConnectException: Connection refused: connect]
    Original exception: [null]
    , Continuing...trying alternates...
    The biggest problem if that from the initial error screen if I click "Yes" it goes to the enter business date screen, however no matter what date is put in all transactions from all registers will be dated the previous business date.
    The only way I have got around the problem is to shut down the register, delete the hard totals and restart - but the customer is not happy with this answer.
    Anyone here seen something like this before?
    Thanks
    James

    It's widespread - evidently there is a problem at Apple's end and it's just a question of waiting for them to fix it.

  • Connection Lookup error

    Hi , I get following error when i try to run my application.....
    After putting username and password in my jsp page i get following message ( error )
    500 Internal Server Error
    java.lang.NullPointerException
    at include.header._jspService(header.jsp:14)
    [include/header.jsp]
    at com.orionserver[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:347)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind[Oracle Application Server Containers for J2EE 10g                                                                     (10.1.2.0.0)].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:649)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.http.ServletRequestDispatcher.include(ServletRequestDispatcher.java:121)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.http.EvermindPageContext.include(EvermindPageContext.java:267)
    at exception.jspService(exception.jsp:9)
    [exception.jsp]
    at com.orionserver[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:347)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:649)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:322)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:220)
    at org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1069)
    at org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:455)
    at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:279)
    at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
    at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:649)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:322)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    at java.lang.Thread.run(Thread.java:534)
    My logs say following error ....
    Lookup error: java.net.ConnectException: Connection refused: connect; nested exception is:
    Message was edited by:
    NAME - SACHIN YELMAR
    EMAIL - [email protected]

    The underlying error is:
    Caused by: java.lang.NullPointerException
    at oracle.webcenter.bpel.config.BPELConnectionFactory.getURL(BPELConnectionFactory.java:93)
    at oracle.webcenter.bpel.config.BPELConnectionFactory.getObjectInstance(BPELConnectionFactory.java:79)
    at oracle.adf.share.jndi.ReferenceStoreHelper.getObjectForReference(ReferenceStoreHelper.java:285)
    You may want to ask the BPEL folks.

  • Enabling OCSP checking in Access Manager causes Directory lookup error

    I have deployed Access Manager 7.1 update 1 to Sun Java Web Server 7. This is on a Solaris 9 sparc server.
    If I enable OCSP checking in AMConfig.properties, I get the following in my web server logs:
    HTTP3068: Error receiving request from 214.x.x.x (Directory lookup error).
    This is when running the webserver as webservd - if I run it as root (not acceptable in my environment) I don't have a problem. I have successful installations on a Solaris 10 x86, and another Solaris 9 sparc server.
    It seems to be either a permissions issue, or an environment issue, but after working with LD_LIBRARY_PATH, and adding .jar and .so files to the amserver lib directory, I'm still not getting a working configuration. Does anyone have any ideas?

    Thanks samk,
    After the installation, I have started the Directory server,admin,and console with following commands:
    bash-3.00# directoryserver start
    bash-3.00# directoryserver start-admin
    SunONE-WebServer-Enterprise/6.0SP3 B05/19/2004 02:48
    warning: daemon is running as super-user
    [LS ls1] http://AM55-zone.ipsolutionshowcase.com <http://AM55-zone.ipsolutionshowcase.com> , port 390 ready to accept requests
    startup: server started successfully
    bash-3.00# directoryserver startconsole
    Recieved the Login console window,logged in and got the ipsolutionshowcase tree.
    What are the next steps I need to folow in order to launch the Access Manager page?
    Ant thoughts?
    Thanks for ye help
    Sid

  • I get a "Landing - Error" message after logging in

    I get a "Landing - Error" message after logging in Any ideas?

    Hi ,
    Thanks for joining the EE Community.
    Have you tried clearing the cache in your web browser or using a different browser?
    Thanks
    James

  • Sleepycat::DbXml problem "httpd: symbol lookup error"

    Hi
    My english is not good (sorry) but I try to explain my problem
    I have apache2.2.9 with modperl 2.0.4 static; I have some perl modules (development by me) with Sleepycat::DbXml library; when ran "make test" for its modules all is fine (I also develop the test); I also use mason (1.37).
    When i tried to acces some page generated for maso I gotten the next messages (log/error):
    /usr/local/apache2.2/bin/httpd: symbol lookup error: /usr/lib/perl5/vendor_perl/5.8.8/i686-linux/auto/Sleepycat/DbXml/DbXml.so: undefined symbol: _ZN5DbXml12XmlContainer10getManagerEv
    if I execute "ldd /usr/lib/perl5/vendor_perl/5.8.8/i686-linux/auto/Sleepycat/DbXml/DbXml.so" the output is:
    linux-gate.so.1 => (0xb7f25000)
    libdbxml-2.4.so => /usr/lib/libdbxml-2.4.so (0xb7b97000)
    libdb_cxx-4.6.so => /usr/lib/libdb_cxx-4.6.so (0xb7a4b000)
    libxerces-c.so.28 => /usr/lib/libxerces-c.so.28 (0xb7643000)
    libxqilla.so.4 => /usr/lib/libxqilla.so.4 (0xb726f000)
    libgcc_s.so.1 => /usr/lib/gcc/i686-pc-linux-gnu/4.1.2/libgcc_s.so.1 (0xb7263000)
    libc.so.6 => /lib/libc.so.6 (0xb7139000)
    libstdc++.so.6 => /usr/lib/gcc/i686-pc-linux-gnu/4.1.2/libstdc++.so.6 (0xb7055000)
    libm.so.6 => /lib/libm.so.6 (0xb7030000)
    libpthread.so.0 => /lib/libpthread.so.0 (0xb7019000)
    libnsl.so.1 => /lib/libnsl.so.1 (0xb7002000)
    /lib/ld-linux.so.2 (0x80000000)
    my distribution is gentoo...
    maybe the problem is caused by
    - duplicate libraries with different versions
    - or old libraries
    I updated my system and delete duplicate libraries, but the problem continue
    anybody can help me? .... where can investigate?
    another question is: why the problem is present only with apache?
    thanks in advance

    thanks George
    My program ran out of apache.... you are right with your suggerence ... I have to do:
    my distribution is gentoo ... i have installed several versions of gcc (maybe this cause my problem), then with gcc-config command configure default version of gcc to 4.1.2 .... follow the instructions at:
    http://www.gentoo.org/doc/en/gcc-upgrading.xml
    and that's all
    see you

Maybe you are looking for

  • Videos will no longer play on laptop

    i have tried to look at some of my old videos in my Nokia Suite on my Vista laptop today, but none of them will now play. I get "video cannot be played, the video file may contain an unsupported video format." They have always played before why not n

  • VERY Important Question on a WRT54G?

    Can a WRT54G be setup not to completely reset it's settings to default when reset button pushed? Here is my dilemma.  I oversee the network at a medium sized business.  We have one WRT54G wireless router.  I really do not like having it on premises b

  • How to Display Logo in ALV Header?

    Hi I want to display/ print my company logo image in ALV Header. Please help me how can I do this? Thanks Iftikhar Ali Islamabad.

  • COMPOUNDING SOURCE SYSTEM ID WITH OUT DELETING MASTER DATA

    Hi,    We have existing data from  r/3 system (for eg. D1) in BW. Now we have a requirement to get data from a new r/3 system (for eg D2). So we need to use 0COMP_CODE for two sources. We have COMP CODE C11 with different master data in D1 and D2. So

  • How to delete candidate profiles from e-recruitment

    Hi Experts, Could you please advice on how to delete the candidate profiles from the backend, could you please let me know the configuration required to perform this. Is there a standard background job or standard procedure of deleting candidates? Re