0509-150   Dependent module libclntsh.a(shr.o) could not be loaded.

Hi All,
I am instaling SAP R/3 4.7 on Oracle 9.2.0.8 for AIX. during the installation i have completed the database load and also the SAP services have been start very fine but later during colleting database statistics it fails, upon study we found that the brconnect was not working fine due to the below error.
jayashree:jtpadm 13> brconnect
exec(): 0509-036 Cannot load program brconnect because of the following errors:
        0509-150   Dependent module libclntsh.a(shr.o) could not be loaded.
        0509-022 Cannot load module libclntsh.a(shr.o).
        0509-026 System error: A file or directory in the path name does not exist.
Please find the environment variables for the same.
jayashree:jtpadm 12> env
TERM=xterm
AUTHSTATE=files
SHELL=/bin/csh
HOME=/home/jtpadm
USER=jtpadm
PATH=/oracle/JTP/920_64/bin:/home/jtpadm:/usr/sap/JTP/SYS/exe/run:/usr/bin:/etc:
/usr/sbin:/usr/ucb:/home/jtpadm/bin:/usr/bin/X11:/sbin:.
TZ=IST+05:30CDT
LANG=en_US
LOCPATH=/usr/lib/nls/loc
LC__FASTMSG=true
ODMDIR=/etc/objrepos
G_BROKEN_FILENAMES=1
LOGNAME=jtpadm
LOGIN=jtpadm
SAPSYSTEMNAME=JTP
DIR_LIBRARY=/usr/sap/JTP/SYS/exe/run
THREAD=NOPS
dbms_type=ORA
dbs_ora_tnsname=JTP
dbs_ora_schema=SAPJTP
ORACLE_PSRV=JTP
ORACLE_SID=JTP
DB_SID=JTP
ORACLE_HOME=/oracle/JTP/920_64
ORACLE_BASE=/oracle
ORA_NLS33=/oracle/client/92x_64/ocommon/nls/admin/data
NLS_LANG=AMERICAN_AMERICA.WE8DEC
SAPDATA_HOME=/oracle/JTP
MAIL=/var/spool/mail/jtpadm
MAILMSG=[YOU HAVE NEW MAIL]
NLSPATH=/usr/lib/nls/msg/%L/%N:/usr/lib/nls/msg/%L/%N.cat
LIBPATH=/usr/lib:/lib:/usr/sap/JTP/SYS/exe/run
also i have tried changing the $LIBPATH as $LIBPATH:$ORACLE_HOME/lib it works for ora<sid> but fails for <sid>adm. request you sugestion to get the same resoved at the earliest.
Thanks a lot in advance.
Regards
Mahendra K
+91 97020 333 00

Hi Joe,
Thanks for the response, I have checked for the permission.
jayashree:jtpadm 4> ls -al libclntsh.a
-rw-rr    1 orajtp   dba        15529030 Sep 25 20:04 libclntsh.a
jayashree:jtpadm 5>
jtpadm has ot the read permission. i guess its problem related to environment variable.
Let me know if i need to have any changes.
Please find the dbenv variables:
@(#) $Id: //bc/640-2/src/ins/SAPINST/impl/tpls/ora/ind/DBENV.SH#7 $
Oracle RDBMS Environment
THREAD=NOPS; export THREAD
if [ $THREAD = NOPS ]; then
     DBSID=JTP
else
     if [ $THREAD != "001" ]; then
        DBSID=JTP_$The specified item was not found.
     else
        DBSID=JTP
     fi
fi
dbms_type=ORA; export dbms_type
dbs_ora_tnsname=$DBSID; export dbs_ora_tnsname
dbs_ora_schema=SAPJTP; export dbs_ora_schema
ORACLE_PSRV=JTP; export ORACLE_PSRV
ORACLE_SID=$DBSID; export ORACLE_SID
DB_SID=JTP; export DB_SID
ORACLE_HOME=/oracle/JTP/920_64; export ORACLE_HOME
ORACLE_BASE=/oracle; export ORACLE_BASE
ORA_NLS33=/oracle/JTP/920_64/ocommon/nls/admin/data; export ORA_NLS33
NLS_LANG=AMERICAN_AMERICA.WE8DEC ; export NLS_LANG
SAPDATA_HOME=/oracle/JTP; export SAPDATA_HOME
DIR_LIBRARY=/usr/sap/JTP/SYS/exe/run; export DIR_LIBRARY
check for running user and set for orasid ORA_NLS10
USER=`id | awk -F\( '{print $2}' | awk -F\) '{print $1}'`
TRUL='tr "ABCDEFGHIJKLMNOPQRSTUVWXYZ" "abcdefghijklmnopqrstuvwxyz"'
ORASID="ora`echo $DB_SID | $TRUL`"
if [ $USER != $ORASID ]; then
  _f=/sapmnt/JTP/profile/DEFAULT.PFL
  t=/oracle/JTP/92064/bin/sqlplus
  SAPDBHOST=""
  if [ -r "$_f" ]; then
    SAPDBHOST=`awk -F= '/^[      ]SAPDBHOST[      ]=/ {print $2; exit}' $_f | awk '{print $1}'`
  fi
  if [ -r "$_t" -o `uname -n` = "$SAPDBHOST" ]; then
    ORACLE_HOME=/oracle/JTP/920_64; export ORACLE_HOME
  else
    TNS_ADMIN=/oracle/JTP/920_64/network/admin
    ORACLE_HOME=`echo $ORA_NLS33 | awk -F_ '{printf("%s_",$1)} {printf("%2.2s",$2)}'`
    export TNS_ADMIN ORACLE_HOME
  fi
else
  ORACLE_HOME=/oracle/JTP/920_64; export ORACLE_HOME
  ADD=/oracle/JTP/920_64/lib
fi
for d in $ORACLE_HOME/bin; do
    i=0
    for p in `echo $PATH | sed 's/:/ /g'`; do
        if [ "$p" = "$d" ]; then
            i=1
            break
        fi
    done
    if [ $i -eq 0 ]; then
        PATH=$:$; export PATH
    fi
done
case `uname` in
    AIX*)
        if [ -z "$LIBPATH" ]; then
            LIBPATH=/usr/lib:/lib:/usr/sap/JTP/SYS/exe/run:$ORACLE_HOME/lib
        else
            for d in /usr/sap/JTP/SYS/exe/run; do
                i=0
                for p in `echo $LIBPATH | sed 's/:/ /g'`; do
                    if [ "$p" = "$d" ]; then
                        i=1
                        break
                    fi
                done
                if [ $i -eq 0 ]; then
                    LIBPATH=$:$; export LIBPATH
                fi
            done
        fi
    HP*)
        if [ -z "$SHLIB_PATH" ]; then
            SHLIB_PATH=/usr/sap/JTP/SYS/exe/run
        else
            for d in /usr/sap/JTP/SYS/exe/run; do
                i=0
                for p in `echo $SHLIB_PATH | sed 's/:/ /g'`; do
                    if [ "$p" = "$d" ]; then
                        i=1
                        break
                    fi
                done
                if [ $i -eq 0 ]; then
                    SHLIB_PATH=$:$; export SHLIB_PATH
                fi
            done
        fi
    Linux* | SIN* | Reliant*)
        if [ -z "$LD_LIBRARY_PATH" ]; then
            LD_LIBRARY_PATH=/usr/sap/JTP/SYS/exe/run:$ORACLE_HOME/lib
        else
            for d in /usr/sap/JTP/SYS/exe/run $ORACLE_HOME/lib; do
                i=0
                for p in `echo $LD_LIBRARY_PATH | sed 's/:/ /g'`; do
                    if [ "$p" = "$d" ]; then
                        i=1
                        break
                    fi
                done
                if [ $i -eq 0 ]; then
                    LD_LIBRARY_PATH=$:$; export LD_LIBRARY_PATH
                fi
            done
        fi
    OSF*)
        if [ -z "$LD_LIBRARY_PATH" ]; then
            LD_LIBRARY_PATH=/usr/sap/JTP/SYS/exe/run:$ORACLE_HOME/lib
        else
            for d in /usr/sap/JTP/SYS/exe/run  $ORACLE_HOME/lib; do
                i=0
                for p in `echo $LD_LIBRARY_PATH | sed 's/:/ /g'`; do
                    if [ "$p" = "$d" ]; then
                        i=1
                        break
                    fi
                done
                if [ $i -eq 0 ]; then
                    LD_LIBRARY_PATH=$:$; export LD_LIBRARY_PATH
                fi
            done
        fi
        if [ -z "$LD_LIBRARY_PATH" ]; then
            LD_LIBRARY_PATH=$ORACLE_HOME/lib
        else
            for d in $ORACLE_HOME/lib; do
                i=0
                for p in `echo $LD_LIBRARY_PATH | sed 's/:/ /g'`; do
                    if [ "$p" = "$d" ]; then
                        i=1
                        break
                    fi
                done
                if [ $i -eq 0 ]; then
                    LD_LIBRARY_PATH=$:$end Oracle RDBMS Environment; export LD_LIBRARY_PATH
                fi
            done
        fi
esac
@(#) $Id$ SAP
SAP R/3 Environment - please do not edit
Also find the .sapenv_hostname.sh variable.
SAPSYSTEMNAME=JTP; export SAPSYSTEMNAME
DIR_LIBRARY=/usr/sap/JTP/SYS/exe/run; export DIR_LIBRARY
for d in /usr/sap/JTP/SYS/exe/run $HOME .; do
    i=0
    for p in `echo $PATH | sed 's/:/ /g'`; do
        if [ "$p" = "$d" ]; then
            i=1
            break
        fi
    done
    if [ $i -eq 0 ]; then
        PATH=$:$; export PATH
    fi
done
case `uname` in
    Sun* | SIN* | Reliant*)
        for d in /usr/ccs/bin /usr/ucb; do
            i=0
            for p in `echo $PATH | sed 's/:/ /g'`; do
                if [ "$p" = "$d" ]; then
                    i=1
                    break
                fi
            done
            if [ $i -eq 0 ]; then
                PATH=$:$; export PATH
            fi
        done
    OSF*)
        for d in /usr/sbin; do
            i=0
            for p in `echo $PATH | sed 's/:/ /g'`; do
                if [ "$p" = "$d" ]; then
                    i=1
                    break
                fi
            done
            if [ $i -eq 0 ]; then
                PATH=$:$; export PATH
            fi
        done
esac
case `uname` in
    AIX*)
        if [ -z "$LIBPATH" ]; then
            LIBPATH=/usr/lib:/lib:/usr/sap/JTP/SYS/exe/run; export LIBPATH
        else
            for d in /usr/sap/JTP/SYS/exe/run; do
                i=0
                for p in `echo $LIBPATH | sed 's/:/ /g'`; do
                    if [ "$p" = "$d" ]; then
                        i=1
                        break
                    fi
                done
                if [ $i -eq 0 ]; then
                    LIBPATH=$:$; export LIBPATH
                fi
            done
        fi
    HP*)
        if [ -z "$SHLIB_PATH" ]; then
            SHLIB_PATH=/usr/sap/JTP/SYS/exe/run; export SHLIB_PATH
        else
            for d in /usr/sap/JTP/SYS/exe/run; do
                i=0
                for p in `echo $SHLIB_PATH | sed 's/:/ /g'`; do
                    if [ "$p" = "$d" ]; then
                        i=1
                        break
                    fi
                done
                if [ $i -eq 0 ]; then
                    SHLIB_PATH=$:$; export SHLIB_PATH
                fi
            done
        fi
    OS\/390)
        if [ -z "$LIBPATH" ]; then
            LIBPATH=/usr/lib:/lib:/usr/lpp/icli/sbin:/usr/sap/JTP/SYS/exe/run; export LIBPATH
        else
            for d in /usr/lpp/icli/sbin /usr/sap/JTP/SYS/exe/run; do
                i=0
                for p in `echo $LIBPATH | sed 's/:/ /g'`; do
                    if [ "$p" = "$d" ]; then
                        i=1
                        break
                    fi
                done
                if [ $i -eq 0 ]; then
                    LIBPATH=$:$; export LIBPATH
                fi
            done
        fi
        if [ -z "$LD_LIBRARY_PATH" ]; then
            LD_LIBRARY_PATH=/usr/sap/JTP/SYS/exe/run; export LD_LIBRARY_PATH
        else
            for d in /usr/sap/JTP/SYS/exe/run; do
                i=0
                for p in `echo $LD_LIBRARY_PATH | sed 's/:/ /g'`; do
                    if [ "$p" = "$d" ]; then
                        i=1
                        break
                    fi
                done
                if [ $i -eq 0 ]; then
                    LD_LIBRARY_PATH=$:$; export LD_LIBRARY_PATH
                fi
            done
        fi
esac
case `uname` in
    Sun*)
        ulimit -n 1024
        unset LD_LIBRARY_PATH_64;;
    OS\/390)
        alias hostname='hostname -s';;
esac
set TERM environment variable, terminal mode and terminal options
tty -s
if [ $? -eq 0 ]; then
    case `uname` in
        AIX|BOS)
            TERM=$; export TERM
            tset -I -Q
            stty erase 'h' kill 'u' intr 'c' susp 'z'
        HP*)
            TERM=$; export TERM
            tset -I -Q
            stty erase 'h' kill 'u' intr 'c' susp 'z'
        OSF*)
            TERM=$; export TERM
            tset -I -Q
            case $TERM in
                vt*)
                    stty erase '?' kill 'u' intr 'c' susp 'z'
                    stty erase 'h' kill 'u' intr 'c' susp 'z'
            esac
        OS\/390)
            TERM=$; export TERM
            stty erase 'h' kill 'u' intr 'c' susp 'z'
        Sun*)
            TERM=$; export TERM
            tset -I -Q
            stty erase 'h' kill 'u' intr 'c' susp 'z'
        SIN* | Reliant*)
            TERM=$; export TERM
            tset -I -Q
            stty erase 'h' kill 'u' intr 'c' susp 'z'
        ULT*)
            TERM=$; export TERM
            tset -I -n -Q
            case $TERM in
                vt*)
                    stty erase '?' kill 'u' intr 'c' susp 'z'
                    stty erase 'h' kill 'u' intr 'c' susp 'z'
            esac
        dgux*)
            TERM=$; export TERM
            tset -I -Q
            stty erase 'h' kill 'u' intr 'c' susp 'z'
    esac
fi
define primary prompt string
if ( tty -s ) then
    y=`hostname|cut -f1-2 -d.`
    x=`whoami`
    export PS1
    case "$TERM" in
        aix*)        PS1=" ];$x@$y:\$PWD $x> ";;
        hp*)         PS1="$y:$x>  &s1A";;
        OS\/390)     PS1=" ];$x@$y:\$PWD $x> ";;
        xterm*)      PS1=" ];$x@$y:\$PWD
$x> ";;
        *)           PS1="$y:$x> ";;
    esac
    unset y
    unset x
fi
define some nice aliases
alias dir='ls -l'
alias l='ls -abxCF'
alias h='history'
alias Pwd='/bin/pwd'
alias Su="rlogin `hostname` -l"
alias cdexe='cd /usr/sap/$SAPSYSTEMNAME/SYS/exe/run'
alias cdpro='cd /usr/sap/$SAPSYSTEMNAME/SYS/profile'
alias cdglo='cd /usr/sap/$SAPSYSTEMNAME/SYS/global'
alias cdput='cd /usr/sap/put/log'
ls -d /usr/sap/$SAPSYSTEMNAME/[D,G,S,J]*[0-9][0-9] > /dev/null 2>&1
if [ $? -eq 0 ]; then
INSTANCEDIR_LIST=`ls -d /usr/sap/$SAPSYSTEMNAME/[D,G,S,J]*[0-9][0-9]`
INSTANCEDIR_CI="/usr/sap/$SAPSYSTEMNAME/DVEBM"
INSTANCEDIR_DI="/usr/sap/$SAPSYSTEMNAME/D"
INSTANCEDIR_GW="/usr/sap/$SAPSYSTEMNAME/G"
INSTANCEDIR_S="/usr/sap/$SAPSYSTEMNAME/SCS"
INSTANCEDIR_JC="/usr/sap/$SAPSYSTEMNAME/JC"
INSTANCEDIR_J="/usr/sap/$SAPSYSTEMNAME/J"
for d in $INSTANCEDIR_LIST; do
  echo $d | grep `echo $INSTANCEDIR_CI` > /dev/null
  rc1=$?
  echo $d | grep `echo $INSTANCEDIR_DI` > /dev/null
  rc2=$?
  echo $d | grep `echo $INSTANCEDIR_GW` > /dev/null
  rc3=$?
  echo $d | grep `echo $INSTANCEDIR_S` > /dev/null
  rc4=$?
  echo $d | grep `echo $INSTANCEDIR_JC` > /dev/null
  rc5=$?
  echo $d | grep `echo $INSTANCEDIR_J` > /dev/null
  rc6=$?
  if [ $rc1 -eq 0 ]; then
    alias cdD='cd /usr/sap/$SAPSYSTEMNAME/DVEBM*[0-9][0-9]'
  elif [ $rc2 -eq 0 ]; then
    alias cdDi='cd /usr/sap/$SAPSYSTEMNAME/D[0-9][0-9]'
  elif [ $rc3 -eq 0 ]; then
    alias cdG='cd /usr/sap/$SAPSYSTEMNAME/G[0-9][0-9]'
  elif [ $rc4 -eq 0 ]; then
    alias cdS='cd /usr/sap/$SAPSYSTEMNAME/SCS[0-9][0-9]'
  elif [ $rc5 -eq 0 ]; then
    alias cdJC='cd /usr/sap/$SAPSYSTEMNAME/JC[0-9][0-9]'
  elif [ $rc6 -eq 0 ]; then
    alias cdJ='cd /usr/sap/$SAPSYSTEMNAME/J[0-9][0-9]'
  fi
done
fi
end SAP R/3 Environment
awaiting your response on the same.
Regards
Mahendra K

Similar Messages

  • Dependent module libclntsh.a(shr.o) could not be loaded

    We are facing the error below on our Dashboard :
    Foutcodes: OPR4ONWY:U9IM8TAC:OI2DL65P
    Toestand: HY000. Code: 603538432. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. 0509-022 Cannot load module /opt/oracle/product/10.1.3/bi_1/server/Bin64/libnqsdbgatewayoci10g64.so. 0509-150 Dependent module libclntsh.a(shr.o) could not be loaded. 0509-022 Cannot load module libclntsh.a(shr.o). 0509-026 System error: A file or directory in the path name does not exist. 0509-022 Cannot load module /opt/oracle/product/10.1.3/bi_1/server/Bin64/libnqsdbgatewayoci10g64.so. 0509-150 Dependent module /opt/oracle/product/10.1.3/bi_1/server/Bin64/libnqsdbgatewayoci10g64.so could not be loaded. [nQSError: 46029] Failed to load the DLL /opt/oracle/product/10.1.3/bi_1/server/Bin64/libnqsdbgatewayoci10g64.so. Check if 'Oracle OCI 10G' database client is installed. (HY000)
    Does anyone know the solution for this ?

    I had the same problem!
    I have DB server EE 10g R2 10.2.0.1.0 64-bit on Red Hat Enterprise Linux 4 and Itanium 64-bit platform.
    I also have BI EE 10.1.3.3.0 32-bit on an emulator for 32-bit (for Itanium does not exist BI EE 64 bits)
    When I update row count in Adm. Tool or Interactive Dashboard get errors:
    nQSError: 43093 An error ocurred while processing the EXECUTE PHYSICAL statement. libclntsh.s0.10.1: cannot open shared obtect file: No such file or directory
    nQSError: 46029 Failed to load the DLL /oracle/app/oracle/product/10.1.3.3.0/obi_1/installloc/server/Bin/libnqsdbgatewayoci10g.so. Check if 'Oracle OCI 10g' database client is installed
    echo $ORACLE_HOME
    /oracle/app/oracle/product/10.2.0/db_1
    echo $LD_LIBRARY_PATH
    /oracle/app/oracle/product/10.2.0/db_1/lib
    ls -l /oracle/app/oracle/product/10.1.3.3.0/obi_1/installloc/server/Bin/libclnt*
    lrwxrwxrwx 1 oracle oinstall 55 Dec 20 10:26 /oracle/app/oracle/product/10.1.3.3.0/obi_1/installloc/server/Bin/libclntsh.so -> /oracle/app/oracle/product/10.2.0/db_1/lib/libclntsh.so
    lrwxrwxrwx 1 oracle oinstall 60 Dec 20 10:09 /oracle/app/oracle/product/10.1.3.3.0/obi_1/installloc/server/Bin/libclntsh.so.10.1 -> /oracle/app/oracle/product/10.2.0/db_1/lib/libclntsh.so.10.1
    Help me please now!

  • Dependent module os4apilib.so could not be loaded

    Hi ALL
    Now I'm installing PI 7.1 on AS/400, when proceed to step import ABAP, an error about "Dependent module os4apilib.so could not be loaded" occurs. According to note 978127 and 1017181, it looks like a similar case to this one but it's for kernel 700. After I tried to replace os4apilib.so in directory /usr/sap/XD2/SYS/exe/uc/as400_pase_64/ with a new one extracted from SCSCLIENT_3-20001357.SAR, the issue still persists.
    Please refer to below for error details:
    WARNING    2009-01-30 17:32:06.065
               CJSlibModule::writeWarning_impl()
    Execution of the command "/usr/sap/XD2/SYS/exe/uc/as400_pase_64/R3load -testconnect" finished with return code 255. Output:exec(): 0509-036 Cannot load program /usr/sap/XD2/SYS/exe/uc/as400_pase_64/R3load because of the following errors:
            0509-150   Dependent module os4apilib.so could not be loaded.
            0509-022 Cannot load module os4apilib.so.
            0509-026 System error: A file or directory in the path name does not exist.
            0509-021 Additional errors occurred but are not reported.
    ERROR      2009-01-30 17:32:06.068
               CJSlibModule::writeError_impl()
    CJS-30023  Process call '/usr/sap/XD2/SYS/exe/uc/as400_pase_64/R3load -testconnect' exits with error code 255. For details see log file(s) R3load.exe.log.
    ERROR      2009-01-30 17:32:07.61 [sixxcstepexecute.cpp:940]
    FCO-00011  The step testDatabaseConnection with step key |NW_Onehost|ind|ind|
    ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CreateDBandLoad|ind|ind|
    ind|ind|10|0|NW_ABAP_Import_Dialog|ind|ind|ind|ind|6|0|NW_ABAP_Import|ind|ind
    |ind|ind|0|0|testDatabaseConnection was executed with status ERROR (Last error reported by the step :Process call '/usr/sap/XD2/SYS/exe/uc/as400_pase_64/
    R3load -testconnect' exits with error code 255. For details see log file(s) R3load.exe.log.).
    Thanks very much for any kinds of help provided here.
    Best regards,
    Effan

    I hardly remember how I resolved it, my friend. But start trying with latest installation master and kernel if that's a choice for you, maybe I loaded the latest ILE introduced by some notes. If it doesn't help, retry it and sort the installation directory by time sequence and then find all related logs. Please open a new thread for open discussion.
    BTW, why not to install 7.11 if this is a new instance? I just finished one, it's still warm to support you.
    Regards,

  • ERROR: Module load completed but symbols could not be loaded for Adobe AIR.dll

    Does anyone know what causes this error? The application installed on my machine is using Adobe Air.dll version 2.0.3.13070
    This dump file has an exception of interest stored in it.
    The stored exception information can be accessed via .ecxr.
    (2b84.2908): Application hang - code cfffffff (first/second chance not available)
    eax=00000000 ebx=05105dbc ecx=0c013503 edx=00002b84 esi=77f15b70 edi=00000002
    eip=00a68972 esp=0012e03c ebp=00000000 iopl=0         nv up ei pl zr na pe nc
    cs=001b  ss=0023  ds=0023  es=0023  fs=003b  gs=0000             efl=00040246
    Unable to load image c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Adobe AIR.dll, Win32 error 0n2
    *** WARNING: Unable to verify timestamp for Adobe AIR.dll
    *** ERROR: Module load completed but symbols could not be loaded for Adobe AIR.dll
    Adobe_AIR+0x58972:
    00a68972 8bec            mov     ebp,esp

    Hi,
    Check weather its right path or not.Even check the call interface,weather you are giving the right one or not.
    Regards,
    Srikanth

  • CVS NI1454 Labview RT 8.2, NI-VISA probleme : "NI-VISA loads modules... At Least one passport on your system could not be loaded"

    Bonjour,
    Je cale sur un problème avec le système de vision NI-CVS 1454.
    J'ai installé la version Labview 8.2 RT dessus car je n'avais les licences que pour cette version.
    Dans mon programme, la caméra doit réagir sur des signaux digitaux pour effectuer une analyse 1 ou une autre (analyse 2).
    Comme il me fallait connecter des I/O j'ai utilisé les fonction de NI-Imaq I/O > Open I/O.
    La caméra ne sait rien faire avec cela car je dois installer des softwares sur le système.
    J'ai donc été via Ni-MAX installer le soft NI-RIO FCF et cela demande automatiquement pour installer NI-VISA et NI-VISA SERVER
    Mais lorsque cela est fait j'ai un message à chaque démarrage du CVS :
    "NI-VISA loads modules(Passports) ro access GPIB, Serial, VXI, etc.... At Least one passport on your system could not be loaded. You should run the Measurement & Automation Explorer"
    Je ne fais que cela depuis 2 h mais je ne trouve pas le problème..
    est-ce la compatibilité des versions? Dois-je travailler autrement pour les I/O surle CVS?
    Merci pour votre aide.
    Seb

    Bonjour,
    Avez-vous essayé les tests proposés par Sami Fatallah ci-dessus ? Si oui quels en sont les résultats ?
    En effet je pense qu'une réinstallation du CVS (en safe mode) serait judicieuse.
    En ce qui concerne la configuration logiciel, tout semble correct.Vous n'avez donc en effet pas besoin du lien que je vous ai envoyé dans mon précédent message. Toutefois une réparation comme suggérée ci-dessus pourrait-être utile.
    Pour ce qui est du fonctionnement de IMAQ I/O, il vous permet d'accéder aux entrées/sorties via le FPGA. Cependant cela est transparent pour vous car un bitfile est généré à l'installation. Vous n'avez donc pas besoin de LabVIEW FPGA ni de programmer le FPGA. Plus de détails ci-dessous :
    http://digital.ni.com/public.nsf/allkb/98EE3EF87B2058F2862575BC005EDBC6
    Quel type de caméra connectez-vous à votre CVS par ailleurs ?
    http://forums.ni.com/t5/Machine-Vision/CVS-1456-Connection-Problems-VISA-error/m-p/1041051?requireLo...
    Voici un lien utile pour le diagnostic et la résolution de problèmes sur les CVS en général. Il ne vous sera d'aucun utilité dans le cas précis, cependant je vous conseille de l'ajouter à vos favoris.
    http://digital.ni.com/public.nsf/allkb/35D5C8DB4F1A66F5862571EA005D2FE3
    N'hésitez pas à nous tenir informés de l'évolution de la situation.
    Bien cordialement,
    Yannick D.
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    >> Du 30 juin au 25 août, embarquez pour 2 mois de vidéo-t'chat ! Prenez place pour un voyage au coe...

  • Cannot load module libjox9.a(shr.o).

    dear all,
    I have Oracle 9.2 on IBM AIX 5.3.
    When i attempt to execute my pg from user named "mpacd" located at "/home/mpacd", the following error message is shown :
    exec(): 0509-036 Cannot load program oraclemxpDev because of the following errors:
    0509-150 Dependent module libjox9.a(shr.o) could not be loaded.
    0509-022 Cannot load module libjox9.a(shr.o).
    0509-026 System error: A file or directory in the path name does not exist.
    ERROR:
    ORA-12547: TNS:lost contact
    I have checked my ORACLE_SID, My variable envirment LIBPATH and the permissions of libjox9.a all is allright:
    ORACLE_SID : mxpDev
    LIBPATH : $ORACLE_HOME/lib
    any idea plz...!!

    Your LIBPATH is set incorrectly.
    Message was edited by:
    user611744

  • Cannot load module libjox10.a(shr.o)

    Hi All!
    After a backup/restore system copy, and after checking (and applyng!) all the step descibed in the following link,
    Re: In DBA Planning Calendar CheckDB Job Failed
    on my SAP NW2004s (AIX, Oracle 10g) I have the following problem:
    if I try to execute the command startsap with usr <SID>adm i can't start DB and I have the following error message
    starting database
    SQL*Plus: Release 10.2.0.4.0 - Production on Wed Aug 4 23:58:21 2010
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    exec(): 0509-036 Cannot load program oracleBWP because of the following errors:
            0509-150   Dependent module libjox10.a(shr.o) could not be loaded.
            0509-022 Cannot load module libjox10.a(shr.o).
            0509-026 System error: A file or directory in the path name does not exist.
    ERROR:
    ORA-12547: TNS:lost contact
    exec(): 0509-036 Cannot load program oracleBWP because of the following errors:
            0509-150   Dependent module libjox10.a(shr.o) could not be loaded.
            0509-022 Cannot load module libjox10.a(shr.o).
            0509-026 System error: A file or directory in the path name does not exist.
    exec(): 0509-036 Cannot load program oracleBWP because of the following errors:
            0509-150   Dependent module libjox10.a(shr.o) could not be loaded.
            0509-022 Cannot load module libjox10.a(shr.o).
            0509-026 System error: A file or directory in the path name does not exist.
    ORA-12547: TNS:lost contact
    Connect to the database to verify, that the database is now open
    R3trans check finished with return code: 12
    ERROR: Startup of database failed
        Notify Database Administrator.
    /usr/sap/BWP/SYS/exe/run/startdb: Terminating with error code 12
    Also i check the entry in /etc/services and is correctly defined
    sapmsBWT        3600/tcp        # SAP System Message Server Port
    I can start/stop correctly my oracle database with ora<SID> user using sqlplus.
    If I try the R3trans -d command with user <SID>adm the return code is 0.
    The  <SID>adm env configuration contains the following line
    LIBPATH=/usr/lib:/lib:/usr/sap/BWP/SYS/exe/run:/oracle/client/10x_64/instantclient
    and the $ORACLE_HOME is set to /oracle/BWP/102_64
    Please, can someone help me?
    Thanks a lot!
    Marzia

    Hi Mark e Stefan.
    First of all, thank for your cooperations!
    Now... I've checked the env path as you say, and everithing is ok.
    After that I try to check the "List of  Dynamic Dependencies" with the ldd command, and this is the result:
    bwpadm> ldd $ORACLE_HOME/bin/oracle
    /oracle/BWP/102_64/bin/oracle needs:
             /usr/lib/libc.a(shr_64.o)
             /usr/lib/libpthreads.a(shr_xpg5_64.o)
    Cannot find libjox10.a(shr.o)
             /usr/lib/libdl.a(shr_64.o)
             /usr/lib/libperfstat.a(shr_64.o)
             /usr/lib/libodm.a(shr_64.o)
             /usr/lib/libc.a(aio_64.o)
             /unix
             /usr/lib/libcrypt.a(shr_64.o)
             /usr/lib/libcfg.a(shr_64.o)
             /usr/lib/liblvm.a(shr_64.o)
    Now, "just for fun", i've created a symlink to the quality test system (BWT)
    /oracle/BWT -> BWP
    and executing the ldd $ORACLE_HOME/bin/oracle command i didn't get any error!
    Now, after  executing the relink all command I get the following error message:
    ld: 0706-006 Cannot find or open library file: -l java
            ld:open(): A file or directory in the path name does not exist.
    ld: 0706-006 Cannot find or open library file: -l jvm
            ld:open(): A file or directory in the path name does not exist.
    make: 1254-004 The error code from the last command is 255.
    /bin/ld -G -o /oracle/BWP/102_64/sysman/lib/libnmemso.so -bE:/oracle/BWP/102_64/sysman/lib32/libnmemso.exp  -bI:/usr/lib/aio.exp -L/oracle/BWP/102_64/lib32   -L/oracle/BWP/102_64/sysman/lib32/  -blibpath:/oracle/BWP/102_64/lib32/:/oracle/BWP/102_64/lib/:/oracle/BWP/102_64/sysman/lib32/  /oracle/BWP/102_64/sysman/lib32/libnmem.a  /oracle/BWP/102_64/sysman/lib32/libnmer.a  /oracle/BWP/102_64/sysman/lib32/libnmeu.a  /oracle/BWP/102_64/sysman/lib32/libnmt.a    /oracle/BWP/102_64/sysman/lib32/libnml.a  /oracle/BWP/102_64/sysman/lib32/libnmee.a  /oracle/BWP/102_64/sysman/lib32/libnmefmgr.a /oracle/BWP/102_64/sysman/lib32/libnmevr.a  /oracle/BWP/102_64/sysman/lib32/libnmehu.a /oracle/BWP/102_64/sysman/lib32/libnmehl.a  /oracle/BWP/102_64/sysman/lib32/libnmepm.a  /oracle/BWP/102_64/sysman/lib32/libnmedc.a /oracle/BWP/102_64/sysman/lib32/libnmedt.a  /oracle/BWP/102_64/sysman/lib32/libnmedm.a /oracle/BWP/102_64/sysman/lib32/libnmedr.a  /oracle/BWP/102_64/sysman/lib32/libnmeb.a  /oracle/BWP/102_64/sysman/lib32/libnmec.a   /oracle/BWP/102_64/sysman/lib32/libnmesched.a  /oracle/BWP/102_64/sysman/lib32/libnmectl.a  /oracle/BWP/102_64/sysman/lib32/libnmejc.a  /oracle/BWP/102_64/sysman/lib32/libnmej.a -L/oracle/BWT/102_64/jdk/jre/bin/classic -L/oracle/BWT/102_64/jdk/jre/bin -blazy -ljava -ljvm  /oracle/BWP/102_64/sysman/lib32/libnmeclumgr.a /oracle/BWP/102_64/sysman/lib32/libnmecluster.a  /oracle/BWP/102_64/sysman/lib32/libnmexml.a  -lttsh10      -lld -lm `cat /oracle/BWP/102_64/lib32/sysliblist`  -lm
    After, after, after all wi try to set JRE_LIB_DIR=$(ORACLE_HOME)/jdk/jre/bin with the following command
    export JRE_LIB_DIR=$(ORACLE_HOME)/jdk/jre/bin
    but nothing changes!
    Any ideas?!?
    Thanks
    Marzia

  • Could not load Module... A known bug in Logic Pro 7.3 with Snow Leopard?

    I know this issue has been discussed before, but on my brand new MacBook Pro it's still an issue, so can someone please help me out with this?
    Here goes:
    Loading Logic 7.2.3 in Snow Leopard:
    The previously selected audio interface is not available
    The built-in audio inputs and outputs of the computer will be used instead for this session.
    <ok>
    Could not load Module "FW-1884" (-43)
    <cancel>
    Could not load Module "HUI" (-43)
    <cancel>
    Could not load Module "Logic Control" (-43)
    <cancel>
    Could not load Module "TranzPort" (-43)
    <cancel>
    Logic loads, and everything seems to work just fine.
    <selecting a plugin ---> Bass Amp>
    CoreAudio:
    Resource not found. (-10109)
    This happens no matter which plugin I choose - Bass Amp, EXS 24, ES1 etc…
    <Continue>
    The plugin loads, and works, but the display is in "Controls" Mode. Trying to switch to "Editor" Mode resulsts in the same error as above.
    Is there anyone out there who knows why this happens?
    Thanks
    Warbler

    Given that so many things are funky, I'd suspect that one or both of the following is occurring:
    1) Your Logic Pro application/installation is corrupt. Logic is failing loading control surface modules which should be in the application bundle. Reinstall.
    2) You have an incompatibility between Logic and the necessary system frameworks because Logic is too old/your system/OS is too new. You can't expect to hold back on an old version of an application and press forward with the OS (or vice versa) forever - eventually, something will break, and you'll have a large leap to get things working again.
    It's probably better to stay on the update train unless there is a specific reason to get off, or at least, freeze your computer/OS version at the same tim as you freeze your application.

  • [solved] could not load module 'processor'

    Since the recent upgrade to kernel 2.6.20.7-1 the acpi kernel modules have to be loaded manually. Thats all good, i don't have a problem with that. On my desktop I load  'button', 'processor'.
    But since the upgrade to 2.6.20.7-2 the module 'processor' disappeared.
    > /lib/modules/2.6.20-ARCH/kernel/drivers/acpi$ ls
    ac.ko asus_acpi.ko battery.ko button.ko dock.ko fan.ko hotkey.ko i2c_ec.ko ibm_acpi.ko sbs.ko toshiba_acpi.ko video.ko
    and
    modprobe processor gives me:
    FATAL: Module processor not found.
    Is that normal or what happened here?
    Last edited by mcover (2007-04-21 09:53:32)

    I see you are from Germany, so have a look at this:
    http://www.laber-land.de/?page=Postings … hread=5973
    Translation:
    Since kernel 2.6.20.7-2 the modules thermal and processor are directly integrated into the kernel and must/could not be loaded separatly.

  • 0509-130 Symbol resolution failed for ./libclntsh.a(shr.o)

    I have compiled and created an executable in the following environments :
    aix 5.2
    Pro*C/C++: Release 9.2.0.1.0
    gcc 3.3.2
    I later copy this executable to another directory and try to execute it , I get the following errors :
    exec(): 0509-036 Cannot load program GHRT because of the following errors:
    0509-130 Symbol resolution failed for ./libclntsh.a(shr.o) because:
    0509-136 Symbol pw_post (number 260) is not exported from
    dependent module /unix.
    0509-136 Symbol pw_wait (number 261) is not exported from
    dependent module /unix.
    0509-136 Symbol pw_config (number 262) is not exported from
    dependent module /unix.
    0509-136 Symbol aix_ora_pw_version3_required (number 263) is not exported from
    dependent module /unix.
    0509-192 Examine .loader section symbols with the
    'dump -Tv' command.
    However, if I execute the same executable in the directory in which it was created , it works perfectly fine.
    Also this is the information that is given if I type gcc -v on command line
    Reading specs from /opt/freeware/lib/gcc-lib/powerpc-ibm-aix5.2.0.0/3.3.2/specs
    Configured with: ../configure with-as=/usr/bin/as with-ld=/usr/bin/ld disable-nls enable-languages=c,c++ prefix=/opt/freeware enable-threads disable-shared enable-version-specific-runtime-libs --host=powerpc-ibm-aix5.2.0.0
    Thread model: aix
    gcc version 3.3.2
    Can somebody please help me with this.
    Regards
    Jayashree Nair

    Hi,
    Looks like something to do with Post/Wait kernel extension, run rootpre.sh.
    I had the same issue and it got resolved when I have run rootpre.sh on AIX 5.3.
    thanks
    srinivas

  • Cannot load program sqlplus, error Symbol ___strcmp64 is not exported from dependent module /usr/lib/libc.a[shr_64.o]

    Dear all,
    We are expriencing an error after a redirected restore, we are restored a backup of a prod system on a new host.
    While running a 'brrestore' command to get the restore, it returns the following error:
    BR0401I BRRESTORE 7.40 (8)
    BR0169I Value 'util_file_online' of parameter/option 'backup_dev_type/-d' ignored for 'brrestore' - 'util_file' assumed
    BR0405I Start of file restore: reojarkx.rsb 2014-07-23 16:48:47
    BR0484I BRRESTORE log file: /oracle/SID/sapbackup/reojarkx.rsb
    BR0278E Command output of '/oracle/SID/112_64/bin/sqlplus':
    exec(): 0509-036 Cannot load program sqlplus because of the following errors:
            0509-130 Symbol resolution failed for sqlplus because:
            0509-136   Symbol ___strcmp64 (number 71) is not exported from
                       dependent module /usr/lib/libc.a[shr_64.o].
            0509-136   Symbol ___strcpy64 (number 76) is not exported from
                       dependent module /usr/lib/libc.a[shr_64.o].
            0509-136   Symbol __setjmp (number 78) is not exported from
                       dependent module /usr/lib/libc.a[shr_64.o].
            0509-192 Examine .loader section symbols with the
                     'dump -Tv' command.
    BR0280I BRRESTORE time stamp: 2014-07-23 16:48:47
    BR0279E Return code from '/oracle/SID/112_64/bin/sqlplus': 255
    BR0302E SQLPLUS call for database instance SID failed
    BR0406I End of file restore: reojarkx.rsb 2014-07-23 16:48:47
    BR0280I BRRESTORE time stamp: 2014-07-23 16:48:47
    BR0404I BRRESTORE terminated with errors
    Can someone help to get the reason of this issue.
    Thanks, regards

    Roman,
    how can you know that it is about AIX? The OP didn't tell us.
    Besides that, I agree that different OS versions may be the root cause.
    regards

  • Could not load app module after upgrade to R12.1.3

    Hello,
    We migrated from 11.5.10.2 to R12.1.3 and I have a small custom app on my hands which worked fine in 11i but I am getting
    "Could not load application module 'xx.oracle.apps.ak.xxgl.MapAM'" message.
    I checked that the MapAMImpl.class is there (classes are under $XBOL_TOP/java) and permissions are OK. The xml page loaded into the DB has a correct reference to the module as
    amDefName="xx.oracle.apps.ak.xxgl.MapAM"
    and I am running of other options I should check. Appreciate any feedback.
    Thank you
    Anatoliy
    The full stack is below:
    Exception Details.
    oracle.apps.fnd.framework.OAException: Could not load application module 'xx.oracle.apps.ak.xxgl.MapAM'.
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:279)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1300)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
         at OA.jspService(_OA.java:204)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
         at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
         at RF.jspService(_RF.java:225)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:889)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:619)
    ## Detail 0 ##
    JBO-30003: The application pool (vmohspetm001.oracleoutsourcing.comDPET1I11710xx.oracle.apps.ak.xxgl.MapAM) failed to checkout an application module due to the following exception:
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: java.lang.NoClassDefFoundError, msg=jxl/JXLException
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:2002)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453)
         at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233)
         at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(OAHttpSessionCookieImpl.java:511)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:208)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1300)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
         at OA.jspService(_OA.java:204)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
         at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
         at RF.jspService(_RF.java:225)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:889)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:619)
    ## Detail 0 ##
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: java.lang.NoClassDefFoundError, msg=jxl/JXLException
         at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:545)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2094)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1961)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453)
         at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233)
         at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(OAHttpSessionCookieImpl.java:511)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:208)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1300)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
         at OA.jspService(_OA.java:204)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
         at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
         at RF.jspService(_RF.java:225)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:889)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:619)
    ## Detail 0 ##
    java.lang.NoClassDefFoundError: jxl/JXLException
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:247)
         at oracle.jbo.common.java2.JDK2ClassLoader.loadClassForName(JDK2ClassLoader.java:38)
         at oracle.jbo.common.JBOClass.forName(JBOClass.java:164)
         at oracle.jbo.common.JBOClass.findCustomClass(JBOClass.java:177)
         at oracle.jbo.server.ApplicationModuleDefImpl.loadFromXML(ApplicationModuleDefImpl.java:836)
         at oracle.jbo.server.ApplicationModuleDefImpl.loadFromXML(ApplicationModuleDefImpl.java:770)
         at oracle.jbo.server.MetaObjectManager.loadFromXML(MetaObjectManager.java:534)
         at oracle.jbo.mom.DefinitionManager.loadLazyDefinitionObject(DefinitionManager.java:547)
         at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:425)
         at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:358)
         at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:340)
         at oracle.jbo.server.MetaObjectManager.findMetaObject(MetaObjectManager.java:700)
         at oracle.jbo.server.ApplicationModuleDefImpl.findDefObject(ApplicationModuleDefImpl.java:232)
         at oracle.jbo.server.ApplicationModuleImpl.createRootApplicationModule(ApplicationModuleImpl.java:401)
         at oracle.jbo.server.ApplicationModuleHomeImpl.create(ApplicationModuleHomeImpl.java:91)
         at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:139)
         at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:80)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.instantiateResource(ApplicationPoolImpl.java:2468)
         at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:536)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2094)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1961)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453)
         at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233)
         at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(OAHttpSessionCookieImpl.java:511)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:208)
         at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1300)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
         at OA.jspService(_OA.java:204)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
         at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:198)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
         at RF.jspService(_RF.java:225)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:889)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: oracle.classloader.util.AnnotatedClassNotFoundException:
         Missing class: jxl.JXLException
         Dependent class: oracle.jbo.common.java2.JDK2ClassLoader
         Loader: oacore.root:0.0.0
         Code-Source: /dpet1i/applmgr/common/java/classes/
         Configuration: <library> in /dpet1i/applmgr/common/webapps/oacore/
    This load was initiated at oacore.root:0.0.0 using the Class.forName() method.
    The missing class is not available from any code-source or loader in the system.
         at oracle.classloader.PolicyClassLoader.handleClassNotFound(PolicyClassLoader.java:2078)
         at oracle.classloader.PolicyClassLoader.internalLoadClass(PolicyClassLoader.java:1679)
         at oracle.classloader.PolicyClassLoader.loadClass(PolicyClassLoader.java:1635)
         at oracle.classloader.PolicyClassLoader.loadClass(PolicyClassLoader.java:1620)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
         ... 68 more
    JBO-30003: The application pool (vmohspetm001.oracleoutsourcing.comDPET1I11710xx.oracle.apps.ak.xxgl.MapAM) failed to checkout an application module due to the following exception:
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: java.lang.NoClassDefFoundError, msg=jxl/JXLException
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:2002)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:619)
    ## Detail 0 ##
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: java.lang.NoClassDefFoundError, msg=jxl/JXLException
         at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:545)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2094)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:889)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:619)
    ## Detail 0 ##
    java.lang.NoClassDefFoundError: jxl/JXLException
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:247)
         at oracle.jbo.common.java2.JDK2ClassLoader.loadClassForName(JDK2ClassLoader.java:38)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: oracle.classloader.util.AnnotatedClassNotFoundException:
         Missing class: jxl.JXLException
         Dependent class: oracle.jbo.common.java2.JDK2ClassLoader
         Loader: oacore.root:0.0.0
         Code-Source: /dpet1i/applmgr/common/java/classes/
         Configuration: <library> in /dpet1i/applmgr/common/webapps/oacore/
    This load was initiated at oacore.root:0.0.0 using the Class.forName() method.
    The missing class is not available from any code-source or loader in the system.
         at oracle.classloader.PolicyClassLoader.handleClassNotFound(PolicyClassLoader.java:2078)
         at oracle.classloader.PolicyClassLoader.internalLoadClass(PolicyClassLoader.java:1679)
         at oracle.classloader.PolicyClassLoader.loadClass(PolicyClassLoader.java:1635)
         at oracle.classloader.PolicyClassLoader.loadClass(PolicyClassLoader.java:1620)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
         ... 68 more

    Syed,
    Thank you for the reply.
    Were you following some documentation from Oracle related to R12? What was that?
    I guess you can place your class files anywhere but just update the CLASSPATH accordingly? Is it correct or wrong? Because I am hearing different opinions and some people talk about XBOL_TOP, some mention JAVA_TOP etc...
    And in your case all you did was place the class files where you said and appended the entry to the CLASSPATH, bounced apache, correct?
    Please let me know.
    Thank you
    Anatoliy

  • "Unable to load DLL '/system/usr/lib/libidlprinter.so': The specified module could not be found. (Exception from HRESULT: 0x8007007E)"}

    I am using intermec printer (directly loading to the printer no system used for printing) for this program and if i run this,i'm getting this below error
    "Unable to load DLL '/system/usr/lib/libidlprinter.so': The specified module could not be found. (Exception from HRESULT: 0x8007007E)"}
    any help on this .........
    Thanks in advance.
    using System.Globalization;
    using Intermec.Printer;
    using System;
    using System.IO;
    using System.Threading;
    class TestCommunicationUSBHost
        static UI.Canvas _canvas;
        static UI.Keypad _keypad;
        static UI.Canvas.Text _exitInstruction;
        static UI.Canvas.Text _appliCationTitle;
        // static UI.Canvas.Text _companyname;
        static string _operatorCodeValue;
        static UI.Canvas.Text _operatorCodeDisplayText;
        private const string operatorCodeDisplayHeader = "SCAN Code: ";
        static PrintControl printControl = new PrintControl();
        static Drawing drawing = new Drawing();
        private static bool _isExitKeyPressed = false;
      //  private static Communication.USBHost _usbHost;
        static int Main(string[] args)
            // Init new UI canvas
            _canvas = new UI.Canvas();
            // Set up some colors to use
            Color white = new Color(255, 255, 255, 255);
            Color blue = new Color(50, 100, 150);
            // Add UI black background
            UI.Canvas.Rectangle bg = new UI.Canvas.Rectangle(0, 0, _canvas.Width, _canvas.Height, blue);
            _canvas += bg;
            // Add Line
            UI.Canvas.Line ln = new UI.Canvas.Line(10, 35, 300, 35, white);
            _canvas += ln;
            // _companyname = new UI.Canvas.Text(30, 45, "KEYBORD DEMO", "Univers Bold", 18, white);
            // _canvas += _companyname;
            // Add UI keycode text
            _exitInstruction = new UI.Canvas.Text(20, 200, "Press [F4] to EXIT.", "Univers Bold", 18, white);
            _canvas += _exitInstruction;
            _appliCationTitle = new UI.Canvas.Text(05, 05, " A1 Technologies", "Univers Bold", 23, white);
            _canvas += _appliCationTitle;
            _operatorCodeDisplayText = new UI.Canvas.Text(20, 100, operatorCodeDisplayHeader, "Univers Bold", 20, white);
            _canvas += _operatorCodeDisplayText;
            // Set up keypad event handler
            _keypad = new UI.Keypad();
            _keypad.KeyDown += new UI.Keypad.KeyEventHandler(KeyHandler);
            // Set up timer event handler
            UI.Canvas.Timer timer = new UI.Canvas.Timer();
            timer.Interval = 1000;
            timer.Tick += new UI.Canvas.TimerEventHandler(TimerHandler);
            timer.Start();
            //int USBHost port o or Setup USBHost
            Communication.USBHost _usbHost = new Communication.USBHost("/dev/ttyUSB0");
            _usbHost.Open();
            // Enter UI main loop
            _canvas.Run();
            // Cleanup UI
            _canvas.Dispose();
            _keypad.Dispose();
            return 0;
        public static void KeyHandler(Object o, UI.Keypad.KeyEventArgs eventArgs)
            int keycode;
            keycode = eventArgs.KeyChar;
            if (keycode == 4)
                _isExitKeyPressed = true;
                return;
        public static void TimerHandler(Object obj, UI.Canvas.TimerEventArgs eventArgs)
            if (_isExitKeyPressed)
                UI.Canvas.Timer timer = (UI.Canvas.Timer)obj;
                timer.Stop();
                _canvas.Exit();
            else
                // Open the first USB host device and read any data sent
                Communication.USBHost usbHost = new Communication.USBHost("/dev/ttyUSB0");
                usbHost.Open();
                if (usbHost.IsOpen)
                    Console.WriteLine("Opened /dev/ttyUSB0 ({0})", usbHost.HIDName);
                    FileStream fileStream = usbHost.GetStream();
                    try
                        int timeout = 0;
                        int i;
                        while (timeout < 5)
                            // Console.WriteLine("Exiting in {0} secs", 10 - timeout);
                            Byte[] bytes = new Byte[256];
                            if ((i = fileStream.Read(bytes, 0, bytes.Length)) > 0)
                                // string data = System.Text.Encoding.ASCII.GetString(bytes, 0, bytes.Length);
                                string data = System.Text.Encoding.ASCII.GetString(bytes, 0, i++);
                                _operatorCodeValue = data;
                                // _operatorCodeValue = _operatorCodeValue + data;
                                _operatorCodeDisplayText.Data = operatorCodeDisplayHeader + _operatorCodeValue.Substring(_operatorCodeValue.Length - 7, 7);
                                int leftCordinate = 40;
                                drawing.Clear();
                                Drawing.Text line1Text = new Drawing.Text();
                                line1Text.Point = new Point(leftCordinate + 30, 40);
                                line1Text.Data = _operatorCodeValue.Substring(_operatorCodeValue.Length - 7, 7);
                                line1Text.Height = 18;
                                line1Text.FontName = "CG Times Bold";
                                drawing += line1Text;
                                drawing.PartialRendering = true;
                                printControl.PrintFeed(drawing, 4);
                            else
                                Thread.Sleep(1000);
                                timeout++;
                    catch (Exception ex)
                        Console.WriteLine("Exception reading /dev/ttyUSB0: {0}", ex.Message);
                // Wait a short while
                Thread.Sleep(1000);
                // Clean up 
               // usbHost.Dispose();
            return;

    Hiya,
     The error is because the app tried to import that driver but it was not found. So, you will need
    to recheck your project setup, provide locations for imports, etc. I am not familar with Intermec Printer.
    The code snippet does not show any information about the DLL import, check there too.
    Hope this helps. :)

  • Oraoledbpus.dll: The specified module could not be found

    We are trying to access an Oracle 9.1 database through a Crystal report that uses the Oracle ODBC driver v9.02. The report is generated through an ASP page running on IIS 6 and a Windows 2003 server.
    We get a popup on the server console intermittently with the following error:
    Oraoledbpus.dll: The specified module could not be found
    We have checked the security settings on the Oracle Home directory and assigned appropriate access to all the following:
    Administrators
    SYSTEM
    Authenticated Users
    IUSR
    ASPNET
    We have also checked that the Oracle Home bin directory is in the PATH. This dll does exist in the bin directory. When the report is run in the Crystal Reports designer there is no problem. The strange things is that the Data Source used by the report is ODBC and not Ole DB.
    Any ideas or suggestions would be much appreciated.

    Hello buddy!
    Make sure there is no dll dependence missing. You can try using Dependency walk tool.
    Igor Monteiro

  • DlLoadLib: dlopen()= Could not load module

    When are the db6 libraries and binaries loaded? It would appear as if the db6 binaries are not loaded on this machine. Are they loaded as part of the Central Instance install - or perhaps the database instance installation.....
    The file listed below does not exist - nor do the db6 executables that would normally be found under /sapmnt/<SID>exe
    disp+work information from my server
    kernel release                700
    kernel make variant           700_REL
    compiled on                   AIX 2 5 005DD9CD4C00
    compiled for                  64 BIT
    compilation mode              UNICODE
    compile time                  May 21 2007 20:41:26
    Thu Dec 27 14:48:17 2007
    ERROR => DlLoadLib: dlopen()= Could not load module /usr/sap/UV3/SYS/exe/run/dbdb6slib.o.
    System error: No such file or directory -> DLENOACCESS (2,No such file or directory) [dlux.c       314]
    update level                  0
    patch number                  111
    source id                     0.111
    supported environment
    database (SAP, table SVERS)   700
    operating system
    AIX 1 5
    AIX 2 5
    AIX 3 5

    Hi Timothy,
    SAP Executables like disp+work, R3trans, R3load, tp, etc. that connect to the database load the SAP database interface library ( dbdb6slib.* ).
    The are looking for this library in the current path or in the directory indicated by DIR_LIBRARY. In your case the SAP executable tries to load /usr/sap/UV3/SYS/exe/run/dbdb6slib.o .
    The SAP database interface library itself dynamically loads the DB2 CLI libraries. If you are using a DB2 runtime client the DB2 CLI libraries ( libdb2.a and dependent libraries ) are expected to be located in ~($DB2INSTANCE)/sqllib/lib . This is typically /db2/db2<dbname>/sqllib/lib.
    Only if libdb2.a is not found in this path LD_LIBRARY_PATCH or LIBPATH will be searched.
    The library search path is automatically assembled by the SAP executables from DB2INSTANCE which is set by SAPINST. You do not need to include the path to the DB2 libraries in LD_LIBRARY_PATCH or LIBPATH explicitly.  On the other hand if you accidently include the wrong path in  LD_LIBRARY_PATCH or LIBPATH , the SAP executable will still try to load ~($DB2INSTANCE)/sqllib/lib/libdb2.a but the dependent libraries of libdb2.a may be taken from the wrong path.
    Regards
                  Frank

Maybe you are looking for

  • Error message in CPS Manual intervention window

    Hi All, In Redwood CPS, we get the following error message under the Manual intervention filter in Job monitor. JCS-122035: Unable to persist: JCS-XXXXX: @locale2@:(com.redwood.scheduler.exception.Class.persistence.api.PersistenceException$AmbiguousF

  • Adobe flash updater appears to lock user profile files in Windows 7

    Hello All, I don't own any Adobe products, but I wanted to put this up so that others who run into this issue can find it, and hopefully Adobe will look into it if it's common. This evening, I had just restarted my computer (Windows 7 RC), and after

  • Trying to use Webutil

    Hi all, I'm just trying to use webutil, following these steps: -Installing webutil according webutil manual - Attach webutil.pll on my form - Copy webutil object group from webutil.olb to my form.Notice that, when i'm trying subclass it, it return no

  • Trouble with Zen Microph

    I'm having trouble installing the Zen Microphoto drivers on my computer, i have searched the net and it seems like a commmon problem. Does anyone have any ideas on how to fix it.

  • Combobox mit auswahl aus externer liste

    Hallo, ich habe folgendes Problem in DIAdem 11 Ich möchte über einen Dialog (Test.sud), welches drei ComBoxen enthält, unterschiedliche Materialien für eine weitere Auswertung auswählen können. Hier gebe ich über eine externe Datei die Materialauswah