Incompatible cygwin .dll -- incompatible per_process info 0 != 168

Hi all,
I am working on a Java program that makes a call through JNI to a C++ library. The code works fine in Linux (compiled with g++), but I am stuck with a windows-related problem.
On windows, the compilation of the dll is made using the cygwin environment. The makefile has been changed so the includes for jni.h are satisfied. The compilation using g++ on cygwin produces a .dll file that seems to be well-formed
I have also introduced instructions to load: efsadu.dll, msjava.dll, cygwin1.dll, cygcrypto-0.9.8.dll, cygiconv-2.dll, cygssl-0.9.8.dll and cygz.dll in the Java class with the native method in order to solve dependency problems.
The trace for the problem is:
131 [main] ? (756) C:\Archivos de programa\Java\jdk1.6.0\bin\javaw.exe: *** fatal error - Incompatible cygwin .dll -- incompatible per_process info 0 != 168
The error is reported during the execution of the static part of the class in charge of loading the dlls.
Any help will be appreciated :)
Thanks in advance for reading this post.
Daniel

Googling produces this....
http://cygwin.com/ml/cygwin/2007-01/msg00336.html

Similar Messages

  • Using a cygwin DLL in LabVIEW 7.0

    Hallöchen!
    I try to use a function from a cygwin DLL in a LabVIEW 7.0 VI. So
    I wrote
    void funcName(double values[], long number_values)
    for (int i=0; i < number_values; i++) values[i] /= 2.0;
    to the file test.cc and said (cygwin gcc 3.3.1)
    gcc -c test.cc
    gcc -shared -o hall.dll test.o
    Then I included it as a shared DLL in LabVIEW, added the correct
    parameter sequence and return value. The name of the function was
    a little bit different (Z8funcNamePdl).
    But: LabVIEW crashes every single time. Not matter what I say about
    calling convention or reentrance. As soon as the "configure" window
    is closed, *all* LabVIEW windows are closed.
    What am I doing wrong?
    Thank you!
    Tschö,
    Torsten.
    Torsten Bronger, aquisgrana, europa
    vetus

    Hallöchen!
    LarsRoe writes:
    > [...] LabVIEW arrays have a different structure than the
    > traditional C arrays. As a quick test, try passing in a single
    > DBL value by pointer for the first argument, and 1 for the second
    > argument.
    Even a "void Test()" lets LabVIEW crash. I now say
    extern "C" {
    void Test();
    void Test() {
    return;
    > The prototype in your C function needs to match the prototype you
    > get from the "Create C File..." Dialog.
    Granted, but quoting the gcc manual: "Good compilers never crash."
    I didn't *start* the VI after all.
    Tschö,
    Torsten.
    Torsten Bronger, aquisgrana, europa vetus

  • Dll on Tomcat 6 got UnsatisfiedLinkError ... Can't find dependent libraries

    I created a dll file and it ran with no errors on the command line. But when i deployed it together with the java class file over to Tomcat 6.0\lib and ran it with a web application, Tomcat's log file reported:
    Exception in thread "Thread-12" java.lang.UnsatisfiedLinkError: C:\Program Files\Apache Software Foundation\Tomcat 6.0\lib\Binless.dll: Can't find dependent libraries
         at java.lang.ClassLoader$NativeLibrary.load(Native Method)
         at java.lang.ClassLoader.loadLibrary0(Unknown Source)
         at java.lang.ClassLoader.loadLibrary(Unknown Source)
         at java.lang.Runtime.loadLibrary0(Unknown Source)
         at java.lang.System.loadLibrary(Unknown Source)
         at jni.server.Binless.<clinit>(Unknown Source)
         at org.brainml.analysisserver.queue.ProcessItemThread.run(ProcessItemThread.java:57)
    Here is what I did:
    Step 1: Compile and manifest
    "%MSVCDir%\bin\cl.exe" /I"%JAVA_HOME%\include" /I"%JAVA_HOME%\include\win32" /MD /LD /FeBinless.dll ../info/binless/jni_binless.c ../jni_shared/jni_gen_c.c ../jni_entropy/jni_entropy_c.c ../../entropy/entropy_nsb_c.cpp /link libxml2.lib libgsl.a libgslcblas.a >> binless-out.txt
    mt.exe -manifest Binless.dll.manifest -outputresource:Binless.dll;2
    The operating system is Windows XP and has the following environment variables:
    PATH=%JAVA_HOME%\bin;%LIBXMLDir%\bin;%ICONVDir%\bin;%GNUWINDir%\bin;%WINSDKDir%\bin;%MSVCDir%\bin;%MSVCDir%\..\Common7\IDE;%ZLIBDir%\bin;%systemroot%\system32;%systemroot%;%systemroot%\system32\wbem
    INCLUDE=%WINSDKDir%\include;%GNUWINDir%\include;%MSVCDir%\include;%MSVCDir%\PlatformSDK\include;%JAVA_HOME%\include;%JAVA_HOME%\include\win32;%LIBXMLDir%\include;%ICONVDir%\include;%ZLIBDir%\include
    LIB=%WINSDKDir%\lib;%GNUWINDir%\lib;%MSVCDir%\lib;%MSVCDir%\PlatformSDK\lib;%LIBXMLDir%\lib;%ICONVDir%\lib;%ZLIBDir%\lib
    where:
    GNUWINDir=c:\project\lib\GnuWin32
    ZLIBDir=c:\project\lib\zlib
    ICONVDir=c:\project\lib\iconv
    LIBXMLDir=c:\project\lib\libxml2
    WINSDKDir=C:\Program Files\Microsoft SDKs\Windows\v6.0A
    MSVCDir=C:\Program Files\Microsoft Visual Studio 9.0\VC
    Step 2: Compile the Java jni code
    javac -d ..\classes ..\server\Binless.java
    Step 3: Ran the code
    java -classpath ..\classes jni.test.test_binless
    Successful with no errors.
    Step 4: Copied Binless.dll and Binless.class in a jar file (Binless.dll NOT in the jar file) to Tomcat 6.0\lib, and then ran a web application that called the Binless class.
    Got UnsatisfiedLinkError (see above) in Tomcat's log file.
    Am I missing something? Any help is greatly appreciated. Thank you.

    Problem:- Hi i was trying to gererate a dll through make file using CL command using visual studio 2005 on windows 2008 (64 bit) machine. Although i was able to generate DLL file but while using this DLL file by JNI it was throwing can't find dependent libraries.
    1. I used Dependency walker to check for dependent dll's(error on msvcr80.dll and etc).
    2. On visual studio 2005 there are certain things: Visit link http://msdn.microsoft.com/en-us/library/ms235342(v=vs.80).aspx
    Solution:- I have added mt.exe -manifest ../../generated/MyLibrary.dll.manifest - outputresource:"../../generated/MyLibrary.dll;2" just after CL command ends. it runs successfully....
    cheers
    Abi...

  • Debugging a JNI DLL created with Visual C++

    Hello.
    Due to the necessary libraries, I need to create a DLL in Visual C++ to be called from my Java class:
    System.loadLibrary("my_dll_name");
    But I've got a problem: I'm newbie in Visual C++ and I would like to debug the DLL, so when I press F5 (Go for Debug mode), I get the message "Please specify the executable file". Obviously, I've got a DLL, not an .exe or .com file.
    I would be extremely obliged if anybody could share any experience.
    Thank you very much.

    What you nee to do is this:
    Run your java app (in an IDE if poss.) and have it pause at some point (if its a command line app., wait for a key, if its a Swing app, you're ok, just wait for the app. to appear. Now start VC6 and go
    menus:
    Build/StartDebug/Attach to process. Ther should be one process calleed java. Attach to that. If your DLL has debug info in it, you should be able to navigae to the source and set breakpoints etc.
    Alternativly, you could just put OutputDebugString(...) (this is a Win32 function) statements in your DLL and use DBMON.EXE (from the win32 SDK) to look at the output.

  • Problem in installing j2sdk on cygwin-a-top-windowsXP

    Sir/madam,
    I have cygwin installed on windowsXP. I am new to java. I needed j2sdk for a program and I downloaded the Linux .bin file "j2sdk-1_4_2_07-linux-i586-rpm.bin". I tried to use "./ " installation method as suggested on the site, but got the following messeges after agrreeing to licence terms:
    trap: bad signal HUP
    Unpacking..
    Checksumming...
    0
    0
    Extracting...
    ./install.sfx.924 not found
    Done
    But nothing was installed in the folder where I ran this command. Please tell me the solution at the earliest. Whether I downloaded the wrong file for Cygwin-win installation or something else is there. I have even tried the simple bin file but same problem exists.
    Thanking in advance.
    Rohit Thakkar

    Perhaps when flaming about what cygwin is or is not one should consider how it is used. Some folks take their unixy source and compile it, linking with the cygwin dll. But others of us live in a bash or ksh shell in an xterm, all UNDER CYGWIN ON WINDOWS. The problems folks have is that so many proprietary...uh...things, like Javac/java have hard coded methodologies, such as depending on a %PATH% vs. $PATH...Slash vs. backslash. Here's what is probably what should be known by you superdeduper portablility language lovers:
    java -classpath `cygpath -wp $CLASSPATH` [arguments]
    or
    java -classpath $(cygwath -wp $CLASSPATH) GoodByeCruelWorld.class
    Man page for cygpath...
    CYGPATH(1) CYGWIN CYGPATH(1)
    NAME
    cygpath - Convert Unix and Windows format paths, or output system path
    information
    SYNOPSIS
    cygpath (-d|-m|-u|-w|-t TYPE) [-f FILE] [OPTION]... NAME...
    cygpath [-c HANDLE]
    cygpath [-ADHPSW]
    OPTIONS
    Output type options:
    -d, --dos
    print DOS (short) form of NAMEs (C:\PROGRA~1\)
    -m, --mixed
    like --windows, but with regular slashes (C:/WINNT)
    -M, --mode          report  on  mode  of  file  (currently  binmode  or
    textmode)
    -u, --unix
    (default) print Unix form of NAMEs (/cygdrive/c/winnt)
    -w, --windows
    print Windows form of NAMEs (C:\WINNT)
    -t, --type TYPE
    print TYPE form: 'dos', 'mixed', 'unix', or 'windows'
    Path conversion options:
    -a, --absolute
    output absolute path
    -l, --long-name
    print Windows long form of NAMEs (with -w, -m only)
    -p, --path
    NAME is a PATH list (i.e., '/bin:/usr/bin')
    -s, --short-name
    print DOS (short) form of NAMEs (with -w, -m only)
    System information:
    -A, --allusers
    use `All Users' instead of current user for -D, -P
    -D, --desktop
    output `Desktop' directory and exit
    -H, --homeroot
    output `Profiles' directory (home root) and exit
    -P, --smprograms
    output Start Menu `Programs' directory and exit
    -S, --sysdir
    output system directory and exit
    -W, --windir
    output `Windows' directory and exit
    Other options:
    -f, --file FILE
    read FILE for input; use - to read from STDIN
    -o, --option
    read options from FILE as well (for use with --file)
    -c, --close HANDLE
    close HANDLE (for use in captured process)
    -i, --ignore
    ignore missing argument
    -h, --help
    output usage information and exit
    -v, --version
    output version information and exit
    DESCRIPTION
    The cygpath program is a utility that converts Windows native file-
    names to Cygwin POSIX-style pathnames and vice versa. It can be used
    when a Cygwin program needs to pass a file name to a native Windows
    program, or expects to get a file name from a native Windows program.
    Alternatively, cygpath can output information about the location of
    important system directories in either format.
    The -u and -w options indicate whether you want a conversion to UNIX
    (POSIX) format ( -u) or to Windows format ( -w). Use the -d to get
    DOS-style (8.3) file and path names. The -m option will output Win-
    dows-style format but with forward slashes instead of backslashes.
    This option is especially useful in shell scripts, which use back-
    slashes as an escape character.
    In combination with the -w option, you can use the -l and -s
    options to use normal (long) or DOS-style (short) form. The -d option
    is identical to -w and -s together.
    Caveat: The -l option does not work if the check_case parameter of
    CYGWIN is set to strict, since Cygwin is not able to match any Win-
    dows short path in this mode.
    The -p option means that you want to convert a path-style string
    rather than a single filename. For example, the PATH environment vari-
    able is semicolon-delimited in Windows, but colon-delimited in UNIX.
    By giving -p you are instructing cygpath to convert between these
    formats.
    The -i option supresses the print out of the usage message if no file-
    name argument was given. It can be used in make file rules converting
    variables that may be omitted to a proper format. Note that cygpath
    output may contain spaces (C:\Program Files) so should be enclosed in
    quotes.
    cygpath usage
    #!/bin/sh
    if [ "${1}" = "" ];
    then
    XPATH=".";
    else
    XPATH="$(cygpath -w "${1}")";
    fi
    explorer $XPATH &
    The capital options -D, -H, -P, -S, and -W output directories used
    by Windows that are not the same on all systems, for example -S might
    output C:\WINNT\SYSTEM32 or C:\WINDOWS\SYSTEM. The -H shows the Win-
    dows profiles directory that can be used as root of home. The -A
    option forces use of the "All Users" directories instead of the cur-
    rent user for the -D and -P options. On Win9x systems with only a
    single user, -A has no effect; -D and -AD would have the same out-
    put. By default the output is in UNIX (POSIX) format; use the -w or
    -d options to get other formats.
    COPYRIGHT
    Cygwin is Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
    Red Hat, Inc.
    Cygwin is Free software; for complete licensing information, refer to:
    http://cygwin.com/licensing.html
    MAINTAINER
    This man page was written and is maintained by Joshua Daniel Franklin,
    [email protected]
    SEE ALSO
    The full documentation to the Cygwin Utilities is maintained on the web
    at:
    http://cygwin.com/cygwin-ug-net/using-utils.html
    The website is updated more frequently than the man pages and should be
    considered the authoritative source of information.
    2006 Aug 09 CYGPATH(1)

  • Cl.exe and mt.exe but got "...MSVCR80.dll was not found. Re-installing..."

    The compile and manifest were completed with no complaints but when I ran the code, I got "This application has failed to start because MSVCR80.dll was not found. Re-installing the application may fix this problem.".
    Here is what I did:
    Step 1: Compile and manifest
    "%MSVCDir%\bin\cl.exe" /I"%JAVA_HOME%\include" /I"%JAVA_HOME%\include\win32" /MD /LD /FeBinless.dll ../info/binless/jni_binless.c ../jni_shared/jni_gen_c.c ../jni_entropy/jni_entropy_c.c ../jni_input/jni_input_c.c ../info/binless/binless_c.c ../../info/binless/BinlessOpenComp.c ../../info/binless/BinlessWarpComp.c ../../info/binless/BinlessEmbedComp.c ../../info/binless/BinlessInfoComp.c ../../shared/MatrixToHist2DComp.c ../../shared/Info2DComp.c ../../shared/sort_c.c ../../shared/gen_c.c ../../shared/hist_c.c ../../input/input_c.c ../../entropy/entropy_c.c ../../entropy/entropy_bub_c.c ../../entropy/entropy_chaoshen_c.c ../../entropy/entropy_ma_c.c ../../entropy/entropy_tpmc_c.c ../../entropy/entropy_jack_c.c ../../entropy/entropy_plugin_c.c ../../entropy/entropy_ww_c.c ../../entropy/variance_jack_c.c ../../entropy/variance_boot_c.c ../../entropy/entropy_nsb_c.cpp /link libxml2.lib libgsl.a libgslcblas.a >> binless-out.txt
    mt.exe -manifest Binless.dll.manifest -outputresource:Binless.dll;2
    The operating system is Windows XP and has the following environment variables:
    PATH=%JAVA_HOME%\bin;%LIBXMLDir%\bin;%ICONVDir%\bin;%GNUWINDir%\bin;%WINSDKDir%\bin;%MSVCDir%\bin;%MSVCDir%\..\Common7\IDE;%ZLIBDir%\bin;%systemroot%\system32;%systemroot%;%systemroot%\system32\wbem
    INCLUDE=%WINSDKDir%\include;%GNUWINDir%\include;%MSVCDir%\include;%MSVCDir%\PlatformSDK\include;%JAVA_HOME%\include;%JAVA_HOME%\include\win32;%LIBXMLDir%\include;%ICONVDir%\include;%ZLIBDir%\include
    LIB=%WINSDKDir%\lib;%GNUWINDir%\lib;%MSVCDir%\lib;%MSVCDir%\PlatformSDK\lib;%LIBXMLDir%\lib;%ICONVDir%\lib;%ZLIBDir%\lib
    where:
    GNUWINDir=c:\project\lib\GnuWin32
    ZLIBDir=c:\project\lib\zlib
    ICONVDir=c:\project\lib\iconv
    LIBXMLDir=c:\project\lib\libxml2
    WINSDKDir=C:\Program Files\Microsoft SDKs\Windows\v6.0A
    MSVCDir=C:\Program Files\Microsoft Visual Studio 9.0\VC
    Step 2: Compile the Java jni code
    javac -d ..\classes ..\server\Binless.java
    Step 3: Run the code
    java -classpath ..\classes jni.test.test_binless
    Got: This application has failed to start because MSVCR80.dll was not found. Re-installing the application may fix this problem.
    Any help is greatly appreciated. Thanks.

    This is a Windows side-by-side issue not a JNI issue. As such it doesn't really
    belong in this forum except as an object lesson to people who create JNI's.
    I had these issues when I moved to Visual Studio 2005 - which, oddly enough,
    was the version of the IDE where SxS support was not only introduced, but
    enforced.
    The fact that you tried to put a SxS folder in the PATH tells me you know
    nothing about how SxS and manifests works. You need to learn about these
    things and then your problems will become blushingly obvious.
    The Binless.dll manifest must be embedded, and it must contain dependency
    entries that specify the SxS requirements, including the version(s) of the
    dependent libraries. Secondly, the specific version of the libraries must be
    installed on the target system.
    My guess is your manifest specifies a CRT version that's not installed on your
    system and that is why the system is complaining. Look for the
    Binless.dll.intermediate.manifest file. It will tell you what your dll expects.
    Here's an example of a dll (debug version) manifest:
    <?xml version='1.0' encoding='UTF-8' standalone='yes'?>
    <assembly xmlns='urn:schemas-microsoft-com:asm.v1' manifestVersion='1.0'>
      <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
        <security>
          <requestedPrivileges>
            <requestedExecutionLevel level='asInvoker' uiAccess='false' />
          </requestedPrivileges>
        </security>
      </trustInfo>
      <dependency>
        <dependentAssembly>
          <assemblyIdentity type='win32' name='Microsoft.VC90.DebugCRT' version='9.0.30729.4148' processorArchitecture='x86' publicKeyToken='1fc8b3b9a1e18e3b' />
        </dependentAssembly>
      </dependency>
      <dependency>
        <dependentAssembly>
          <assemblyIdentity type='win32' name='Microsoft.VC90.DebugMFC' version='9.0.30729.4148' processorArchitecture='x86' publicKeyToken='1fc8b3b9a1e18e3b' />
        </dependentAssembly>
      </dependency>
      <dependency>
        <dependentAssembly>
          <assemblyIdentity type='win32' name='Microsoft.VC90.ATL' version='9.0.30729.4148' processorArchitecture='x86' publicKeyToken='1fc8b3b9a1e18e3b' />
        </dependentAssembly>
      </dependency>
    </assembly>Get [Dependency Walker|http://www.dependencywalker.com/] it's free. You will need it at some point.
    Cheers,
    Mike

  • Unable to install Oracle 10.2.0.2 client

    I am trying to install the Oracle 10.2.0.2 client but it gives an internal error and the installation gets terminated.It creates a log and .err file I am pasting the contents of the log file. Please let me know if any of you can help.
    Using paramFile: C:\TEMP\client\install\oraparam.ini
    No pre-requisite checks found in oraparam.ini, no system pre-requisite checks will be executed.
    The commandline for unzip:
    C:\TEMP\client\install\unzip -qqq ../stage/Components/oracle.swd.jre/1.4.2.8.0/1/DataFiles/"*.jar" -d "C:\DOCUME~1\smukherj\LOCALS~1\Temp\1\OraInstall2006-12-04_04-31-25PM"
    The commandline for unzip:
    C:\TEMP\client\install\unzip -qqq ..\stage\Components\oracle.swd.oui\10.2.0.1.0\1\DataFiles\/"*.jar" -d "C:\DOCUME~1\smukherj\LOCALS~1\Temp\1\OraInstall2006-12-04_04-31-25PM"
    The commandline for unzip:
    C:\TEMP\client\install\unzip -qqq ..\stage\Components\oracle.swd.oui.core\10.2.0.1.0\1\DataFiles\/"*.jar" -d "C:\DOCUME~1\smukherj\LOCALS~1\Temp\1\OraInstall2006-12-04_04-31-25PM"
    The number of files bootstrapped for the jre is 584.
    The number of files bootstrapped for the oui is 100.INFO: Environment Variables:
    INFO:      ORACLE_HOME =
    INFO:      PATH = C:\oracle\product\10.2.0\client_2;C:\oracle\product\10.2.0\client_1;T:\SDCHS20N440\Oracle\agent10g\jlib;T:\SDCHS20N440\Oracle\agent10g\bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\Program Files\IBM\Director\bin;C:\PROGRA~1\BMCSOF~1\common\globalc\bin\Windows-x86;C:\PROGRA~1\BMCSOF~1\Patrol36\bin;C:\Program Files\Citrix\System32\Citrix\IMA;C:\Program Files\Citrix\System32\Citrix\IMA\Subsystems;C:\WINNT\System32\Citrix\IMA;C:\Program Files\Citrix\system32;C:\PROGRA~1\IBM\SQLLIB\BIN;C:\PROGRA~1\IBM\SQLLIB\FUNCTION;C:\Program Files\Rational\ClearCase\bin;C:\Program Files\Rational\common;C:\Program Files\BMC Software\Patrol36\BEST1\7.2.00\bgs\bin;C:\Program Files\Compuware\Common;
    INFO:      CLASSPATH = .;C:\PROGRA~1\IBM\SQLLIB\java\db2java.zip;C:\PROGRA~1\IBM\SQLLIB\java\db2jcc.jar;C:\PROGRA~1\IBM\SQLLIB\bin;C:\PROGRA~1\IBM\SQLLIB\java\common.jar
    INFO: Username:smukherj
    INFO: Oracle Universal Installer version is 10.2.0.1.0
    INFO: Setting variable 'PREREQ_CONFIG_LOCATION' to ''. Received the value from variable association.
    INFO: Reader/Writer 'oracle.sysman.oii.oiic.OiicGlobalContextXMLReaderWriter' was created.
    INFO:
    *** Welcome Page***
    INFO: Unable to read T:/SDCHS20N440/Oracle/agent10g/inventory/ContentsXML/comps.xml. Some inventory information may be lost.
    INFO: Unable to read C:/oracle/product/10.2.0/client_1/inventory/ContentsXML/comps.xml. Some inventory information may be lost.
    INFO: Unable to read C:/oracle/product/10.2.0/client_2/inventory/ContentsXML/comps.xml. Some inventory information may be lost.
    INFO: Initializing install inventory
    INFO: Setting up install inventory
    INFO:
    *** Specify Source Location Page***
    INFO: Initializing OUI Shiphome access setup
    INFO: DefaultifyLangiages : Value of oracle.installer.defaultifyLanguages : false
    INFO: Performing operation for OUI Shiphome access setup
    INFO:
    *** Select a Product to Install Page***
    INFO: Setting the 'TopLevelComp ( ToplevelComp )' property to 'oracle.client, 10.2.0.1.0, >0.0.0.0.0, [ 912 ][OH:2]'. Received the value from the default settings.
    INFO:
    *** Select Installation Type Page***
    INFO: Performing operation for OUI Shiphome access setup
    INFO: Setting up install inventory
    INFO: Initializing install inventory
    INFO: Setting up install inventory
    INFO:
    *** Specify Source Location Page***
    INFO: Initializing OUI Shiphome access setup
    INFO: Performing operation for OUI Shiphome access setup
    INFO:
    *** Select a Product to Install Page***
    INFO: Setting the 'TopLevelComp ( ToplevelComp )' property to 'oracle.client, 10.2.0.1.0, >0.0.0.0.0, [ 912 ][OH:2]'. Received the value from the default settings.
    INFO:
    *** Select Installation Type Page***
    INFO: Setting the 'InstallType ( DEP_MODE )' property to 'InstantClient'. Received the value from the UI page.
    INFO: Setting the 'TopLevelInstallType ( TLDepModes )' property to 'InstantClient'. Received the value from the UI page.
    INFO: The selected install type is "InstantClient".
    INFO:
    *** Specify Home Details Page***
    INFO: Setting the 'OracleHome ( ORACLE_HOME )' property to 'C:\oracle\product\10.2.0\client_3'. Received the value from the UI page.
    INFO: Setting the 'OracleHomeName ( ORACLE_HOME_NAME )' property to 'OraClient10g_home3'. Received the value from the UI page.
    INFO: Initializing OUI Oracle Home access setup
    INFO: Setting variable 'ORACLE_HOME' to 'C:\oracle\product\10.2.0\client_3'. Received the value from the UI page.
    INFO: Loading shiphomepropertiesfrom C:\DOCUME~1\smukherj\LOCALS~1\Temp\1\OraInstall2006-12-04_04-31-25PM/shiphomeproperties.xml
    INFO: DefaultifyLangiages : Value of oracle.installer.defaultifyLanguages : false
    INFO: Setting the PROD_HOME variable of 'oracle.client_10.2.0.1.0' to ''. Received the value from the variable calculation.
    INFO: oracle.client Product Location: Empty path specified.
    INFO: Setting the PROD_HOME variable of 'oracle.bali.displayFonts_9.0.2.0.0' to 'C:\oracle\product\10.2.0\client_3/oracle_fonts'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.oem.client_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/sysman'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.oraolap.mgmt_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle_olap_wrksht'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.rdbms.ic_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle.rdbms.ic'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.sqlplus.ic_10.2.0.1.0' to ''. Received the value from the variable calculation.
    INFO: oracle.sqlplus.ic Product Location: Empty path specified.
    INFO: Setting the PROD_HOME variable of 'oracle.ldap.esm_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.has.client_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle_has_client'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.sqlj_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle_java_sqlj'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.bali.jle3_3.0.1.0.0' to 'C:\oracle\product\10.2.0\client_3/jle3'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.swd.oui_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3\oui'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.swd.oui.core_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3\oui'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.swd.opatch_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3\OPatch'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.swd.jre_1.4.2.8.0' to 'C:\oracle\product\10.2.0\client_3\jre\1.4.2'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.ons_10.1.0.3.0' to 'C:\oracle\product\10.2.0\client_3/opmn'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.assistants.acf_10.2.0.1.0' to ''. Received the value from the variable calculation.
    INFO: oracle.assistants.acf Product Location: Empty path specified.
    INFO: Setting the PROD_HOME variable of 'oracle.bali.cabo_2.1.22.0.0' to 'C:\oracle\product\10.2.0\client_3/uix'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.bali.dbui_2.2.13.0.0' to 'C:\oracle\product\10.2.0\client_3/dbui'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.bali.dbui4_4.1.7.0.0' to 'C:\oracle\product\10.2.0\client_3/dbui4'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.bali.ewt_3.4.38.0.0' to 'C:\oracle\product\10.2.0\client_3/ewt'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.bali.help_4.2.6.1.0' to 'C:\oracle\product\10.2.0\client_3/help'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.bali.ice_5.2.3.6.0' to 'C:\oracle\product\10.2.0\client_3/ice'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.bali.jewt_4.2.33.0.0' to 'C:\oracle\product\10.2.0\client_3/jewt'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.bali.jle_2.0.3.0.0' to 'C:\oracle\product\10.2.0\client_3/jle'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.bali.kodiak_1.2.1.0.0I' to 'C:\oracle\product\10.2.0\client_3/kodiak'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.bali.regexp_2.1.9.0.0' to 'C:\oracle\product\10.2.0\client_3/regexp'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.bali.share_1.1.18.0.0' to 'C:\oracle\product\10.2.0\client_3/oracle_tools_share'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.buildtools.common_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle_buildtools_common'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.buildtools.rsf_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle_buildtools_rsf'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.csmig_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle_rdbms_expimp'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.dbjava.common_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle.dbjava.common'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.dbjava.ic_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle_dbjava_ic'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.dbjava.jdbc_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle_dbjava_jdbc'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.dbjava.jdbc12_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle.dbjava.jdbc12'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.dbjava.jdbc14_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle.dbjava.jdbc14'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.dbjava.rsf_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle.dbjava.rsf'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.emdw.emcp_10.2.0.1.0' to ''. Received the value from the variable calculation.
    INFO: oracle.emdw.emcp Product Location: Empty path specified.
    INFO: Setting the PROD_HOME variable of 'oracle.emdw.rsf_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle.emdw.rsf'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.has.common_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle_prod'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.has.rsf_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle_rsf_has_rsf'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.javavm.client_10.2.0.1.0' to ''. Received the value from the variable calculation.
    INFO: oracle.javavm.client Product Location: Empty path specified.
    INFO: Setting the PROD_HOME variable of 'oracle.jdk_1.4.2.0.8' to 'C:\oracle\product\10.2.0\client_3\jdk'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.ldap.admin_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.ldap.client_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.ldap.rsf_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle_ldap_rsf_cmp'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.network.aso_10.2.0.1.0' to ''. Received the value from the variable calculation.
    INFO: oracle.network.aso Product Location: Empty path specified.
    INFO: Setting the PROD_HOME variable of 'oracle.network.client_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle_network_client'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.network.owm_10.2.0.1.0' to ''. Received the value from the variable calculation.
    INFO: oracle.network.owm Product Location: Empty path specified.
    INFO: Setting the PROD_HOME variable of 'oracle.network.rsf_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle.network.rsf'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.network.rsf.ic_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle.network.rsf.ic'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.network.ssl_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle.network.ssl'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.nlsrtl.rsf_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle_nlsrtl_rsf'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.nlsrtl.rsf.lbuilder_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle_nlsrtl_rsf_lbuilder'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.ntoledb_10.2.0.1.0' to ''. Received the value from the variable calculation.
    INFO: oracle.ntoledb Product Location: Empty path specified.
    INFO: Setting the PROD_HOME variable of 'oracle.ntoledb.odp_net_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/ODP.NET'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.ntoramts_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oramts'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.ntrdbms.admin_10.2.0.1.0' to ''. Received the value from the variable calculation.
    INFO: oracle.ntrdbms.admin Product Location: Empty path specified.
    INFO: Setting the PROD_HOME variable of 'oracle.ntrdbms.oraconfig_10.2.0.1.0' to ''. Received the value from the variable calculation.
    INFO: oracle.ntrdbms.oraconfig Product Location: Empty path specified.
    INFO: Setting the PROD_HOME variable of 'oracle.ntrdbms.perfmon_10.2.0.1.0' to ''. Received the value from the variable calculation.
    INFO: oracle.ntrdbms.perfmon Product Location: Empty path specified.
    INFO: Setting the PROD_HOME variable of 'oracle.odbc_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3in'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.odbc.ic_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3in'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.oem.oemlt_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oemlt'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.oo4o_10.2.0.1.0' to ''. Received the value from the variable calculation.
    INFO: oracle.oo4o Product Location: Empty path specified.
    INFO: Setting the PROD_HOME variable of 'oracle.oracore.rsf_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle.oracore.rsf'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.oraolap.api_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle.oraolap.api'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.oraolap.dbscripts_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle_prod'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.ordim.annotator_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle_prod'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.ordim.client_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle.interMedia.imclient'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.perlint_5.8.3.0.2' to 'C:\oracle\product\10.2.0\client_3\perl'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.precomp_10.2.0.1.0' to ''. Received the value from the variable calculation.
    INFO: oracle.precomp Product Location: Empty path specified.
    INFO: Setting the PROD_HOME variable of 'oracle.precomp.common_10.2.0.1.0' to ''. Received the value from the variable calculation.
    INFO: oracle.precomp.common Product Location: Empty path specified.
    INFO: Setting the PROD_HOME variable of 'oracle.precomp.lang_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle_prod'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.precomp.rsf_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle_rsf_precomp_rsf'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.rdbms.crs_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle_prod'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.rdbms.dbscripts_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle_rdbms_dbscripts'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.rdbms.hs_common_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle_rdbms_hs_common'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.rdbms.install.common_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle.rdbms.install.common'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.rdbms.oci_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle_rdbms_oci'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.rdbms.plsql_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle_rdbms_plsql'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.rdbms.rsf_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle.rdbms.rsf'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.rdbms.rsf.ic_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle.rdbms.ic'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.rdbms.rman_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle.rdbms.rman'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.rdbms.util_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle.rdbms.util'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.rsf_10.2.0.1.0' to ''. Received the value from the variable calculation.
    INFO: oracle.rsf Product Location: Empty path specified.
    INFO: Setting the PROD_HOME variable of 'oracle.slax.rsf_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle.slax.rsf'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.sqlj.sqljruntime_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle_java_sqlj_sqljruntime'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.sqlplus_10.2.0.1.0' to ''. Received the value from the variable calculation.
    INFO: oracle.sqlplus Product Location: Empty path specified.
    INFO: Setting the PROD_HOME variable of 'oracle.winprod_10.2.0.1.0' to ''. Received the value from the variable calculation.
    INFO: oracle.winprod Product Location: Empty path specified.
    INFO: Setting the PROD_HOME variable of 'oracle.wwg.plsql_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle_rdbms'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.xdk_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle_prod'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.xdk.parser.java_10.2.0.1.0' to ''. Received the value from the variable calculation.
    INFO: oracle.xdk.parser.java Product Location: Empty path specified.
    INFO: Setting the PROD_HOME variable of 'oracle.xdk.rsf_10.2.0.1.0' to 'C:\oracle\product\10.2.0\client_3/oracle_rsf_rdbms_rsf'. Received the value from the variable calculation.
    INFO: Setting the PROD_HOME variable of 'oracle.java.j2ee.core_10.1.2.0.0' to 'C:\oracle\product\10.2.0\client_3\jdk\jre\lib\ext'. Received the value from the variable calculation.
    INFO: Performing operation for OUI Oracle Home access setup
    INFO: Unable to read C:/oracle/product/10.2.0/client_3/inventory/ContentsXML/comps.xml. Some inventory information may be lost.
    INFO: SRVM ClusterInfo.IsLocalOnly() called. Return value obtained is 'false'.
    INFO: The CRS clusterware location for 'oracle.crs 10.1.0.2.0' is not found.
    INFO: This is not a cluster system.
    INFO: Node selection page will not be shown.
    INFO: Install type for "Oracle Client 10.2.0.1.0 " is "InstantClient".
    INFO: OUI-10066:Not all the dependencies for the component Oracle Client 10.2.0.1.0 could be found. Missing component oracle.doc 10.2.0.1.0.
    INFO: Install type for "Oracle Instant Client 10.2.0.1.0 " is "InstClient".
    INFO: Install type for "Oracle ODBC Driverfor Instant Client 10.2.0.1.0 " is "Typical".
    INFO: Install type for "RDBMS Required Support Files for Instant Client 10.2.0.1.0 " is "Typical".
    INFO: Install type for "SSL Required Support Files for InstantClient 10.2.0.1.0 " is "Typical".
    INFO: Install type for "Oracle JDBC/OCI Instant Client 10.2.0.1.0 " is "Typical".
    INFO: Install type for "SQL*Plus Files for Instant Client 10.2.0.1.0 " is "Typical".
    INFO: Setting the PRE_REQUISITE variable of 'oracle.client_10.2.0.1.0' to 'true'. Received the value from the variable calculation.
    INFO: Setting the PRE_REQUISITE variable of 'oracle.rdbms.ic_10.2.0.1.0' to 'true'. Received the value from the variable calculation.
    INFO: Setting the PRE_REQUISITE variable of 'oracle.odbc.ic_10.2.0.1.0' to 'true'. Received the value from the variable calculation.
    INFO: Setting the PRE_REQUISITE variable of 'oracle.dbjava.ic_10.2.0.1.0' to 'true'. Received the value from the variable calculation.
    INFO: Setting the PRE_REQUISITE variable of 'oracle.network.rsf.ic_10.2.0.1.0' to 'true'. Received the value from the variable calculation.
    INFO: Setting the PRE_REQUISITE variable of 'oracle.rdbms.rsf.ic_10.2.0.1.0' to 'true'. Received the value from the variable calculation.
    INFO: Setting the PRE_REQUISITE variable of 'oracle.sqlplus.ic_10.2.0.1.0' to 'true'. Received the value from the variable calculation.
    INFO:
    *** Language Selection Page***
    INFO: Setting the 'SelectedLanguages ( SELECTED_LANGUAGES )' property to 'en'. Received the value from the default settings.
    INFO:
    *** Specify Local Host Name Page***
    INFO: Setting the 'HostName ( ORACLE_HOSTNAME )' property to 'sdchs20n440.corp.siebel.com'. Received the value from the default settings.
    INFO: Defaulting prerequisite location to 'C:\TEMP\client\stage/prereq'.
    INFO:
    *** Product-Specific Prerequisite Checks Page***
    INFO: Entry point:oracle.client_InstantClient_install
    INFO: Starting Prerequisite checks : Mon Dec 04 16:34:15 IST 2006
    INFO: Checking CertifiedVersions
         This is a prerequisite condition to test whether the Oracle software is certified on the current O/S.
    INFO: Expected result: One of 4.0,4.1,5.0,5.1,5.2
    Actual Result: 5.0
    Check complete. The overall result of this check is: Passed
    INFO: --------------------------------------------------------------------------------
    INFO: Checking ServicePackChecks
         This is a prerequisite condition to test whether the Service Pack level recommended for installing the product is available on the system.
    INFO: Expected result: 1
    Actual Result: 4
    Check complete. The overall result of this check is: Passed
    INFO: --------------------------------------------------------------------------------
    INFO: Checking TotalMemory
         This is a prerequisite condition to test whether the system has sufficient physical memory.
    INFO: Expected result: 128MB
    Actual Result: 2047MB
    Check complete. The overall result of this check is: Passed
    INFO: --------------------------------------------------------------------------------
    INFO: Checking OracleHomeSpace
         This is a prerequisite condition to check whether the specified Oracle Home contains any spaces in the path.
    INFO: Check complete. The overall result of this check is: Passed
    INFO: --------------------------------------------------------------------------------
    INFO: Checking CompatibilityChecks_IC
         This is a prerequisite condition to check whether the Oracle Home specified by the user already contains an installed product which is incompatible with the product being installed.
    INFO: Actual Result: NEW_HOME
    Check complete. The overall result of this check is: Passed
    INFO: --------------------------------------------------------------------------------
    INFO: Prerequisite checks completed : Mon Dec 04 16:34:32 IST 2006
    INFO: *** Entering Component: oracle.client installation
    INFO: Calling Query generalQueries10.1.0.3.0 getOSName
    INFO: Query Returned: NT_X86
    INFO: Setting variable 's_operatingSystem' to 'NT_X86'. Received the value from the variable calculation.
    INFO: Setting variable 's_ntEnvOH' to ''. Received the value from the variable calculation.
    INFO: Calling Query areasQueries10.2.0.1.0 getComponentInstallTypeName
    INFO: Query Returned: InstantClient
    INFO: Setting variable 's_installType' to 'InstantClient'. Received the value from the variable calculation.
    INFO: Calling Query generalQueries10.1.0.3.0 getInstallType
    INFO: Query Returned: InstantClient
    INFO: Setting variable 's_bundleName' to 'IC'. Received the value from the variable calculation.
    INFO: Setting variable 's_OPSSelectedNodes' to ''. Received the value from the variable calculation.
    INFO: Setting variable 'n_TMPDIR_BYTES_REQ' to '0'. Received the value from the variable calculation.
    INFO: Setting variable 'n_TEMP_BYTES_REQ' to '0'. Received the value from the variable calculation.
    INFO: Setting variable 'b_removeNTenvOH' to 'false'. Received the value from the variable calculation.
    INFO: Calling Query generalQueries10.1.0.3.0 isCurrentPlatformInGroup
    platGroup = WINDOWS
    INFO: Query Returned: true
    INFO: Setting variable 'b_isWINDOWS' to 'true'. Received the value from the variable calculation.
    INFO: Calling Query generalQueries10.1.0.3.0 isCurrentPlatformInGroup
    platGroup = UNIX
    INFO: Query Returned: false
    INFO: Setting variable 'b_isUNIX' to 'false'. Received the value from the variable calculation.
    INFO: Setting variable 'b_isOrcaHome' to 'false'. Received the value from the variable calculation.
    INFO: Calling Query generalQueries10.1.0.3.0 getenv
    name = TEMP
    INFO: Query Returned: C:\DOCUME~1\smukherj\LOCALS~1\Temp\1
    INFO: Setting variable 's_TEMP_LOC' to 'C:\DOCUME~1\smukherj\LOCALS~1\Temp\1'. Received the value from the variable calculation.
    INFO: Setting variable 's_OSDUnixMakePath' to '/usr/ccs/bin/make'. Received the value from the variable calculation.
    INFO: Setting variable 'b_isUXW' to 'false'. Received the value from the variable calculation.
    INFO: Setting variable 'b_isIntel_Solaris' to 'false'. Received the value from the variable calculation.
    INFO: Setting variable 'b_isHP' to 'false'. Received the value from the variable calculation.
    INFO: Setting variable 'b_isDG' to 'false'. Received the value from the variable calculation.
    INFO: Calling Query generalQueries10.1.0.3.0 getenv
    name = TEMP
    INFO: Query Returned: C:\DOCUME~1\smukherj\LOCALS~1\Temp\1
    INFO: Setting variable 's_TMPDIR_LOC' to 'C:\DOCUME~1\smukherj\LOCALS~1\Temp\1'. Received the value from the variable calculation.
    INFO: Calling Query generalQueries10.1.0.3.0 getenv
    name = ORACLE_HOME
    INFO: Query Returned:
    INFO: Setting variable 's_ntEnvOH' to ''. Received the value from a code block.
    INFO: Setting value of child variable s_bundleName of oracle.network.aso 10.2.0.1.0 to IC
    INFO: Setting value of child variable s_bundleName of oracle.rdbms.ic 10.2.0.1.0 to IC
    INFO: *** Entering Component: oracle.rdbms.ic installation
    INFO: Calling Query generalQueries10.1.0.3.0 getOSName
    INFO: Query Returned: NT_X86
    INFO: Setting variable 's_operatingSystem' to 'NT_X86'. Received the value from the variable calculation.
    INFO: Setting variable 's_ociBkpFileName' to ''. Received the value from the variable calculation.
    INFO: Setting variable 's_bundleName' to 'IC'. Received the value from variable association.
    INFO: Calling Query generalQueries10.1.0.3.0 isCurrentPlatformInGroup
    platGroup = WINDOWS
    INFO: Query Returned: true
    INFO: Setting variable 'b_isWINDOWS' to 'true'. Received the value from the variable calculation.
    INFO: Calling Query generalQueries10.1.0.3.0 isCurrentPlatformInGroup
    platGroup = UNIX
    INFO: Query Returned: false
    INFO: Setting variable 'b_isUNIX' to 'false'. Received the value from the variable calculation.
    INFO: Setting variable 's_ezLocation' to 'C:\oracle\product\10.2.0\client_3/instantclient'. Received the value from the variable calculation.
    INFO: Setting variable 'b_isSolaris' to 'false'. Received the value from the variable calculation.
    INFO: Setting variable 'b_isHP' to 'false'. Received the value from the variable calculation.
    INFO: Calling Query fileQueries10.1.0.2.0 exists
    filename = C:\oracle\product\10.2.0\client_3\lib\libclntsh.so.10.1
    INFO: Query Returned: false
    INFO: Calling Query fileQueries10.1.0.2.0 exists
    filename = C:\oracle\product\10.2.0\client_3\lib\libclntsh.sl.10.1
    INFO: Query Returned: false
    INFO: Calling Query fileQueries10.1.0.2.0 exists
    filename = C:\oracle\product\10.2.0\client_3\lib\libclntsh.a
    INFO: Query Returned: false
    INFO: Setting variable 'b_clntshExists' to 'false'. Received the value from the variable calculation.
    INFO: Setting variable 'SO_EXT' to '.so'. Received the value from the variable calculation.
    INFO: Setting value of child variable s_bundleName of oracle.odbc.ic 10.2.0.1.0 to IC
    INFO: *** Entering Component: oracle.odbc.ic installation
    INFO: Calling Query WindowsGeneralQueries10.2.0.0.0 getWindowsDirectory
    INFO: Query Returned: C:\WINNT
    INFO: Setting variable 's_windowsSystemRoot' to 'C:\WINNT'. Received the value from the variable calculation.
    INFO: Calling Query WindowsGeneralQueries10.2.0.0.0 getWindowsSystemDirectory
    INFO: Query Returned: C:\WINNT\system32
    INFO: Setting variable 's_windowsSystemDirectory' to 'C:\WINNT\system32'. Received the value from the variable calculation.
    INFO: Setting variable 's_registryRoot' to 'HKEY_LOCAL_MACHINE'. Received the value from the variable calculation.
    INFO: Setting variable 's_bundleName' to 'IC'. Received the value from variable association.
    INFO: Setting variable 's_odbcLocation' to 'C:\oracle\product\10.2.0\client_3\ODBC'. Received the value from the variable calculation.
    INFO: Setting variable 's_odbcKey' to 'software\odbc\odbcinst.ini\Oracle in OraClient10g_home3'. Received the value from the variable calculation.
    INFO: Setting variable 's_netAdminFolder' to 'Oracle - OraClient10g_home3\Network Administration'. Received the value from the variable calculation.
    INFO: Setting variable 's_oracleBin' to 'C:\oracle\product\10.2.0\client_3'. Received the value from the variable calculation.
    INFO: *** Entering Component: oracle.rdbms.rsf.ic installation
    INFO: Calling Query generalQueries10.1.0.3.0 getOSName
    INFO: Query Returned: NT_X86
    INFO: Setting variable 's_operatingSystem' to 'NT_X86'. Received the value from the variable calculation.
    INFO: Setting variable 's_ociBkpFileName' to ''. Received the value from the variable calculation.
    INFO: Setting variable 's_bundleName' to ''. Received the value from the variable calculation.
    INFO: Calling Query generalQueries10.1.0.3.0 isCurrentPlatformInGroup
    platGroup = WINDOWS
    INFO: Query Returned: true
    INFO: Setting variable 'b_isWINDOWS' to 'true'. Received the value from the variable calculation.
    INFO: Calling Query generalQueries10.1.0.3.0 isCurrentPlatformInGroup
    platGroup = UNIX
    INFO: Query Returned: false
    INFO: Setting variable 'b_isUNIX' to 'false'. Received the value from the variable calculation.
    INFO: Setting variable 's_ezLocation' to 'C:\oracle\product\10.2.0\client_3/instantclient'. Received the value from the variable calculation.
    INFO: Setting variable 'b_isSolaris' to 'false'. Received the value from the variable calculation.
    INFO: Setting variable 'b_isHP' to 'false'. Received the value from the variable calculation.
    INFO: Calling Query fileQueries10.1.0.2.0 exists
    filename = C:\oracle\product\10.2.0\client_3\lib\libclntsh.so.10.1
    INFO: Query Returned: false
    INFO: Calling Query fileQueries10.1.0.2.0 exists
    filename = C:\oracle\product\10.2.0\client_3\lib\libclntsh.sl.10.1
    INFO: Query Returned: false
    INFO: Calling Query fileQueries10.1.0.2.0 exists
    filename = C:\oracle\product\10.2.0\client_3\lib\libclntsh.a
    INFO: Query Returned: false
    INFO: Setting variable 'b_clntshExists' to 'false'. Received the value from the variable calculation.
    INFO: Setting variable 'SO_EXT' to ''. Received the value from the variable calculation.
    INFO: *** Entering Component: oracle.network.rsf.ic installation
    INFO: *** Entering Component: oracle.dbjava.ic installation
    INFO: Calling Query generalQueries10.1.0.3.0 isCurrentPlatformInGroup
    platGroup = UNIX
    INFO: Query Returned: false
    INFO: Setting variable 'b_isUNIX' to 'false'. Received the value from the variable calculation.
    INFO: Setting variable 's_jservFile' to 'C:\oracle\product\10.2.0\client_3\Apache\Jserv\conf\jserv.properties'. Received the value from the variable calculation.
    INFO: *** Entering Component: oracle.sqlplus.ic installation
    INFO: oracle.srvm.formCluster:false
    INFO:
    *** Summary Page***
    INFO:
    Summary
    Global Settings
    Source: C:\TEMP\client\stage\products.xml
    Oracle Home: C:\oracle\product\10.2.0\client_3 (OraClient10g_home3)
    Installation Type: InstantClient
    Product Languages
    English
    Space Requirements
    C:\ Required 169MB (includes 39MB temporary) : Available 25.84GB
    New Installations (7 products)
    Oracle Client 10.2.0.1.0
    Oracle Instant Client 10.2.0.1.0
    Oracle ODBC Driverfor Instant Client 10.2.0.1.0
    RDBMS Required Support Files for Instant Client 10.2.0.1.0
    SSL Required Support Files for InstantClient 10.2.0.1.0
    Oracle JDBC/OCI Instant Client 10.2.0.1.0
    SQL*Plus Files for Instant Client 10.2.0.1.0
    INFO: Method 'dispose()' Not implemented in class 'oracle.sysman.oii.oiif.oiifp.OiifpWizIntroPanel'
    INFO: config-context initialized
    INFO: *** Install Page***
    INFO: FastCopy : File Version is Compatible
    INFO: Install mode is fastcopy mode for component 'oracle.client' with Install type 'InstantClient'.
    INFO: HomeSetup JRE files in Scratch :584
    INFO: Setting variable 'ROOTSH_LOCATION' to 'C:\oracle\product\10.2.0\client_3\root.sh'. Received the value from a code block.
    INFO: Performing fastcopy operations based on the information in the file 'oracle.client_InstantClient_filemap.jar'.
    INFO: Performing fastcopy operations based on the information in the file 'racfiles.jar'.
    INFO: Performing fastcopy operations based on the information in the file 'oracle.client_InstantClient_1.xml'.
    INFO: Performing fastcopy operations based on the information in the file 'oracle.client_InstantClient_dirs.lst'.
    INFO: Performing fastcopy operations based on the information in the file 'setperms1.sh'.
    INFO: Number of threads for fast copy :1
    INFO: 12/4/06 4:35:50 PM IST: Starting install Install Phase 1 of component SQL*Plus Files for Instant Client
    INFO: 12/4/06 4:35:50 PM IST: Starting install Install Phase 1 of component Oracle JDBC/OCI Instant Client
    INFO: 12/4/06 4:35:50 PM IST: Starting install Install Phase 1 of component SSL Required Support Files for InstantClient
    INFO: 12/4/06 4:35:50 PM IST: Starting install Install Phase 1 of component RDBMS Required Support Files for Instant Client
    INFO: Calling Query fileQueries10.1.0.2.0 exists
    filename = C:\oracle\product\10.2.0\client_3/bin/oci.dll
    INFO: Query Returned: true
    INFO: Calling Query fileQueries10.1.0.2.0 exists
    filename = C:\oracle\product\10.2.0\client_3/bin/oci.dll.o.1
    INFO: Query Returned: false
    INFO: Setting variable 's_ociBkpFileName' to 'oci.dll.o.1'. Received the value from a code block.
    INFO: Calling Query fileQueries10.1.0.2.0 exists
    filename = C:\oracle\product\10.2.0\client_3/bin/oci.dll
    INFO: Query Returned: true
    INFO: Calling Query areasQueries10.2.0.1.0 productInstalled
    location = C:\oracle\product\10.2.0\client_3
    name = oracle.rdbms.rsf.ic
    startVersion = 9.2.0.0.0
    endVersion = 99.99.99.99.99
    acceptCompatible = null
    INFO: Query Returned: false
    INFO: 12/4/06 4:35:50 PM IST: Starting install Install Phase 1 of component Oracle ODBC Driverfor Instant Client
    INFO: Calling Action fileActions10.2.0.0.0 copyGroupFromJar
         selectedNodes = null
         copyGroup = filegroup4
         permissions = null
         owner = null
         group = null
         copyAsText = null
         JarLoc = C:\DOCUME~1\smukherj\LOCALS~1\Temp\1\OraInstall2006-12-04_04-31-25PM\temp0
         gpEntries = [[sqora.chm ->%s_odbcLocation%/help/sqora.chm 215861 plats=1=>[912] langs=2=>[en]]
         DllGroup = false
    INFO: Calling Action fileActions10.2.0.0.0 copyGroupFromJar
         selectedNodes = null
         copyGroup = filegroup3
         permissions = null
         owner = null
         group = null
         copyAsText = null
         JarLoc = C:\DOCUME~1\smukherj\LOCALS~1\Temp\1\OraInstall2006-12-04_04-31-25PM\temp1
         gpEntries = [[ODBCRelnotesUS.htm ->%s_odbcLocation%/html/ODBCRelnotesUS.htm 68357 plats=1=>[912] langs=1=>[en,ja]]
    , [ODBCRelnotesJA.htm ->%s_odbcLocation%/html/ODBCRelnotesJA.htm 93273 plats=1=>[912] langs=1=>[en,ja]]
         DllGroup = false
    INFO: Calling Action fileActions10.2.0.0.0 copyGroupFromJar
         selectedNodes = null
         copyGroup = filegroup2
         permissions = null
         owner = null
         group = null
         copyAsText = null
         JarLoc = C:\DOCUME~1\smukherj\LOCALS~1\Temp\1\OraInstall2006-12-04_04-31-25PM\temp2
         gpEntries = [[sqresus.dll ->%s_oracleBin%/sqresus.dll 18944 plats=1=>[912] langs=1=>[en,ja]]
    , [sqresja.dll ->%s_oracleBin%/sqresja.dll 32768 plats=1=>[912] langs=1=>[en,ja]]
         DllGroup = false
    INFO: Calling Action fileActions10.2.0.0.0 copyGroupFromJar
         selectedNodes = null
         copyGroup = filegroup1
         permissions = null
         owner = null
         group = null
         copyAsText = null
         JarLoc = C:\DOCUME~1\smukherj\LOCALS~1\Temp\1\OraInstall2006-12-04_04-31-25PM\temp3
         gpEntries = [[sqora32.dll ->%s_oracleBin%/sqora32.dll 100 plats=1=>[912] langs=1=>[en,ja]]
    , [sqoras32.dll ->%s_oracleBin%/sqoras32.dll 100 plats=1=>[912] langs=1=>[en,ja]]
         DllGroup = false
    INFO: Calling Query fileQueries10.1.0.2.0 exists
    filename = C:\WINNT\oraodbc.ini
    INFO: Query Returned: false
    INFO: 12/4/06 4:35:51 PM IST: Starting install Install Phase 1 of component Oracle Instant Client
    INFO: Calling Query fileQueries10.1.0.2.0 exists
    filename = C:\oracle\product\10.2.0\client_3/bin/oci.dll
    INFO: Query Returned: true
    INFO: Calling Query fileQueries10.1.0.2.0 exists
    filename = C:\oracle\product\10.2.0\client_3/bin/oci.dll.o.1
    INFO: Query Returned: false
    INFO: Setting variable 's_ociBkpFileName' to 'oci.dll.o.1'. Received the value from a code block.
    INFO: Calling Query fileQueries10.1.0.2.0 exists
    filename = C:\oracle\product\10.2.0\client_3/bin/oci.dll
    INFO: Query Returned: true
    INFO: Calling Query areasQueries10.2.0.1.0 productInstalled
    location = C:\oracle\product\10.2.0\client_3
    name = oracle.rdbms.ic
    startVersion = 9.2.0.0.0
    endVersion = 99.99.99.99.99
    acceptCompatible = null
    INFO: Query Returned: false
    INFO: 12/4/06 4:35:51 PM IST: Starting install Install Phase 1 of component Oracle Client
    INFO: Calling Action generalActions10.2.0.3.0 setenv
         selectedNodes =
         name = Path
         value = C:\oracle\product\10.2.0\client_3
         append = null
         replace = null
    INFO: Install Phase 1 JRE files in Scratch :584
    INFO: 12/4/06 4:35:54 PM IST: Starting install Install Phase 2 of component SQL*Plus Files for Instant Client
    INFO: 12/4/06 4:35:54 PM IST: Starting install Install Phase 2 of component Oracle JDBC/OCI Instant Client
    INFO: Calling Query fileQueries10.1.0.2.0 exists
    filename = C:\oracle\product\10.2.0\client_3\Apache\Jserv\conf\jserv.properties
    INFO: Query Returned: false
    INFO: 12/4/06 4:35:55 PM IST: Starting install Install Phase 2 of component SSL Required Support Files for InstantClient
    INFO: 12/4/06 4:35:55 PM IST: Starting install Install Phase 2 of component RDBMS Required Support Files for Instant Client
    INFO: 12/4/06 4:35:55 PM IST: Starting install Install Phase 2 of component Oracle ODBC Driverfor Instant Client
    INFO: Calling Action ntw32FoldersActions10.2.0.0.0 ntCreateItem
         selectedNodes = null
         groupName = Oracle - OraClient10g_home3\Application Development
         itemName = Oracle ODBC Help
         exeName = hh
         paramName = C:\oracle\product\10.2.0\client_3\sqora.chm
         workingDir = C:\oracle\product\10.2.0\client_3
         iconFileName = null
         icon = null
         cmdType = null
         multiparamName = null
    INFO: Calling Action ntw32FoldersActions10.2.0.0.0 ntCreateItem
         selectedNodes = null
         groupName = Oracle - OraClient10g_home3\Configuration and Migration Tools
         itemName = Microsoft ODBC Administrator
         exeName = C:\WINNT\system32\odbcad32.exe
         paramName = null
         workingDir = C:\WINNT\system32
         iconFileName = null
         icon = null
         cmdType = null
         multiparamName = null
    INFO: Calling Action w32RegActions10.2.0.0.0 RegCreateKey
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = software\odbc\odbcinst.ini\Oracle in OraClient10g_home3
    INFO: Calling Action w32RegActions10.2.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = software\odbc\odbcinst.ini\Oracle in OraClient10g_home3
         value = APILevel
         data = 1
         updateType = null
    INFO: Calling Action w32RegActions10.2.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = software\odbc\odbcinst.ini\Oracle in OraClient10g_home3
         value = CPTimeout
         data = 60
         updateType = null
    INFO: Calling Action w32RegActions10.2.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = software\odbc\odbcinst.ini\Oracle in OraClient10g_home3
         value = ConnectFunctions
         data = YYY
         updateType = null
    INFO: Calling Action w32RegActions10.2.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = software\odbc\odbcinst.ini\Oracle in OraClient10g_home3
         value = Driver
         data = C:\oracle\product\10.2.0\client_3\SQORA32.DLL
         updateType = null
    INFO: Calling Action w32RegActions10.2.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = software\odbc\odbcinst.ini\Oracle in OraClient10g_home3
         value = DriverODBCVer
         data = 03.51
         updateType = null
    INFO: Calling Action w32RegActions10.2.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = software\odbc\odbcinst.ini\Oracle in OraClient10g_home3
         value = FileUsage
         data = 0
         updateType = null
    INFO: Calling Action w32RegActions10.2.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = software\odbc\odbcinst.ini\Oracle in OraClient10g_home3
         value = Setup
         data = C:\oracle\product\10.2.0\client_3\SQORAS32.DLL
         updateType = null
    INFO: Calling Action w32RegActions10.2.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = software\odbc\odbcinst.ini\Oracle in OraClient10g_home3
         value = SQLLevel
         data = 1
         updateType = null
    INFO: Calling Action w32RegActions10.2.0.0.0 RegSetValue
         selectedNodes = null
         Key = HKEY_LOCAL_MACHINE
         SubKey = software\odbc\odbcinst.ini\odbc drivers
         value = Oracle in OraClient10g_home3
         data = Installed
         updateType = null
    INFO: 12/4/06 4:35:59 PM IST: Starting install Install Phase 2 of component Oracle Instant Client
    INFO: Calling Action SpawnActions10.1.0.2.0 Spawn
         installcommand = C:\oracle\product\10.2.0\client_3/instclient.bat C:\oracle\product\10.2.0\client_3
         deinstallcommand =
         WaitForCompletion = null
    INFO:
    INFO: Start output from spawned process:
    INFO: ----------------------------------
    INFO:
    INFO: C:\oracle\product\10.2.0\client_3
    INFO: C:\oracle\product\10.2.0\client_3
    INFO: "BIN FOLDER EXISTS"
    INFO: 1 file(s) copied.
    INFO: 1 file(s) copied.
    INFO: 1 file(s) copied.
    INFO: 1 file(s) copied.
    INFO: 1 file(s) copied.
    INFO: 1 file(s) copied.
    INFO: Deleted file - C:\oracle\product\10.2.0\client_3\bin\heteroxa10.dll
    INFO: Deleted file - C:\oracle\product\10.2.0\client_3\bin\oci.dll
    INFO: Deleted file - C:\oracle\product\10.2.0\client_3\bin\ocijdbc10.dll
    INFO: Deleted file - C:\oracle\product\10.2.0\client_3\bin\ociw32.dll
    INFO: Deleted file - C:\oracle\product\10.2.0\client_3\bin\orannzsbb10.dll
    INFO: Deleted file - C:\oracle\product\10.2.0\client_3\bin\oraocci10.dll
    INFO: "LIB FOLDER EXISTS"
    INFO: "Instantclient FOLDER EXISTS"
    INFO: 1 file(s) copied.
    INFO: 1 file(s) copied.
    INFO: Deleted file - C:\oracle\product\10.2.0\client_3\instantclient\oraociei10.dll
    INFO: Deleted file - C:\oracle\product\10.2.0\client_3\instantclient\orasqlplusic10.dll
    INFO: "odbc FOLDER EXISTS"
    INFO: 1 file(s) copied.
    INFO: 1 file(s) copied.
    INFO: 1 file(s) copied.
    INFO: "jdbc FOLDER EXISTS"
    INFO: 1 file(s) copied.
    INFO: End output from spawned process.
    INFO: ----------------------------------
    INFO: Calling Query fileQueries10.1.0.2.0 exists
    filename = C:\oracle\product\10.2.0\client_3/instclient.sh
    INFO: Query Returned: false
    INFO: Calling Query fileQueries10.1.0.2.0 exists
    filename = C:\oracle\product\10.2.0\client_3\instclient.bat
    INFO: Query Returned: true
    INFO: Calling Action fileActions10.2.0.0.0 removeFile
         selectedNodes = null
         source = C:\oracle\product\10.2.0\client_3\instclient.bat
    INFO: 12/4/06 4:36:00 PM IST: Starting install Install Phase 2 of component Oracle Client
    INFO: Install Phase 2 JRE files in Scratch :584
    INFO: Initializing OUI save inventory
    INFO: The flags set for this home (T:\SDCHS20N440\Oracle\agent10g) are:clean
    SEVERE: Abnormal program termination. An internal error has occured. Please provide the following files to Oracle Support :
    "C:\Program Files\Oracle\Inventory\logs\installActions2006-12-04_04-31-25PM.log"
    "C:\Program Files\Oracle\Inventory\logs\oraInstall2006-12-04_04-31-25PM.err"
    "C:\Program Files\Oracle\Inventory\logs\oraInstall2006-12-04_04-31-25PM.out"
    INFO: User Selected: Yes/OK
    Best Regards,
    Sarmishtha

    Ouch. That's a lot of paste...
    INFO: PATH = C:\oracle\product\10.2.0\client_2;C:\oracle\product\10.2.0
    \client_1;T:\SDCHS20N440\Oracle\agent10g\jlib;T:\SDCHS20N440
    \Oracle\agent10g\bin
    INFO: The flags set for this home (T:\SDCHS20N440\Oracle\agent10g) are:clean
    SEVERE: Abnormal program termination. An internal error has occured. Please
    provide the following files to Oracle Support : I wonder how "T:" is involved. Looks like you got a management agent on a network drive. If so, is this Home registered with the oraInventory on your machine? Can you try the same install on a machine without any previous Oracle software installed?

  • System copy --- Import issue in Import ABAP phase

    HI Team, We are doing migration using system export/import method from win2008/SQL2008 to Win2012/SQL2012 . While doing export there was a problem with table  SOFFCONT1 , So we have followed the note 1922094  and changed the size of the package  from  1 GB to 2 GB  in SOFFCONT1.cmd , After this We have exported the data from the source system using SWPM tool. Now we are importing in to Target system , During the Import ABAP phase we are facing the below issue for same table SOFFCONT1 . Could you please tell us how to fix this issue . Do we need to do same activity for the table while importing also ? =============================================================== H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: START OF LOG: 20140712143736 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: sccsid @(#) $Id: //bas/721_REL/src/R3ld/R3load/R3ldmain.c#8 $ SAP H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: version R7.20/V1.6 [UNICODE] Compiled Dec 4 2013 17:25:27 patchinfo (patches.h): (0.138) Abort R3load task if TOC file has not entry for the table (note 1914260) process id 11608 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe -ctf I \\192.168.114.11 \y\Migration\Ghana_Migration_Ecc\\export\ABAP\DATA\SOFFCONT1.STR C:\Program Files\sapinst_instdir\BS2005\ERP60SR3 \LM\COPY\MSS\SYSTEM\CENTRAL\AS-ABAP\DDLMSS.TPL SOFFCONT1.TSK MSS -l SOFFCONT1.log H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: job completed H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: END OF LOG: 20140712143736 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: START OF LOG: 20140712143736 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: sccsid @(#) $Id: //bas/721_REL/src/R3ld/R3load/R3ldmain.c#8 $ SAP H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: version R7.20/V1.6 [UNICODE] Compiled Dec 4 2013 17:25:27 patchinfo (patches.h): (0.138) Abort R3load task if TOC file has not entry for the table (note 1914260) process id 10364 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe -i SOFFCONT1.cmd -dbcodepage 4103 -l SOFFCONT1.log -loadprocedure fast (DB) INFO: connected to DB (GSI) INFO: dbname = "GFGH-SAP- " (GSI) INFO: vname = "MSSQL " (GSI) INFO: hostname = "GFGH-SAP- " (GSI) INFO: sysname = "Windows NT" (GSI) INFO: nodename = "GFGH-SAP-" (GSI) INFO: release = "6.3" (GSI) INFO: version = "9600 " (GSI) INFO: machine = "6x AMD64 Level 21 (Mod 2 Step 0)" (SQL) INFO: Searching for SQL file SQLFiles.LST (SQL) INFO: SQLFiles.LST not found (SQL) INFO: Searching for SQL file \\192.168.114.11 \y\Migration\Ghana_Migration_Ecc\\export\ABAP\DB/SQLFiles.LST (SQL) INFO: \\192.168.114.11 \y\Migration\Ghana_Migration_Ecc\\export\ABAP\DB/SQLFiles.LST not found (SQL) INFO: Searching for SQL file APPL1.SQL (SQL) INFO: APPL1.SQL not found (SQL) INFO: Searching for SQL file \\192.168.114.11 \y\Migration\Ghana_Migration_Ecc\\export\ABAP\DB/MSS/APPL1.SQL (SQL) INFO: \\192.168.114.11 \y\Migration\Ghana_Migration_Ecc\\export\ABAP\DB/MSS/APPL1.SQL not found (DB) INFO: SOFFCONT1 created (DB) INFO: SOFFCONT1~0 created Interface access functions from dynamic library dbmssslib.dll loaded. (IMP) INFO: ExeFastLoad failed with (IMP) ERROR: ExeFastload: rc = 2 (DB) INFO: disconnected from DB H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: job finished with 1 error (s) H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: END OF LOG: 20140712163351 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: START OF LOG: 20140712191514 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: sccsid @(#) $Id: //bas/721_REL/src/R3ld/R3load/R3ldmain.c#8 $ SAP H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: version R7.20/V1.6 [UNICODE] Compiled Dec 4 2013 17:25:27 patchinfo (patches.h): (0.138) Abort R3load task if TOC file has not entry for the table (note 1914260) process id 8772 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe -i SOFFCONT1.cmd -dbcodepage 4103 -l SOFFCONT1.log -loadprocedure fast (DB) INFO: connected to DB (GSI) INFO: dbname = "GFGH-SAP- " (GSI) INFO: vname = "MSSQL " (GSI) INFO: hostname = "GFGH-SAP- " (GSI) INFO: sysname = "Windows NT" (GSI) INFO: nodename = "GFGH-SAP-" (GSI) INFO: release = "6.3" (GSI) INFO: version = "9600 " (GSI) INFO: machine = "6x AMD64 Level 21 (Mod 2 Step 0)" (DB) INFO: SOFFCONT1 deleted/truncated Interface access functions from dynamic library dbmssslib.dll loaded. (IMP) INFO: ExeFastLoad failed with (IMP) ERROR: ExeFastload: rc = 2 (DB) INFO: disconnected from DB H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: job finished with 1 error (s) H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: END OF LOG: 20140712193907 Thanks, Pavan 91-991 233 6633HI Team, We are doing migration using system export/import method from win2008/SQL2008 to Win2012/SQL2012 . We have exported the data from the source system using SWPM tool. Now we are importing in to Target system , During the Import ABAP phase we are facing the below issue. Could you please tell us how to fix this issue .If you need any other info please reach me out on 91- 991 233 6633 =============================================================== H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: START OF LOG: 20140712143736 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: sccsid @(#) $Id: //bas/721_REL/src/R3ld/R3load/R3ldmain.c#8 $ SAP H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: version R7.20/V1.6 [UNICODE] Compiled Dec 4 2013 17:25:27 patchinfo (patches.h): (0.138) Abort R3load task if TOC file has not entry for the table (note 1914260) process id 11608 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe -ctf I \\192.168.114.11 \y\Migration\Ghana_Migration_Ecc\\export\ABAP\DATA\SOFFCONT1.STR C:\Program Files\sapinst_instdir\BS2005\ERP60SR3 \LM\COPY\MSS\SYSTEM\CENTRAL\AS-ABAP\DDLMSS.TPL SOFFCONT1.TSK MSS -l SOFFCONT1.log H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: job completed H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: END OF LOG: 20140712143736 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: START OF LOG: 20140712143736 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: sccsid @(#) $Id: //bas/721_REL/src/R3ld/R3load/R3ldmain.c#8 $ SAP H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: version R7.20/V1.6 [UNICODE] Compiled Dec 4 2013 17:25:27 patchinfo (patches.h): (0.138) Abort R3load task if TOC file has not entry for the table (note 1914260) process id 10364 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe -i SOFFCONT1.cmd -dbcodepage 4103 -l SOFFCONT1.log -loadprocedure fast (DB) INFO: connected to DB (GSI) INFO: dbname = "GFGH-SAP- " (GSI) INFO: vname = "MSSQL " (GSI) INFO: hostname = "GFGH-SAP- " (GSI) INFO: sysname = "Windows NT" (GSI) INFO: nodename = "GFGH-SAP-" (GSI) INFO: release = "6.3" (GSI) INFO: version = "9600 " (GSI) INFO: machine = "6x AMD64 Level 21 (Mod 2 Step 0)" (SQL) INFO: Searching for SQL file SQLFiles.LST (SQL) INFO: SQLFiles.LST not found (SQL) INFO: Searching for SQL file \\192.168.114.11 \y\Migration\Ghana_Migration_Ecc\\export\ABAP\DB/SQLFiles.LST (SQL) INFO: \\192.168.114.11 \y\Migration\Ghana_Migration_Ecc\\export\ABAP\DB/SQLFiles.LST not found (SQL) INFO: Searching for SQL file APPL1.SQL (SQL) INFO: APPL1.SQL not found (SQL) INFO: Searching for SQL file \\192.168.114.11 \y\Migration\Ghana_Migration_Ecc\\export\ABAP\DB/MSS/APPL1.SQL (SQL) INFO: \\192.168.114.11 \y\Migration\Ghana_Migration_Ecc\\export\ABAP\DB/MSS/APPL1.SQL not found (DB) INFO: SOFFCONT1 created (DB) INFO: SOFFCONT1~0 created Interface access functions from dynamic library dbmssslib.dll loaded. (IMP) INFO: ExeFastLoad failed with (IMP) ERROR: ExeFastload: rc = 2 (DB) INFO: disconnected from DB H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: job finished with 1 error (s) H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: END OF LOG: 20140712163351 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: START OF LOG: 20140712191514 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: sccsid @(#) $Id: //bas/721_REL/src/R3ld/R3load/R3ldmain.c#8 $ SAP H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: version R7.20/V1.6 [UNICODE] Compiled Dec 4 2013 17:25:27 patchinfo (patches.h): (0.138) Abort R3load task if TOC file has not entry for the table (note 1914260) process id 8772 H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe -i SOFFCONT1.cmd -dbcodepage 4103 -l SOFFCONT1.log -loadprocedure fast (DB) INFO: connected to DB (GSI) INFO: dbname = "GFGH-SAP- " (GSI) INFO: vname = "MSSQL " (GSI) INFO: hostname = "GFGH-SAP- " (GSI) INFO: sysname = "Windows NT" (GSI) INFO: nodename = "GFGH-SAP-" (GSI) INFO: release = "6.3" (GSI) INFO: version = "9600 " (GSI) INFO: machine = "6x AMD64 Level 21 (Mod 2 Step 0)" (DB) INFO: SOFFCONT1 deleted/truncated Interface access functions from dynamic library dbmssslib.dll loaded. (IMP) INFO: ExeFastLoad failed with (IMP) ERROR: ExeFastload: rc = 2 (DB) INFO: disconnected from DB H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: job finished with 1 error (s) H:\usr\sap\\SYS\exe\uc\NTAMD64\R3load.exe: END OF LOG: 20140712193907 Thanks, Pavan 91-991 233 6633

    Hi,
    This is SAP Business one system administration forum. Please find correct forum and repost above discussion to get quick assistance.
    Please close this thread here with  helpful answer.
    Thanks & Regards,
    Nagarajan

  • What program will work with SFTP backup program in 5.0(4)?

    Who know how to backup the data from CM5.0(4) server to remote host via SFTP progarm?? The CM does not include a backup tape system, the CM only allow backup the data to remote side with SFTP. We had tried shareware from internet, but it does not work.
    No availiable SFTP program from Cisco site is free for download.
    Thanks in advance!

    Hi Michael,
    Have you seen this info from the release notes for CCM 5.0(4);
    Some Cisco Unified CallManager services, such as CDR, DRF, and DMA, require a separate FTP or SFTP server. The following FTP server programs have been tested with Cisco Unified CallManager 5.0.
    Openssh Server by Red Hat, Inc., Version 3.6.1p2, Release 33.30.4
    Cygwin SFTP Server, Version 2.457.2.2 with cygwin.dll Version, 1.5.16
    War FTP Daemon Version 1.82, by Jgaa's Freeware on Microsoft Windows server
    FTP Publishing Service in Microsoft Internet Information Server 5.0, Version 1.0 on a Microsoft Windows 2000 Server
    From this CCM 5.0(4) doc;
    http://www.cisco.com/en/US/products/sw/voicesw/ps556/prod_release_note09186a00806cfa62.html#wp298402
    Hope this helps!
    Rob
    Please remember to rate helpful posts.......

  • Videora iPod Converter Help

    So, I'm having the problem where I open the videora iPod converter choose transcode new video and in 1 and a half seconds it says finished, but when i go in to the export directory there is nothing there. I have looked over each step of about 4 different tutorials about 4 times and each and same with all FAQ's. I have seen my enable debug console (some explain why you can't copy that so i cant paste it here). It mentions that i should searc/find/delete all but the newest cygwin.dll. I seach, find, and then realize that the only cygwin.dll i have is the one that is in the "videoraipodconverter" folder . So I leave it there and then in my debug info it say that it should be located in a x:\cygwin\bin folder. So I created a folder C:\cygwin\bin and copied it in there, but still no dice. So I've searched more into the FAQ's and tutorials, but still no dice. I'm a pretty computer savvy person so you don't need to hold my hand through this, but I would appreciate some info, beecause I got no where else to turn and it seems a lot of people have this problem and most people are just posting the link to the same faq's to them that don't help. So any takers? Anyone know what is goin on and what to be a lamb and try and help me out? Thanks, I appreciate it

    THIS IS NOT THE SUPPORT FORUM FOR THIS 3RD PARTY SOFTWARE AND EVEN IF ITS RELATED TO ITUNES OR THE IPOD YOU NEED TO GO TO THEIR WEBSITE FOR HELP...EVEN THOUGH ITS CHEAP TRASHY SOFTWARE ! LINKS BELOW.
    To use Videora iPod Convertor to convert movies for use on your iPod, consult these helpful links:
    To get started: http://www.videora.com/en-us/Converter/iPod/
    If you have questions: http://www.videora.com/en-us/Converter/guides.html
    If you have more questions, post them here: http://www.pspvideo9.com/forums/index.php?c=8
    Note that Videora iPod Convertor is a 3rd party program. If you need help with it, post your question there.
    GFF

  • How to create a report based on a DataSet programatically

    I'm working on a CR 2008 Add-in.
    Usage of this add-in is: Let the user choose from a list of predefined datasets, and create a totally empty report with this dataset attached to is. So the user can create a report based on this dataset.
    I have a dataset in memory, and want to create a new report in cr2008.
    The new report is a blank report (with no connection information).
    If I set the ReportDocument.SetDataSource(Dataset dataSet) property, I get the error:
    The report has no tables.
    So I must programmatically define the table definition in my blank report.
    I found the following article: https://boc.sdn.sap.com/node/869, and came up with something like this:
    internal class NewReportWorker : Worker
          public NewReportWorker(string reportFileName)
             : base(reportFileName)
    public override void Process()
             DatabaseController databaseController = ClientDoc.DatabaseController;
             Table table = new Table();
             string tabelName = "Table140";
             table.Name = tabelName;
             table.Alias = tabelName;
             table.QualifiedName = tabelName;
             table.Description = tabelName;
             var fields = new Fields();
             var dbField = new DBField();
             var fieldName = "ID";
             dbField.Description = fieldName;
             dbField.HeadingText = fieldName;
             dbField.Name = fieldName;
             dbField.Type = CrFieldValueTypeEnum.crFieldValueTypeInt64sField;
             fields.Add(dbField);
             dbField = new DBField();
             fieldName = "IDLEGITIMATIEBEWIJS";
             dbField.Description = fieldName;
             dbField.HeadingText = fieldName;
             dbField.Name = fieldName;
             dbField.Type = CrFieldValueTypeEnum.crFieldValueTypeInt64sField;
             fields.Add(dbField);
             // More code for more tables to add.
             table.DataFields = fields;
             //CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo info =
             //   new CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo();
             //info.Attributes.Add("Databse DLL", "xxx.dll");
             //table.ConnectionInfo = info;
             // Here an error occurs.
             databaseController.AddTable(table, null);
             ReportDoc.SetDataSource( [MyFilledDataSet] );
             //object path = @"d:\logfiles\";
             //ClientDoc.SaveAs("test.rpt", ref path, 0);
    The object ClientDoc referes to a ISCDReportClientDocument in a base class:
       internal abstract class Worker
          private ReportDocument _ReportDoc;
          private ISCDReportClientDocument _ClientDoc;
          private string _ReportFileName;
          public Worker(string reportFileName)
             _ReportFileName = reportFileName;
             _ReportDoc = new ReportDocument();
             // Load the report from file path passed by the designer.
             _ReportDoc.Load(reportFileName);
             // Create a RAS Document through In-Proc RAS through the RPTDoc.
             _ClientDoc = _ReportDoc.ReportClientDocument;
          public string ReportFileName
             get
                return _ReportFileName;
          public ReportDocument ReportDoc
             get
                return _ReportDoc;
          public ISCDReportClientDocument ClientDoc
             get
                return _ClientDoc;
    But I get an "Unspecified error" on the line databaseController.AddTable(table, null);
    What am i doing wrong? Or is there another way to create a new report based on a DataSet in C# code?

    Hi,
    Have a look at the snippet code below written for version 9 that you might accommodate to CR 2008, it demonstrates how to create a report based on a DataSet programmatically.
    //=========================================================================
    +           * the following two string values can be modified to reflect your system+
    +          ************************************************************************************************/+
    +          string mdb_path = "C:
    program files
    crystal decisions
    crystal reports 9
    samples
    en
    databases
    xtreme.mdb";    // path to xtreme.mdb file+
    +          string xsd_path = "C:
    Crystal
    rasnet
    ras9_csharp_win_datasetreport
    customer.xsd";  // path to customer schema file+
    +          // Dataset+
    +          OleDbConnection m_connection;                         // ado.net connection+
    +          OleDbDataAdapter m_adapter;                              // ado.net adapter+
    +          System.Data.DataSet m_dataset;                         // ado.net dataset+
    +          // CR variables+
    +          ReportClientDocument m_crReportDocument;          // report client document+
    +          Field m_crFieldCustomer;+
    +          Field m_crFieldCountry;+
    +          void CreateData()+
    +          {+
    +               // Create OLEDB connection+
    +               m_connection = new OleDbConnection();+
    +               m_connection.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + mdb_path;+
    +               // Create Data Adapter+
    +               m_adapter = new OleDbDataAdapter("select * from Customer where Country='Canada'", m_connection);+
    +               // create dataset and fill+
    +               m_dataset = new System.Data.DataSet();+
    +               m_adapter.Fill(m_dataset, "Customer");+
    +               // create a schema file+
    +               m_dataset.WriteXmlSchema(xsd_path);+
    +          }+
    +          // Adds a DataSource using dataset. Since this does not require intermediate schema file, this method+
    +          // will work in a distributed environment where you have IIS box on server A and RAS Server on server B.+
    +          void AddDataSourceUsingDataSet(+
    +               ReportClientDocument rcDoc,          // report client document+
    +               System.Data.DataSet data)          // dataset+
    +          {+
    +               // add a datasource+
    +               DataSetConverter.AddDataSource(rcDoc, data);+
    +          }+
    +          // Adds a DataSource using a physical schema file. This method require you to have schema file in RAS Server+
    +          // box (NOT ON SDK BOX). In distributed environment where you have IIS on server A and RAS on server B,+
    +          // and you execute CreateData above, schema file is created in IIS box, and this method will fail, because+
    +          // RAS server cannot see that schema file on its local machine. In such environment, you must use method+
    +          // above.+
    +          void AddDataSourceUsingSchemaFile(+
    +               ReportClientDocument rcDoc,          // report client document+
    +               string schema_file_name,          // xml schema file location+
    +               string table_name,                    // table to be added+
    +               System.Data.DataSet data)          // dataset+
    +          {+
    +               PropertyBag crLogonInfo;               // logon info+
    +               PropertyBag crAttributes;               // logon attributes+
    +               ConnectionInfo crConnectionInfo;     // connection info+
    +               CrystalDecisions.ReportAppServer.DataDefModel.Table crTable;+
    +               // database table+
    +               // create logon property+
    +               crLogonInfo = new PropertyBag();+
    +               crLogonInfo["XML File Path"] = schema_file_name;+
    +               // create logon attributes+
    +               crAttributes = new PropertyBag();+
    +               crAttributes["Database DLL"] = "crdb_adoplus.dll";+
    +               crAttributes["QE_DatabaseType"] = "ADO.NET (XML)";+
    +               crAttributes["QE_ServerDescription"] = "NewDataSet";+
    +               crAttributes["QE_SQLDB"] = true;+
    +               crAttributes["QE_LogonProperties"] = crLogonInfo;+
    +               // create connection info+
    +               crConnectionInfo = new ConnectionInfo();+
    +               crConnectionInfo.Kind = CrConnectionInfoKindEnum.crConnectionInfoKindCRQE;+
    +               crConnectionInfo.Attributes = crAttributes;+
    +               // create a table+
    +               crTable = new CrystalDecisions.ReportAppServer.DataDefModel.Table();+
    +               crTable.ConnectionInfo = crConnectionInfo;+
    +               crTable.Name = table_name;+
    +               crTable.Alias = table_name;+
    +               // add a table+
    +               rcDoc.DatabaseController.AddTable(crTable, null);+
    +               // pass dataset+
    +               rcDoc.DatabaseController.SetDataSource(DataSetConverter.Convert(data), table_name, table_name);+
    +          }+
    +          void CreateReport()+
    +          {+
    +               int iField;+
    +               // create ado.net dataset+
    +               CreateData();+
    +               // create report client document+
    +               m_crReportDocument = new ReportClientDocument();+
    +               m_crReportDocument.ReportAppServer = "127.0.0.1";+
    +               // new report document+
    +               m_crReportDocument.New();+
    +               // add a datasource using a schema file+
    +               // note that if you have distributed environment, you should use AddDataSourceUsingDataSet method instead.+
    +               // for more information, refer to comments on these methods.+
    +               AddDataSourceUsingSchemaFile(m_crReportDocument, xsd_path, "Customer", m_dataset);+
    +                              +
    +               // get Customer Name and Country fields+
    +               iField = m_crReportDocument.Database.Tables[0].DataFields.Find("Customer Name", CrFieldDisplayNameTypeEnum.crFieldDisplayNameName, CeLocale.ceLocaleUserDefault);+
    +               m_crFieldCustomer = (Field)m_crReportDocument.Database.Tables[0].DataFields[iField];+
    +               iField = m_crReportDocument.Database.Tables[0].DataFields.Find("Country", CrFieldDisplayNameTypeEnum.crFieldDisplayNameName, CeLocale.ceLocaleUserDefault);+
    +               m_crFieldCountry = (Field)m_crReportDocument.Database.Tables[0].DataFields[iField];+
    +               // add Customer Name and Country fields+
    +               m_crReportDocument.DataDefController.ResultFieldController.Add(-1, m_crFieldCustomer);+
    +               m_crReportDocument.DataDefController.ResultFieldController.Add(-1, m_crFieldCountry);+
    +               // view report+
    +               crystalReportViewer1.ReportSource = m_crReportDocument;+
    +          }+
    +          public Form1()+
    +          {+
    +               //+
    +               // Required for Windows Form Designer support+
    +               //+
    +               InitializeComponent();+
    +               // Create Report+
    +               CreateReport();+
    +               //+
    +               // TODO: Add any constructor code after InitializeComponent call+
    +               //+
    +          }+//=========================================================================

  • Unable to access/lan2lan ping from VPN Fortigate to Cisco ASA 5505

    Problem : Unable to access user A to user B
    User A --- router A (122, fortigate 80c) --- (Site to Site VPN between fortigate & cisco asa) --- router B (93, cisco Asa 5505{in front asa got cisco800[81] before to internet} )  --- User B
    After using wizard to configure the cisco ASA site to site VPN, the site-to-site tunnel is up.
    Ping is unsuccessful from user A to user B
    Ping is successful from user B to user A, data is accessable
    After done the packet tracer from user A to user B,
    Result :
    Flow-lookup
    Action : allow
    Info: Found no matching flow, creating a new flow
    Route-lookup
    Action : allow
    Info : 192.168.5.203 255.255.255.255 identity
    Access-list
    Action : drop
    Config Implicit Rule
    Result - The packet is dropped
    Input Interface : inside
    Output Interface : NP Identify Ifc
    Info: (acl-drop)flow is denied by configured rule
    Below is Cisco ASA 5505's show running-config
    ASA Version 8.2(1)
    hostname Asite
    domain-name ssms1.com
    enable password ZZZZ encrypted
    passwd WWWW encrypted
    names
    name 82 B-firewall description Singapore office firewall
    name 192.168.1.0 B-inside-subnet description Singapore office internal LAN IP
    name 192.168.200.0 A-inside-VLAN12 description A-inside-VLAN12 (fortinet)
    name 192.168.2.0 fw-inside-subnet description A office internal LAN IP
    name 122 A-forti
    interface Vlan1
    nameif inside
    security-level 100
    ip address 192.168.5.203 255.255.255.0
    interface Vlan2
    nameif outside
    security-level 0
    ip address 93 255.255.255.240
    interface Ethernet0/0
    switchport access vlan 2
    interface Ethernet0/7
    ftp mode passive
    dns server-group DefaultDNS
    domain-name ssms1.com
    object-group network obj_any
    network-object 0.0.0.0 0.0.0.0
    access-list inside_nat0_outbound extended permit ip any 80 255.255.255.240
    access-list inside_nat0_outbound extended permit ip fw-inside-subnet 255.255.255.0 B-inside-subnet 255.255.255.0
    access-list inside_nat0_outbound extended permit ip 192.168.5.0 255.255.255.0 A-inside-VLAN12 255.255.255.0
    access-list outside_cryptomap extended permit ip fw-inside-subnet 255.255.255.0 B-inside-subnet 255.255.255.0
    access-list Outside_nat-inbound extended permit ip A-inside-VLAN12 255.255.255.0 192.168.5.0 255.255.255.0
    access-list Outside_nat-inbound extended permit ip host A-forti 192.168.5.0 255.255.255.0
    access-list outside_1_cryptomap extended permit ip 192.168.5.0 255.255.255.0 A-inside-VLAN12 255.255.255.0
    pager lines 24
    logging enable
    logging asdm informational
    mtu inside 1500
    mtu outside 1500
    icmp unreachable rate-limit 1 burst-size 1
    asdm image disk0:/asdm-631.bin
    no asdm history enable
    arp timeout 14400
    global (outside) 101 interface
    nat (inside) 0 access-list inside_nat0_outbound
    nat (inside) 101 0.0.0.0 0.0.0.0
    route outside 0.0.0.0 0.0.0.0 81 1
    timeout xlate 3:00:00
    timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 icmp 0:00:02
    timeout sunrpc 0:10:00 h323 0:05:00 h225 1:00:00 mgcp 0:05:00 mgcp-pat 0:05:00
    timeout sip 0:30:00 sip_media 0:02:00 sip-invite 0:03:00 sip-disconnect 0:02:00
    timeout sip-provisional-media 0:02:00 uauth 0:05:00 absolute
    timeout tcp-proxy-reassembly 0:01:00
    dynamic-access-policy-record DfltAccessPolicy
    http server enable
    http B-inside-subnet 255.255.255.0 inside
    http fw-inside-subnet 255.255.255.0 inside
    http 0.0.0.0 255.255.255.255 outside
    http 0.0.0.0 0.0.0.0 outside
    http 192.168.5.0 255.255.255.0 inside
    no snmp-server location
    no snmp-server contact
    snmp-server enable traps snmp authentication linkup linkdown coldstart
    crypto ipsec transform-set ESP-AES-256-MD5 esp-aes-256 esp-md5-hmac
    crypto ipsec transform-set ESP-DES-SHA esp-des esp-sha-hmac
    crypto ipsec transform-set ESP-DES-MD5 esp-des esp-md5-hmac
    crypto ipsec transform-set ESP-3DES-MD5 esp-3des esp-md5-hmac
    crypto ipsec transform-set ESP-AES-256-SHA esp-aes-256 esp-sha-hmac
    crypto ipsec transform-set ESP-AES-128-SHA esp-aes esp-sha-hmac
    crypto ipsec transform-set ESP-AES-192-SHA esp-aes-192 esp-sha-hmac
    crypto ipsec transform-set ESP-AES-128-MD5 esp-aes esp-md5-hmac
    crypto ipsec transform-set ESP-AES-192-MD5 esp-aes-192 esp-md5-hmac
    crypto ipsec transform-set ESP-3DES-SHA esp-3des esp-sha-hmac
    crypto ipsec security-association lifetime seconds 28800
    crypto ipsec security-association lifetime kilobytes 4608000
    crypto map outside_map 1 match address outside_1_cryptomap
    crypto map outside_map 1 set pfs
    crypto map outside_map 1 set peer A-forti
    crypto map outside_map 1 set transform-set ESP-3DES-SHA
    crypto map outside_map 2 match address outside_cryptomap
    crypto map outside_map 2 set peer B-firewall
    crypto map outside_map 2 set transform-set ESP-AES-128-SHA ESP-AES-128-MD5 ESP-AES-192-SHA ESP-AES-192-MD5 ESP-AES-256-SHA ESP-AES-256-MD5 ESP-3DES-SHA ESP-3DES-MD5 ESP-DES-SHA ESP-DES-MD5
    crypto map outside_map interface outside
    crypto isakmp enable outside
    crypto isakmp policy 10
    authentication pre-share
    encryption 3des
    hash sha
    group 2
    lifetime 86400
    crypto isakmp policy 20
    authentication pre-share
    encryption aes-192
    hash md5
    group 2
    lifetime 86400
    crypto isakmp policy 30
    authentication pre-share
    encryption aes-256
    hash md5
    group 2
    lifetime 86400
    telnet timeout 5
    ssh timeout 5
    console timeout 0
    dhcpd auto_config outside
    dhcpd address 192.168.5.10-192.168.5.20 inside
    dhcpd dns 165 165 interface inside
    dhcpd enable inside
    threat-detection basic-threat
    threat-detection statistics access-list
    no threat-detection statistics tcp-intercept
    webvpn
    group-policy DfltGrpPolicy attributes
    vpn-tunnel-protocol IPSec l2tp-ipsec svc webvpn
    username admin password XXX encrypted privilege 15
    tunnel-group 122 type ipsec-l2l
    tunnel-group 122 ipsec-attributes
    pre-shared-key *
    class-map inspection_default
    match default-inspection-traffic
    class-map outside-class
    match default-inspection-traffic
    policy-map type inspect dns preset_dns_map
    parameters
      message-length maximum 512
      message-length maximum client auto
    policy-map global_policy
    class inspection_default
      inspect dns preset_dns_map
      inspect ftp
      inspect h323 h225
      inspect h323 ras
      inspect rsh
      inspect rtsp
      inspect esmtp
      inspect sqlnet
      inspect skinny
      inspect sunrpc
      inspect xdmcp
      inspect sip
      inspect netbios
      inspect tftp
      inspect icmp
    policy-map outside-policy
    description ok
    class outside-class
      inspect dns
      inspect esmtp
      inspect ftp
      inspect h323 h225
      inspect h323 ras
      inspect icmp
      inspect icmp error
      inspect netbios
      inspect rsh
      inspect rtsp
      inspect sip
      inspect skinny
      inspect sqlnet
      inspect sunrpc
      inspect tftp
      inspect xdmcp
    service-policy global_policy global
    service-policy outside-policy interface outside
    prompt hostname context
    Cryptochecksum: XXX
    : end
    Kindly need your expertise&help to solve the problem

    any1 can help me ?

  • Error during a system copy with HANA DB

    Hello,
    I´m doing a system copy in a SAP ERP 6.0 EHP7 with SAP HANA DB.
    During a homogeneous system copy procedure with SWPM, it show me the following error during the phase Database refresh postload-activities.
    I checked some log files:
    -- sapinst.log:
    ERROR 2014-08-24 16:14:01.109
    MSC-04120  Creating a license signature failed:
    ===...could not load SSF library S:\usr\sap\\D00\exe\sapcrypto.dll .
    ERROR 2014-08-24 16:14:01.109
    MSC-04120  Creating a license signature failed: 543 wlikey_sign_for_installer: Couldn't load SAPSECULIB ("S:\usr\sap\\D00\exe\sapcrypto.dll") using function SsfSupInitEx (), rc = 10 (no library).
    ERROR 2014-08-24 16:14:01.109
    MSC-04120  Creating a license signature failed: 542 wlikey_sign_for_installer: At least one more attempt to load the SAPSECULIB will follow.
    INFO 2014-08-24 16:14:01.234
    Switched to user: ASCENDUMCE\ed1adm.
    INFO 2014-08-24 16:14:01.343
    Creating file C:\Program Files\sapinst_instdir\BS2013\BS2013SR1\ERP607SR1\HDB\COPY\SYSTEM\STD\AS-ABAP\REF\saplikey.log.
    INFO 2014-08-24 16:14:01.390
    Switched to user: ASCENDUMCE\ed1adm.
    INFO 2014-08-24 16:14:01.422
    Output of S:\usr\sap\ED1\SYS\exe\uc\NTAMD64\saplikey pf=\\SATDCSAP3\sapmnt\ED1\SYS\profile\ED1_DVEBMGS00_SATDCSAP3 -install_first_temp F1740289712 XXXXXX is written to the logfile saplikey.log.
    WARNING 2014-08-24 16:14:01.640
    Execution of the command "S:\usr\sap\ED1\SYS\exe\uc\NTAMD64\saplikey pf=\\SATDCSAP3\sapmnt\ED1\SYS\profile\ED1_DVEBMGS00_SATDCSAP3 -install_first_temp F1740289712 XXXXXX" finished with return code 2. Output:
    saplikey: failed to connect to the database.
    ERROR 2014-08-24 16:14:01.640
    CJS-30023  Process call 'S:\usr\sap\ED1\SYS\exe\uc\NTAMD64\saplikey pf=\\SATDCSAP3\sapmnt\ED1\SYS\profile\ED1_DVEBMGS00_SATDCSAP3 -install_first_temp F1740289712 XXXXXX' exits with error code 2. For details see log file(s) saplikey.log, dev_slic.
    ERROR 2014-08-24 16:14:01.703
    FCO-00011  The step createTempLicense with step key |NW_ABAP_DB_DBRefresh|ind|ind|ind|ind|0|0|NW_ABAP_DB|ind|ind|ind|ind|0|0|NW_CreateDBandLoad|ind|ind|ind|ind|createdbandload|0|NW_Postload|ind|ind|ind|ind|postload|0|NW_Postload_DBRefresh_ABAP|ind|ind|ind|ind|abap|0|NW_Temp_License_ABAP|ind|ind|ind|ind|lic|0|createTempLicense was executed with status ERROR ( Last error reported by the step: Creating a license signature failed:
    ===...could not load SSF library S:\usr\sap\\D00\exe\sapcrypto.dll .).
    INFO 2014-08-24 16:14:02.31
    Creating file C:\Program Files\sapinst_instdir\BS2013\BS2013SR1\ERP607SR1\HDB\COPY\SYSTEM\STD\AS-ABAP\REF\__instana_tmp.xml.
    INFO 2014-08-24 16:14:02.734
    Removed file C:\Program Files\sapinst_instdir\BS2013\BS2013SR1\ERP607SR1\HDB\COPY\SYSTEM\STD\AS-ABAP\REF\instslana.xml.
    INFO 2014-08-24 16:14:02.734
    Creating file C:\Program Files\sapinst_instdir\BS2013\BS2013SR1\ERP607SR1\HDB\COPY\SYSTEM\STD\AS-ABAP\REF\instslana.xml.
    -- saplikey.log:
    saplikey: failed to connect to the database.
    -- dev_likey:
    -> init()
      STATEMENT_CACHE_SIZE = 1000
    -> init()
    -> loadClientRuntime()
    Loading SQLDBC client runtime ...
    SQLDBC Module  : S:\usr\sap\ED1\hdbclient\libSQLDBCHDB.dll
    SQLDBC Runtime : libSQLDBCHDB 1.00.80.00 Build 0391861-1510
    SQLDBC client runtime is 1.00.80.00.0391861
    -> getNewConnection()
    <- getNewConnection(con_hdl=0)
    -> checkEnvironment(con_hdl=0)
    -> connect(con_info_p=0000000000000000)
    Try to connect via secure store (DEFAULT) on connection 0 ...
    *** ERROR => Connect to database failed, rc=1, rcSQL=10
    [dbhdbsql.cpp 332]
    SQLCODE    : 10
    SQLERRTEXT : invalid username or password:
    -> SetSdbDbslCA(errcode=10)
    -> freeConnection(con_hdl=0)
       close all opened locators of connection 0
    } DbSlHDBConnect(rc=99)
    ***LOG BY2=> sql error 10     performing CON [dblink       559]
    ***LOG BY0=> invalid username or password:  [dblink       559]
    *** ERROR => saplikey: failed to connect to the database. [saplikey.c   830]
    release memory of the SIBU buffers
    release memory of the STATEMENT CACHE
    Can you help me please!? This is very urgent!
    Thank you,
    samid raif

    Hello John Appleby,
    I ran the R3trans -d and this is the output:
    4 ETW000 r3trans version 6.24 (release 741 - 10.06.14 - 20:14:07).
    4 ETW000 unicode enabled version
    4 ETW000 ===============================================
    4 ETW000
    4 ETW000 date&time   : 24.08.2014 - 20:22:19
    4 ETW000 control file: <no ctrlfile>
    4 ETW000 R3trans was called as follows: r3trans -d
    4 ETW000  trace at level 2 opened for a given file pointer
    4 ETW000  [     dev trc,00000]  Sun Aug 24 20:22:19 2014                                                 124  0.000124
    4 ETW000  [     dev trc,00000]  db_con_init called                                                       103  0.000227
    4 ETW000  [     dev trc,00000]  set_use_ext_con_info(): usage of ssfs switched off (rsdb/ssfs_connect=0)
    4 ETW000                                                                                                  94  0.000321
    4 ETW000  [     dev trc,00000]  determine_block_commit: no con_hdl found as blocked for con_name = R/3
    4 ETW000                                                                                                  44  0.000365
    4 ETW000  [     dev trc,00000]  create_con (con_name=R/3)                                                 26  0.000391
    4 ETW000  [     dev trc,00000]  Loading DB library 'dbhdbslib.dll' ...                                    64  0.000455
    4 ETW000  [     dev trc,00000]  DlLoadLib success: LoadLibrary("dbhdbslib.dll"), hdl 0, count 1, addr 000007FEEFE00000
    4 ETW000                                                                                                5889  0.006344
    4 ETW000  [     dev trc,00000]      using "S:\usr\sap\ED1\SYS\exe\uc\NTAMD64\dbhdbslib.dll"               35  0.006379
    4 ETW000  [     dev trc,00000]  Library 'dbhdbslib.dll' loaded                                            36  0.006415
    4 ETW000  [     dev trc,00000]  function DbSlExpFuns loaded from library dbhdbslib.dll                    52  0.006467
    4 ETW000  [     dev trc,00000]  Version of 'dbhdbslib.dll' is "741.10", patchlevel (0.43)                111  0.006578
    4 ETW000  [     dev trc,00000]  function dsql_db_init loaded from library dbhdbslib.dll                   39  0.006617
    4 ETW000  [     dev trc,00000]  function dbdd_exp_funs loaded from library dbhdbslib.dll                  63  0.006680
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=0)                                                    81  0.006761
    4 ETW000  [     dev trc,00000]  { DbSlHDBControl(con_hdl=-1,command=39,arg_p=0000000000000000)            40  0.006801
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=0)                                                    29  0.006830
    4 ETW000  [     dev trc,00000]  { DbSlHDBControl(con_hdl=-1,command=10,arg_p=000000000221F280)            34  0.006864
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=0)                                                    29  0.006893
    4 ETW000  [     dev trc,00000]  New connection 0 created                                                  25  0.006918
    4 ETW000  [     dev trc,00000]  0: name = R/3, con_id = -000000001, state = DISCONNECTED, tx = NO , bc = NO , oc = 000, hc = NO , perm = YES, reco = NO , info = NO , timeout = 000, con_max = 255, con_opt = 255, occ = NO , prog = 
    4 ETW000                                                                                                  63  0.006981
    4 ETW000  [     dev trc,00000]  { DbSlHDBControl(con_hdl=-1,command=10,arg_p=0000000141FF5E40)            49  0.007030
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=0)                                                    30  0.007060
    4 ETW000  [     dev trc,00000]  db_con_connect (con_name=R/3)                                             31  0.007091
    4 ETW000  [     dev trc,00000]  determine_block_commit: no con_hdl found as blocked for con_name = R/3
    4 ETW000                                                                                                  42  0.007133
    4 ETW000  [     dev trc,00000]  find_con_by_name found the following connection:                          28  0.007161
    4 ETW000  [     dev trc,00000]  0: name = R/3, con_id = 000000000, state = DISCONNECTED, tx = NO , bc = NO , oc = 000, hc = NO , perm = YES, reco = NO , info = NO , timeout = 000, con_max = 255, con_opt = 255, occ = NO , prog = 
    4 ETW000                                                                                                 124  0.007285
    4 ETW000  [     dev trc,00000]  { DbSlHDBConnect(con_info_p=0000000000000000)                             61  0.007346
    4 ETW000  [     dev trc,00000]  DBHDBSLIB : version 741.10, patch 0.043 (Make PL 0.43)                    65  0.007411
    4 ETW000  [     dev trc,00000]  HDB shared library (dbhdbslib) patchlevels (last 10)                      37  0.007448
    4 ETW000  [     dev trc,00000]    (0.043) R3szchk with partitioned tables (note 2040561)                  32  0.007480
    4 ETW000  [     dev trc,00000]    (0.031) New DBCON syntax for HANA (note 1983389)                        50  0.007530
    4 ETW000  [     dev trc,00000]    (0.028) Bulk insert stop on duplicate, dbsl returncode corrected (note 1996982)
    4 ETW000                                                                                                  51  0.007581
    4 ETW000  [     dev trc,00000]    (0.027) Set DBAREQ class (note 1991383)                                 35  0.007616
    4 ETW000  [     dev trc,00000]    (0.022) Get database version via dbsl call (note 1976918)               36  0.007652
    4 ETW000  [     dev trc,00000]    (0.020) FDA: Core Dump in SELECT ... FOR ALL ENTRIES for tables with strings (note 1970276)
    4 ETW000                                                                                                  53  0.007705
    4 ETW000  [     dev trc,00000]    (0.020) SQL DDL with data aging (note 1897636)                          35  0.007740
    4 ETW000  [     dev trc,00000]    (0.017) Datatype NCLOB missing in tablesize calculation (note 1952609)
    4 ETW000                                                                                                  52  0.007792
    4 ETW000  [     dev trc,00000]    (0.014) Tablesize calculation for HANA optimized (note 1952609)         36  0.007828
    4 ETW000  [     dev trc,00000]    (0.014) Native SQL UPSERT with DataAging (note 1897636)                 32  0.007860
    4 ETW000  [     dev trc,00000]                                                                            22  0.007882
    4 ETW000  [     dev trc,00000]   -> init()                                                                33  0.007915
    4 ETW000  [     dev trc,00000]    STATEMENT_CACHE_SIZE = 1000                                            212  0.008127
    4 ETW000  [     dev trc,00000]   -> init()                                                               615  0.008742
    4 ETW000  [     dev trc,00000]   -> loadClientRuntime()                                                   46  0.008788
    4 ETW000  [     dev trc,00000]  Loading SQLDBC client runtime ...                                         31  0.008819
    4 ETW000  [     dev trc,00000]  SQLDBC Module  : S:\usr\sap\ED1\hdbclient\libSQLDBCHDB.dll              1327  0.010146
    4 ETW000  [     dev trc,00000]  SQLDBC Runtime : libSQLDBCHDB 1.00.80.00 Build 0391861-1510               84  0.010230
    4 ETW000  [     dev trc,00000]  SQLDBC client runtime is 1.00.80.00.0391861                               50  0.010280
    4 ETW000  [     dev trc,00000]   -> getNewConnection()                                                    37  0.010317
    4 ETW000  [     dev trc,00000]   <- getNewConnection(con_hdl=0)                                          100  0.010417
    4 ETW000  [     dev trc,00000]   -> checkEnvironment(con_hdl=0)                                           53  0.010470
    4 ETW000  [     dev trc,00000]   -> connect(con_info_p=0000000000000000)                                  42  0.010512
    4 ETW000  [     dev trc,00000]  Try to connect via secure store (DEFAULT) on connection 0 ...             86  0.010598
    4 ETW000  [dbhdbsql.cpp,00000]  *** ERROR => Connect to database failed, rc=1, rcSQL=10                11122  0.021720
    4 ETW000  [     dev trc,00000]  SQLCODE    : 10                                                           68  0.021788
    4 ETW000  [     dev trc,00000]  SQLERRTEXT : invalid username or password:                                40  0.021828
    4 ETW000  [     dev trc,00000]   -> SetSdbDbslCA(errcode=10)                                              41  0.021869
    4 ETW000  [     dev trc,00000]   -> freeConnection(con_hdl=0)                                             43  0.021912
    4 ETW000  [     dev trc,00000]     close all opened locators of connection 0                              60  0.021972
    4 ETW000  [     dev trc,00000]  } DbSlHDBConnect(rc=99)                                                   65  0.022037
    4 ETW000  [    dblink  ,00000]  ***LOG BY2=>sql error 10     performing CON                               68  0.022105
    4 ETW000  [    dblink  ,00000]  ***LOG BY0=>invalid username or password:                                 35  0.022140
    4 ETW000  [     dev trc,00000]  { DbSlHDBControl(con_hdl=0,command=41,arg_p=0000000140541C48)            107  0.022247
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=0)                                                    79  0.022326
    4 ETW000  [     dev trc,00000]  { DbSlHDBControl(con_hdl=0,command=14,arg_p=0000000002215998)             38  0.022364
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=0)                                                    28  0.022392
    4 ETW000  [     dev trc,00000]  { DbSlHDBControl(con_hdl=0,command=50,arg_p=0000000002215990)             33  0.022425
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=0)                                                    43  0.022468
    4 ETW000  [     dev trc,00000]  { DbSlHDBControl(con_hdl=0,command=13,arg_p=00000000022159B0)             35  0.022503
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=0)                                                    27  0.022530
    4 ETW000  [     dev trc,00000]  { DbSlHDBControl(con_hdl=0,command=52,arg_p=0000000002215A00)             33  0.022563
    4 ETW000  [     dev trc,00000]  } DbSlHDBControl(rc=0)                                                    28  0.022591
    2EETW169 no connect possible: "DBMS = HDB                              ---  SERVER = '' PORT = ''"
    4 ETW000  [     dev trc,00000]  release memory of the SIBU buffers                                      2900  0.025491
    4 ETW000  [     dev trc,00000]  release memory of the STATEMENT CACHE                                     91  0.025582

  • I have a problem with my mozilla. It keeps crashing when i start it.

    Now my mozilla is totally updated to V. 6.0, though it refuses to open except on the WINDOWS safe mode, not MOZILLA safemode, mozilla "-safe-mode" didnt work for me, i checked for the Ulr.bot.c but i wasn't that either, the only .dll without V. info was the mozjs.dll and as i checked it is nessecery for mozilla to run.
    I have windows Xp on my pc, a 1GB procecor and i dont understand why it keeps crashing.It doesnt open at all, it just prompt the chrash report to me. The fact that it works at "Windows-safe mode" i got it right now that i trid it just to make sure..... Any ideas?
    P.S. Google desktop didnt even work for me, i tried to instal the latest Vers. just to make sure the problem wasn't this, but it sayed that the .exe was corrupt, and i dont remember having it installed before, also i dont use the Spector Pro, i heared it for the first time at mozilla "crash-site".
    Please contact me at: [email protected] as soon as possible, a life with Internet Explorer sucks!! :S

    iloverockandroll wrote:
    I have been repeating those steps over and over and still nothing. ...
    Some users have reported that 8 or 9 attempts were necessary before success...
    Pay particular attention to steps 3 and 4.
    iloverockandroll wrote:
    ... should i just go in...
    If you prefer...

  • VPN problems..  Cant connect due to tunneling issues.

    I cant log into my company intranet using my VPN..  other people at my company have no problem using their mac, but I cant seem to get in
    I get this error.
    Network Connect cannot establish a secure session.  Network Connect cannot start the tunneling service. See the Log Viewer for more information.
    Here are the logs if anyone knows what they mean and can help it would be great.
    2011-05-26 17:06:06.204 ncproxyd-admintool[13313] config.info Removing key "ncproxyd_saved_routes" from the persistent store (config.cpp:273)
    2011-05-26 17:06:06.204 ncproxyd-admintool[13313] NCAdminHelper.info removing ncproxyd_saved_routes (NCAdminHelper.cpp:1020)
    2011-05-26 17:06:06.204 ncproxyd-admintool[13313] NCAdminHelper.warn restore_dns_configuration: failed to rename /etc/hosts.bak to /etc/hosts: No such file or directory (NCAdminHelper.cpp:810)
    2011-05-26 17:06:06.214 Network Connect[13291] DSIPC.para Recevied message bytes:  (186) <0><0><0><ba><81>$<9b><dd>&\<11><18><b><4><e0><cd>$<f4><da>2<e3>H<a1><95><df><a 5><7f><17>><9><9f>b<cd>I4<ae><ea>v<fe><81><a6><dd>D<7f><aa>~|G<b6>mV$<a>'u<f0>=< a>Nil<d5>r~n<92><6>=A<e7>#<c5><da>A<9f>O<c3>p<82>E<d><e8><e6>b<fb><15>-<f5><9d>< e9><fa><5><e6>1<f5><9a><fb><a8><d9>m<e7>PmZ<a6><98>I<ee>MP<7f><d1><92><12><9f>30 <dd>|<eb> <b4>X<aa><ce>o<88>l[b<2><d8>6<b7>.K<ba><9c><97><96><7f>]<b3>J<83><eb>.<c><b5><< a><a>eH<a2><b9><12><99><9c><bb><eb>D<bd>|0&<ab>k<fc>`<13><af>6<9d><cf>(T<9d><8d> <e5><fe>7<8f>r<fb> (ipc.cpp:727)
    2011-06-02 13:50:52.231 ../../webserver/:093 [        Thread-9]     [RuntimeExec] Executing ["/bin/sh" "-c" "ps xco 'state,pid,command' | awk '/^[^zZ].+[N]etwork Connect/ { print $2 }'" ]...
    2011-06-02 13:50:52.980 ../../webserver/:100 [        Thread-9]     [RuntimeExec] Process ID = java.lang.UNIXProcess@4d8f9b75
    2011-06-02 13:50:54.012 ../../webserver/:141 [        Thread-9]     [RuntimeExec] ExitValue of waitFor() = 0
    2011-06-02 13:50:54.013 ../../webserver/:166 [        Thread-9]     [RuntimeExec] ... done executing [/bin/sh] waitFor()=[java.lang.UNIXProcess@4d8f9b75] outputStream=[empty -null output stream-] statusStream=[empty -null status stream-]
    DSAppControlThre:000 (06/02 13:50:54.013)[        Thread-9] Checking to see if the application is already running
    2011-06-02 13:50:54.013 ../../webserver/:093 [        Thread-9]     [RuntimeExec] Executing ["/bin/sh" "-c" "ps xaco 'state,pid,command' | awk '/^[^zZ].+[N]etwork Connect/ { print $2 }'" ]...
    2011-06-02 13:50:54.041 ../../webserver/:100 [        Thread-9]     [RuntimeExec] Process ID = java.lang.UNIXProcess@10d4f27
    2011-06-02 13:50:54.214 ../../webserver/:141 [        Thread-9]     [RuntimeExec] ExitValue of waitFor() = 0
    2011-06-02 13:50:54.216 ../../webserver/:166 [        Thread-9]     [RuntimeExec] ... done executing [/bin/sh] waitFor()=[java.lang.UNIXProcess@10d4f27] outputStream=[empty -null output stream-] statusStream=[empty -null status stream-]
    DSAppControlThre:000 (06/02 13:50:54.216)[        Thread-9] The application is NOT already running
    NCAppInstallImpl:000 (06/02 13:50:54.216)[        Thread-9] Attempting to launch the application (mode 1)
    NCAppInstallImpl:000 (06/02 13:50:54.219)[        Thread-9] Running this command: /Applications/Network Connect.app/Contents/MacOS/Network Connect -NCLaunchType 1 -AppleLanguages ( en )
    NCAppInstallImpl:000 (06/02 13:50:54.283)[        Thread-9] Pushing parameter [ProductVersion=14619] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.285)[        Thread-9] Pushing parameter [SystemVersion=6.4.0] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.285)[        Thread-9] Pushing parameter [action=install] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.285)[        Thread-9] Pushing parameter [autolaunch=1] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.285)[        Thread-9] Pushing parameter [cert_md5=d0ba5f2839b732e6972d55ea9e6c40e6] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.285)[        Thread-9] Pushing parameter [dns-suffix=adt.com] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.286)[        Thread-9] Pushing parameter [enable_logging=1] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.286)[        Thread-9] Pushing parameter [enable_logupload=1] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.286)[        Thread-9] Pushing parameter [internal-proxy-config=no] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.286)[        Thread-9] Pushing parameter [ivehost=go.adt.com] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.286)[        Thread-9] Pushing parameter [launch_url=] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.287)[        Thread-9] Pushing parameter [linux_end_script=] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.287)[        Thread-9] Pushing parameter [linux_start_script=] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.287)[        Thread-9] Pushing parameter [locale=en] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.287)[        Thread-9] Pushing parameter [mac_end_script=] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.287)[        Thread-9] Pushing parameter [mac_start_script=] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.287)[        Thread-9] Pushing parameter [ncp_read_timeout=120] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.288)[        Thread-9] Pushing parameter [redir_url=/dana/home/index.cgi] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.288)[        Thread-9] Pushing parameter [redir_win=Please_Wait7819] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.288)[        Thread-9] Pushing parameter [signin_url=/] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.288)[        Thread-9] Pushing parameter [switch-dns-search-order=enabled] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.288)[        Thread-9] Pushing parameter [uninstall_on_quit=0] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.289)[        Thread-9] Pushing parameter [upgradeMode=2] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.289)[        Thread-9] Pushing parameter [win_end_script=] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.289)[        Thread-9] Pushing parameter [win_skip_start_script=0] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.289)[        Thread-9] Pushing parameter [win_start_script=] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.289)[        Thread-9] Pushing parameter [=null] to the app
    NCAppInstallImpl:000 (06/02 13:50:54.289)[        Thread-9] Pushing parameter [cookies=<hidden>] to the app
    DSAppControlThre:000 (06/02 13:50:54.290)[        Thread-9] Checking to see if the application is already running
    2011-06-02 13:50:54.290 ../../webserver/:093 [        Thread-9]     [RuntimeExec] Executing ["/bin/sh" "-c" "ps xco 'state,pid,command' | awk '/^[^zZ].+[N]etwork Connect/ { print $2 }'" ]...
    2011-06-02 13:50:54.324 ../../webserver/:100 [        Thread-9]     [RuntimeExec] Process ID = java.lang.UNIXProcess@56b61c3
    2011-06-02 13:50:54.330 ../../webserver/:045 [       Thread-15]     [RuntimeExec] Result [22538]
    2011-06-02 13:50:54.332 ../../webserver/:141 [        Thread-9]     [RuntimeExec] ExitValue of waitFor() = 0
    2011-06-02 13:50:54.333 ../../webserver/:166 [        Thread-9]     [RuntimeExec] ... done executing [/bin/sh] waitFor()=[java.lang.UNIXProcess@56b61c3] outputStream=[22538] statusStream=[empty -null status stream-]
    NCAppController.:000 (06/02 13:50:54.333)[        Thread-9] Starting quit sequence...
    NCAppController.:000 (06/02 13:50:54.333)[        Thread-9] Cleaning up
    NCAppController.:000 (06/02 13:50:54.333)[        Thread-9] doQuit trying to load /dana/home/index.cgi
    NCAppController.:000 (06/02 13:50:54.333)[        Thread-9] Loading https://go.adt.com/dana/home/index.cgi in current window
    NCAppController.:000 (06/02 13:51:16.724)[applet-NCAppController.class] Entering NCAppController.init() on Thu Jun 02 13:51:16 PDT 2011
    NCAppController.:000 (06/02 13:51:16.724)[applet-NCAppController.class] New NCAppController session release [6.4.0]
    NCAppController.:000 (06/02 13:51:16.724)[applet-NCAppController.class] Build number [14619]
    NCAppController.:000 (06/02 13:51:16.766)[applet-NCAppController.class] This host needs a i386 binary
    NCAppController.:000 (06/02 13:51:16.833)[applet-NCAppController.class] Param ProductVersion=14619
    NCAppController.:000 (06/02 13:51:16.833)[applet-NCAppController.class] Param SystemVersion=6.4.0
    NCAppController.:000 (06/02 13:51:16.833)[applet-NCAppController.class] Param action=install
    NCAppController.:000 (06/02 13:51:16.834)[applet-NCAppController.class] Param autolaunch=0
    NCAppController.:000 (06/02 13:51:16.834)[applet-NCAppController.class] Param cert_md5=d0ba5f2839b732e6972d55ea9e6c40e6
    NCAppController.:000 (06/02 13:51:16.834)[applet-NCAppController.class] Param dns-suffix=adt.com
    NCAppController.:000 (06/02 13:51:16.834)[applet-NCAppController.class] Param enable_logging=1
    NCAppController.:000 (06/02 13:51:16.834)[applet-NCAppController.class] Param enable_logupload=1
    NCAppController.:000 (06/02 13:51:16.834)[applet-NCAppController.class] Param internal-proxy-config=no
    NCAppController.:000 (06/02 13:51:16.834)[applet-NCAppController.class] Param ivehost=go.adt.com
    NCAppController.:000 (06/02 13:51:16.835)[applet-NCAppController.class] Param launch_url=
    NCAppController.:000 (06/02 13:51:16.835)[applet-NCAppController.class] Param linux_end_script=
    NCAppController.:000 (06/02 13:51:16.835)[applet-NCAppController.class] Param linux_start_script=
    NCAppController.:000 (06/02 13:51:16.835)[applet-NCAppController.class] Param locale=en
    NCAppController.:000 (06/02 13:51:16.835)[applet-NCAppController.class] Param mac_end_script=
    NCAppController.:000 (06/02 13:51:16.835)[applet-NCAppController.class] Param mac_start_script=
    NCAppController.:000 (06/02 13:51:16.836)[applet-NCAppController.class] Param ncp_read_timeout=120
    NCAppController.:000 (06/02 13:51:16.836)[applet-NCAppController.class] Param redir_url=/dana/home/starter.cgi?startpageonly=1
    NCAppController.:000 (06/02 13:51:16.836)[applet-NCAppController.class] Param redir_win=Please_Wait7819
    NCAppController.:000 (06/02 13:51:16.836)[applet-NCAppController.class] Param signin_url=/
    NCAppController.:000 (06/02 13:51:16.836)[applet-NCAppController.class] Param switch-dns-search-order=enabled
    NCAppController.:000 (06/02 13:51:16.836)[applet-NCAppController.class] Param uninstall_on_quit=0
    NCAppController.:000 (06/02 13:51:16.837)[applet-NCAppController.class] Param upgradeMode=2
    NCAppController.:000 (06/02 13:51:16.837)[applet-NCAppController.class] Param win_end_script=
    NCAppController.:000 (06/02 13:51:16.837)[applet-NCAppController.class] Param win_skip_start_script=0
    NCAppController.:000 (06/02 13:51:16.837)[applet-NCAppController.class] Param win_start_script=
    NCAppController.:000 (06/02 13:51:16.837)[applet-NCAppController.class] Param =null
    NCAppController.:000 (06/02 13:51:16.837)[applet-NCAppController.class] Param cookies=<hidden>
    DSAppControlThre:000 (06/02 13:51:16.841)[       Thread-21] Beginning install...
    NCAppInstallImpl:000 (06/02 13:51:16.841)[       Thread-21] Checking installed version
    NCAppInstallImpl:000 (06/02 13:51:16.911)[       Thread-21] Version on disk is 14619
    NCAppInstallImpl:000 (06/02 13:51:16.911)[       Thread-21] This version is 14619
    NCAppInstallImpl:000 (06/02 13:51:16.911)[       Thread-21] Checking if correct locale is installed
    DSAppControlThre:000 (06/02 13:51:16.912)[       Thread-21] Checking to see if the application is already running
    2011-06-02 13:51:10.387 Network Connect[22538] NCController.info -applicationDidFinishLaunching: Network Connect 6.4.0 (14619)/Version 10.6.6 (Build 10J567) starting (NCController.m:98)
    2011-06-02 13:51:10.721 Network Connect[22538] NCController.info -applicationDidFinishLaunching: launched from applet/application launcher (launchType: 1), waiting for parameters (NCController.m:133)
    2011-06-02 13:51:10.762 Network Connect[22538] DSIPCConnection.info -_clearIPCBuffer: Clearing the IPC buffer (DSIPCConnection.mm:526)
    2011-06-02 13:51:11.386 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter internal-proxy-config = "no" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.387 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received internal-proxy-config = no (NCController.m:1297)
    2011-06-02 13:51:11.387 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter ivehost = "go.adt.com" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.387 Network Connect[22538] NCController.info -ipc:appletSetIVEParameter:: applet says to connect to go.adt.com. (NCController+NCIPC.m:13)
    2011-06-02 13:51:11.387 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received ivehost = go.adt.com (NCController.m:1297)
    2011-06-02 13:51:11.387 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter launch_url = "" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.387 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received launch_url =  (NCController.m:1297)
    2011-06-02 13:51:11.387 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter linux_end_script = "" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.387 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received linux_end_script =  (NCController.m:1297)
    2011-06-02 13:51:11.387 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter linux_start_script = "" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.387 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received linux_start_script =  (NCController.m:1297)
    2011-06-02 13:51:11.387 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter locale = "en" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.387 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received locale = en (NCController.m:1297)
    2011-06-02 13:51:11.387 Network Connect[22538] NCController.info -loginWindowController:setClientParameter:value: saving locale preference (
        en
    ) as AppleLanguages for use on next launch. (NCController.m:1324)
    2011-06-02 13:51:11.388 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter mac_end_script = "" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.388 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received mac_end_script =  (NCController.m:1297)
    2011-06-02 13:51:11.388 Network Connect[22538] NCScriptLauncher.info -scheduleScriptAtPath:forEventIdentifier: scheduled  for NCScriptLauncherPostDisconnectEventIdentifier (NCScriptLauncher.m:35)
    2011-06-02 13:51:11.388 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter mac_start_script = "" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.388 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received mac_start_script =  (NCController.m:1297)
    2011-06-02 13:51:11.388 Network Connect[22538] NCScriptLauncher.info -scheduleScriptAtPath:forEventIdentifier: scheduled  for NCScriptLauncherPostConnectEventIdentifier (NCScriptLauncher.m:35)
    2011-06-02 13:51:11.388 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter ncp_read_timeout = "120" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.388 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received ncp_read_timeout = 120 (NCController.m:1297)
    2011-06-02 13:51:11.388 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter redir_url = "/dana/home/index.cgi" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.388 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received redir_url = /dana/home/index.cgi (NCController.m:1297)
    2011-06-02 13:51:11.388 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter redir_win = "Please_Wait7819" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.388 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received redir_win = Please_Wait7819 (NCController.m:1297)
    2011-06-02 13:51:11.388 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter signin_url = "/" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.388 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received signin_url = / (NCController.m:1297)
    2011-06-02 13:51:11.388 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter switch-dns-search-order = "enabled" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.388 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received switch-dns-search-order = enabled (NCController.m:1297)
    2011-06-02 13:51:11.389 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter uninstall_on_quit = "0" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.389 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received uninstall_on_quit = 0 (NCController.m:1297)
    2011-06-02 13:51:11.389 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter upgradeMode = "2" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.389 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received upgradeMode = 2 (NCController.m:1297)
    2011-06-02 13:51:11.389 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter win_end_script = "" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.389 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received win_end_script =  (NCController.m:1297)
    2011-06-02 13:51:11.389 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter win_skip_start_script = "0" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.389 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received win_skip_start_script = 0 (NCController.m:1297)
    2011-06-02 13:51:11.389 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter win_start_script = "" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.389 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received win_start_script =  (NCController.m:1297)
    2011-06-02 13:51:11.389 Network Connect[22538] NCController.para -ipc:appletSetIVEParameter:: received applet parameter cookies = "DSLastAccess=1307047821; DSFirstAccess=1307047819; DSID=bff2f274c3d8f863f7e631151c7a9bd3; DSSignInURL=/" (NCController+NCIPC.m:10)
    2011-06-02 13:51:11.389 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received DSLastAccess = 1307047821 (NCController.m:1297)
    2011-06-02 13:51:11.389 Network Connect[22538] DSSessionContext.info -addCookieWithName:domain:value: Adding cookie with name DSLastAccess, domain go.adt.com, and value <hidden> (DSSessionContext.m:81)
    2011-06-02 13:51:11.389 Network Connect[22538] DSSessionContext.info -cookie: Didn't find DSLastAccess cookie! (DSSessionContext.m:68)
    2011-06-02 13:51:11.814 Network Connect[22538] DSSessionContext.info -addCookieWithName:domain:value: Creating a new DSLastAccess cookie (DSSessionContext.m:148)
    2011-06-02 13:51:11.814 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received DSFirstAccess = 1307047819 (NCController.m:1297)
    2011-06-02 13:51:11.814 Network Connect[22538] DSSessionContext.info -addCookieWithName:domain:value: Adding cookie with name DSFirstAccess, domain go.adt.com, and value <hidden> (DSSessionContext.m:81)
    2011-06-02 13:51:11.814 Network Connect[22538] DSSessionContext.info -cookie: Didn't find DSFirstAccess cookie! (DSSessionContext.m:68)
    2011-06-02 13:51:11.887 Network Connect[22538] DSSessionContext.info -addCookieWithName:domain:value: Creating a new DSFirstAccess cookie (DSSessionContext.m:148)
    2011-06-02 13:51:11.887 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received DSID = bff2f274c3d8f863f7e631151c7a9bd3 (NCController.m:1297)
    2011-06-02 13:51:11.887 Network Connect[22538] DSSessionContext.info -addCookieWithName:domain:value: Adding cookie with name DSID, domain go.adt.com, and value <hidden> (DSSessionContext.m:81)
    2011-06-02 13:51:11.887 Network Connect[22538] DSSessionContext.info -cookie: Didn't find DSID cookie! (DSSessionContext.m:68)
    2011-06-02 13:51:11.887 Network Connect[22538] DSSessionContext.info -addCookieWithName:domain:value: Creating a new DSID cookie (DSSessionContext.m:148)
    2011-06-02 13:51:11.887 Network Connect[22538] NCController.para -loginWindowController:setClientParameter:value: received DSSignInURL = / (NCController.m:1297)
    2011-06-02 13:51:11.887 Network Connect[22538] DSSessionContext.info -addCookieWithName:domain:value: Adding cookie with name DSSignInURL, domain go.adt.com, and value <hidden> (DSSessionContext.m:81)
    2011-06-02 13:51:11.887 Network Connect[22538] DSSessionContext.info -cookie: Didn't find DSSignInURL cookie! (DSSessionContext.m:68)
    2011-06-02 13:51:11.887 Network Connect[22538] DSSessionContext.info -addCookieWithName:domain:value: Creating a new DSSignInURL cookie (DSSessionContext.m:148)
    2011-06-02 13:51:12.393 Network Connect[22538] DSLoginWindowController.info -windowDidLoad setting user-agent to Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/6533.20.25 (KHTML, like Gecko) Network Connect (like Safari)/14619 (DSLoginWindowController.m:105)
    2011-06-02 13:51:14.343 Network Connect[22538] DSLoginWindowController.info -showWindowWithWebLogin No proxy to resolve.. (DSLoginWindowController.m:824)
    2011-06-02 13:51:14.343 Network Connect[22538] NCController.info -enterResolvingProxiesStateWithOldState: reconfiguring and resolving proxies (NCController+NCStateChanges.m:112)
    2011-06-02 13:51:14.344 Network Connect[22538] NCController.info -reconfigure Reconfiguring on en1 (NCController.m:824)
    2011-06-02 13:51:14.789 Network Connect[22538] DSHTTPSProxyResolver.info -resolveProxiesInBackground No HTTPS proxy (DSHTTPSProxyResolver.m:378)
    2011-06-02 13:51:15.227 Network Connect[22538] nc.mac.app.1200.error <DSError 0x2a04f0 domain=nc.mac.app code=1200 "Network Connect can't launch service" userInfo={
        DSErrorClassName = NCController;
        DSErrorLocalizedAlertText = "Network Connect cannot start the tunneling service. See the Log Viewer for more information.";
        DSErrorLocalizedAlertTitle = "Network Connect cannot establish a secure session.";
        DSErrorLocalizedFirstButtonTitle = Cancel;
        DSErrorLocalizedSecondButtonTitle = DSOptions;
        DSErrorMethodName = "enterWaitingOnServiceStateWithOldState:";
        DSErrorStackBackTrace =     (
            "atos not installed: hex trace: 0x11007e97  0x110088d5  0x105f8  0x3fd6  0x12008469  0x12008d6c  0x3fd6  0x1201914d  0xf7e0  0x9867cedd  0x9867ce48  0x986b9698  0x11016b46  0x11006148  0x110063ba  0x11017f4e  0x96cb5588  0x9865e793  0x9865e19a  0x96caa384  0x96d82038  0x986424cb  0x9863ff8f  0x9863f464  0x9863f291  0x92884004  0x92883cf7  0x92883c40  0x96f5b78d  0x96f5afce  0x96f1d247  0x96f152d9  0xde2a  0x2656  0x2571  0x5"
        path = "/usr/local/juniper/nc/6.4.0/ncproxyd";
        reason = "working directory doesn't exist.";
    } (NCController+NCStateChanges.m:160)>
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info ifconfig -a: lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 16384
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info           inet6 ::1 prefixlen 128
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info           inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info           inet 127.0.0.1 netmask 0xff000000
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info gif0: flags=8010<POINTOPOINT,MULTICAST> mtu 1280
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info stf0: flags=0<> mtu 1280
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info en0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info           ether d4:9a:20:ec:fe:36
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info           media: autoselect
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info           status: inactive
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info en1: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info           ether 34:15:9e:8d:11:36
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info           inet6 fe80::3615:9eff:fe8d:1136%en1 prefixlen 64 scopeid 0x5
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info           inet 192.168.1.65 netmask 0xffffff00 broadcast 192.168.1.255
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info           inet6 ::3615:9eff:fe8d:1136 prefixlen 64 autoconf
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info           media: autoselect
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info           status: active
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info netstat -rnf inet: -a: Routing tables
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info Internet:
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info Destination        Gateway            Flags        Refs      Use   Netif Expire
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info default            192.168.1.254      UGSc           28        0     en1
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info 127                127.0.0.1          UCS             0        0     lo0
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info 127.0.0.1          127.0.0.1          UH              0      958     lo0
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info 169.254            link#5             UCS             0        0     en1
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info 192.168.1          link#5             UCS             6        0     en1
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info 192.168.1.64       0:1b:63:f3:64:4f   UHLWI           0        0     en1    239
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info 192.168.1.65       127.0.0.1          UHS             0      703     lo0
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info 192.168.1.70       24:ab:81:fd:8:46   UHLWI           0        0     en1    100
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info 192.168.1.74       0:1b:63:c8:71:2    UHLWI           1      627     en1    548
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info 192.168.1.254      0:1b:5b:6e:35:a1   UHLWI          39      226     en1   1199
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info 192.168.1.255      link#5             UHLWbI          2       85     en1
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info resolv.conf: #
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info # Mac OS X Notice
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info #
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info # This file is not used by the host name and address resolution
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info # or the DNS query routing mechanisms used by most processes on
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info # this Mac OS X system.
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info #
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info # This file is automatically generated.
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info #
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info domain gateway.2wire.net
    2011-06-02 13:51:15.294 Network Connect[22538] diag.info nameserver 192.168.1.254
    2011-06-02 13:51:16.912 ../../webserver/:093 [       Thread-21]     [RuntimeExec] Executing ["/bin/sh" "-c" "ps xco 'state,pid,command' | awk '/^[^zZ].+[N]etwork Connect/ { print $2 }'" ]...
    2011-06-02 13:51:16.964 ../../webserver/:100 [       Thread-21]     [RuntimeExec] Process ID = java.lang.UNIXProcess@cc7f9e
    2011-06-02 13:51:16.970 ../../webserver/:045 [       Thread-23]     [RuntimeExec] Result [22538]
    2011-06-02 13:51:16.972 ../../webserver/:141 [       Thread-21]     [RuntimeExec] ExitValue of waitFor() = 0
    2011-06-02 13:51:16.972 ../../webserver/:166 [       Thread-21]     [RuntimeExec] ... done executing [/bin/sh] waitFor()=[java.lang.UNIXProcess@cc7f9e] outputStream=[22538] statusStream=[empty -null status stream-]
    DSAppControlThre:000 (06/02 13:51:16.973)[       Thread-21] The application is already running with PID 22538
    NCAppController.:000 (06/02 13:51:18.775)[       Thread-21] Starting quit sequence...
    NCAppController.:000 (06/02 13:51:18.776)[       Thread-21] Cleaning up
    NCAppController.:000 (06/02 13:51:18.777)[       Thread-21] doQuit trying to load /dana/home/starter.cgi?startpageonly=1
    NCAppController.:000 (06/02 13:51:18.777)[       Thread-21] Loading https://go.adt.com/dana/home/starter.cgi?startpageonly=1 in current window
    NCAppController.:000 (06/02 13:58:03.266)[applet-NCAppController.class] Entering NCAppController.init() on Thu Jun 02 13:58:03 PDT 2011
    NCAppController.:000 (06/02 13:58:03.311)[applet-NCAppController.class] New NCAppController session release [6.4.0]
    NCAppController.:000 (06/02 13:58:03.311)[applet-NCAppController.class] Build number [14619]
    NCAppController.:000 (06/02 13:58:03.387)[applet-NCAppController.class] This host needs a i386 binary
    NCAppController.:000 (06/02 13:58:03.452)[applet-NCAppController.class] Param ProductVersion=14619
    NCAppController.:000 (06/02 13:58:03.452)[applet-NCAppController.class] Param SystemVersion=6.4.0
    NCAppController.:000 (06/02 13:58:03.452)[applet-NCAppController.class] Param action=install
    NCAppController.:000 (06/02 13:58:03.452)[applet-NCAppController.class] Param autolaunch=0
    NCAppController.:000 (06/02 13:58:03.452)[applet-NCAppController.class] Param cert_md5=d0ba5f2839b732e6972d55ea9e6c40e6
    NCAppController.:000 (06/02 13:58:03.452)[applet-NCAppController.class] Param dns-suffix=adt.com
    NCAppController.:000 (06/02 13:58:03.453)[applet-NCAppController.class] Param enable_logging=1
    NCAppController.:000 (06/02 13:58:03.453)[applet-NCAppController.class] Param enable_logupload=1
    NCAppController.:000 (06/02 13:58:03.453)[applet-NCAppController.class] Param internal-proxy-config=no
    NCAppController.:000 (06/02 13:58:03.453)[applet-NCAppController.class] Param ivehost=go.adt.com
    NCAppController.:000 (06/02 13:58:03.453)[applet-NCAppController.class] Param launch_url=
    NCAppController.:000 (06/02 13:58:03.453)[applet-NCAppController.class] Param linux_end_script=
    NCAppController.:000 (06/02 13:58:03.496)[applet-NCAppController.class] Param linux_start_script=
    NCAppController.:000 (06/02 13:58:03.496)[applet-NCAppController.class] Param locale=en
    NCAppController.:000 (06/02 13:58:03.496)[applet-NCAppController.class] Param mac_end_script=
    NCAppController.:000 (06/02 13:58:03.497)[applet-NCAppController.class] Param mac_start_script=
    NCAppController.:000 (06/02 13:58:03.497)[applet-NCAppController.class] Param ncp_read_timeout=120
    NCAppController.:000 (06/02 13:58:03.497)[applet-NCAppController.class] Param redir_url=/dana/home/starter.cgi?startpageonly=1
    NCAppController.:000 (06/02 13:58:03.498)[applet-NCAppController.class] Param redir_win=Please_Wait7819
    NCAppController.:000 (06/02 13:58:03.498)[applet-NCAppController.class] Param signin_url=/
    NCAppController.:000 (06/02 13:58:03.498)[applet-NCAppController.class] Param switch-dns-search-order=enabled
    NCAppController.:000 (06/02 13:58:03.498)[applet-NCAppController.class] Param uninstall_on_quit=0
    NCAppController.:000 (06/02 13:58:03.498)[applet-NCAppController.class] Param upgradeMode=2
    NCAppController.:000 (06/02 13:58:03.498)[applet-NCAppController.class] Param win_end_script=
    NCAppController.:000 (06/02 13:58:03.499)[applet-NCAppController.class] Param win_skip_start_script=0
    NCAppController.:000 (06/02 13:58:03.499)[applet-NCAppController.class] Param win_start_script=
    NCAppController.:000 (06/02 13:58:03.499)[applet-NCAppController.class] Param =null
    NCAppController.:000 (06/02 13:58:03.499)[applet-NCAppController.class] Param cookies=<hidden>
    DSAppControlThre:000 (06/02 13:58:03.505)[       Thread-29] Beginning install...
    NCAppInstallImpl:000 (06/02 13:58:03.505)[       Thread-29] Checking installed version
    NCAppInstallImpl:000 (06/02 13:58:03.534)[       Thread-29] Version on disk is 14619
    NCAppInstallImpl:000 (06/02 13:58:03.534)[       Thread-29] This version is 14619
    NCAppInstallImpl:000 (06/02 13:58:03.534)[       Thread-29] Checking if correct locale is installed
    DSAppControlThre:000 (06/02 13:58:03.570)[       Thread-29] Checking to see if the application is already running
    2011-06-02 13:51:38.496 Network Connect[22538] NCProxyMonitor.warn -quit quitting ncproxyd (0) (NCProxyMonitor.mm:132)
    2011-06-02 13:51:38.496 Network Connect[22538] DSIPCConnection.warn -enqueueMessageWithName:types: IPC message nc_quit sent while _writeFileHandle == nil (DSIPCConnection.mm:455)
    2011-06-02 13:51:38.531 Network Connect[22538] NCAdminFunctions.info calling ncproxyd to restore system configuration. (NCAdminFunctions.mm:111)
    2011-06-02 13:51:38.779 Network Connect[22538] http_connection.para Starting a timed connect with SSL session 0x2bdd30, proxy 0:0, and timeout 30 (http_connection.cpp:175)
    2011-06-02 13:51:38.779 Network Connect[22538] http_connection.para Entering state_start_connection (http_connection.cpp:285)
    2011-06-02 13:51:38.806 ncproxyd-admintool[22557] DSIPC.para Recevied message bytes:  (52) <0><0><0>4<a1><4><85><d8>/X<16>>1<1c><ff><c7>:<f4><db>2<e4>c<bc><82><c9><8f>`<1 a>M<14><fa>.<f><a>2<c0><8c><1f><99><87><fc><d7>Ud<ab>u<10><7><96>w<1f><fc> (ipc.cpp:727)
    2011-06-02 13:51:38.846 Network Connect[22538] http_connection.para Entering state_continue_connection (http_connection.cpp:302)
    2011-06-02 13:51:38.846 ncproxyd-admintool[22557] NCAdminHelper.info looking for ncproxyd in 63 processes (NCAdminHelper.cpp:1131)
    2011-06-02 13:51:38.847 Network Connect[22538] http_connection.para Entering state_ssl_connect (http_connection.cpp:471)
    2011-06-02 13:51:38.847 ncproxyd-admintool[22557] rmon.info got system route 0.0.0.0/0.0.0.0 gw 192.168.1.254 metric 1 via 0x00000000 (routemon.cpp:572)
    2011-06-02 13:51:38.847 ncproxyd-admintool[22557] rmon.info got system route 127.0.0.0/255.0.0.0 gw 127.0.0.1 metric 1 via 0x00000000 (routemon.cpp:572)
    2011-06-02 13:51:38.847 ncproxyd-admintool[22557] rmon.info got system route 127.0.0.1/255.255.255.255 gw 127.0.0.1 metric 1 via 0x00000000 (routemon.cpp:572)
    2011-06-02 13:51:38.847 ncproxyd-admintool[22557] rmon.info got system route 169.254.0.0/255.255.0.0 gw 0.0.0.0 metric 1 via 0x00000005 (routemon.cpp:572)
    2011-06-02 13:51:38.847 ncproxyd-admintool[22557] rmon.info got system route 192.168.1.0/255.255.255.0 gw 0.0.0.0 metric 1 via 0x00000005 (routemon.cpp:572)
    2011-06-02 13:51:38.847 ncproxyd-admintool[22557] rmon.info got system route 192.168.1.65/255.255.255.255 gw 127.0.0.1 metric 1 via 0x00000000 (routemon.cpp:572)
    2011-06-02 13:51:38.847 ncproxyd-admintool[22557] ncproxyd.info No added routes to delete (ncproxyd.cpp:242)
    2011-06-02 13:51:38.847 ncproxyd-admintool[22557] config.info Removing key "ncproxyd_added_routes" from the persistent store (config.cpp:273)
    2011-06-02 13:51:38.847 ncproxyd-admintool[22557] NCAdminHelper.info removing ncproxyd_added_routes (NCAdminHelper.cpp:1020)
    2011-06-02 13:51:38.847 ncproxyd-admintool[22557] ncproxyd.info No routes to restore (ncproxyd.cpp:251)
    2011-06-02 13:51:38.847 ncproxyd-admintool[22557] config.info Removing key "ncproxyd_saved_routes" from the persistent store (config.cpp:273)
    2011-06-02 13:51:38.847 ncproxyd-admintool[22557] NCAdminHelper.info removing ncproxyd_saved_routes (NCAdminHelper.cpp:1020)
    2011-06-02 13:51:38.848 ncproxyd-admintool[22557] NCAdminHelper.warn restore_dns_configuration: failed to rename /etc/hosts.bak to /etc/hosts: No such file or directory (NCAdminHelper.cpp:810)
    2011-06-02 13:51:38.917 Network Connect[22538] DSIPC.para Recevied message bytes:  (186) <0><0><0><ba><81>$<9b><dd>&\<11><18><b><4><e0><cd>$<f4><da>2<e3>H<a1><95><df><a 5><7f><17>><9><9f><12>|<c9>4<ae><ea>v<fe><81><a6><dd>D<7f><aa>~|G<b6>mV$<a>'u<f0 >=<a>Nil<d5>r~n<92><6>=A<e7>#<c5><da>A<9f>O<c3>p<82>E<d><e8><e6>b<fb><15>-<f5><9 d><e9><fa><5><e6>1<f5><9a><fb><a8><d9>m<e7>PmZ<a6><98>I<ee>MP<7f><d1><92><12><9f >30 <dd>|<eb> <b4>X<aa><ce>o<88>l[b<2><d8>6<b7>.K<ba><9c><97><96><7f>]<b3>J<83><eb>.<c><b5><< a><a>eH<a2><b9><12><99><9c><bb><eb>D<bd>|0&<ab>k<fc>`<13><af>6<9d><cf>(T<9d><8d> <e5><fe>7<8f>r<fb> (ipc.cpp:727)
    2011-06-02 13:58:03.569 ../../webserver/:093 [       Thread-29]     [RuntimeExec] Executing ["/bin/sh" "-c" "ps xco 'state,pid,command' | awk '/^[^zZ].+[N]etwork Connect/ { print $2 }'" ]...
    2011-06-02 13:58:03.607 ../../webserver/:100 [       Thread-29]     [RuntimeExec] Process ID = java.lang.UNIXProcess@2af6a882
    2011-06-02 13:58:03.679 ../../webserver/:141 [       Thread-29]     [RuntimeExec] ExitValue of waitFor() = 0
    2011-06-02 13:58:03.680 ../../webserver/:166 [       Thread-29]     [RuntimeExec] ... done executing [/bin/sh] waitFor()=[java.lang.UNIXProcess@2af6a882] outputStream=[empty -null output stream-] statusStream=[empty -null status stream-]
    DSAppControlThre:000 (06/02 13:58:03.681)[       Thread-29] Checking to see if the application is already running
    2011-06-02 13:58:03.680 ../../webserver/:093 [       Thread-29]     [RuntimeExec] Executing ["/bin/sh" "-c" "ps xaco 'state,pid,command' | awk '/^[^zZ].+[N]etwork Connect/ { print $2 }'" ]...
    2011-06-02 13:58:03.720 ../../webserver/:100 [       Thread-29]     [RuntimeExec] Process ID = java.lang.UNIXProcess@6a25b72a
    2011-06-02 13:58:03.736 ../../webserver/:141 [       Thread-29]     [RuntimeExec] ExitValue of waitFor() = 0
    2011-06-02 13:58:03.737 ../../webserver/:166 [       Thread-29]     [RuntimeExec] ... done executing [/bin/sh] waitFor()=[java.lang.UNIXProcess@6a25b72a] outputStream=[empty -null output stream-] statusStream=[empty -null status stream-]
    DSAppControlThre:000 (06/02 13:58:03.738)[       Thread-29] The application is NOT already running
    NCAppInstallImpl:000 (06/02 13:58:03.740)[       Thread-29] Attempting to launch the application (mode 1)
    NCAppInstallImpl:000 (06/02 13:58:03.741)[       Thread-29] Running this command: /Applications/Network Connect.app/Contents/MacOS/Network Connect -NCLaunchType 1 -AppleLanguages ( en )
    NCAppInstallImpl:000 (06/02 13:58:03.809)[       Thread-29] Pushing parameter [ProductVersion=14619] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.810)[       Thread-29] Pushing parameter [SystemVersion=6.4.0] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.866)[       Thread-29] Pushing parameter [action=install] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.866)[       Thread-29] Pushing parameter [autolaunch=0] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.867)[       Thread-29] Pushing parameter [cert_md5=d0ba5f2839b732e6972d55ea9e6c40e6] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.867)[       Thread-29] Pushing parameter [dns-suffix=adt.com] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.867)[       Thread-29] Pushing parameter [enable_logging=1] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.868)[       Thread-29] Pushing parameter [enable_logupload=1] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.868)[       Thread-29] Pushing parameter [internal-proxy-config=no] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.868)[       Thread-29] Pushing parameter [ivehost=go.adt.com] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.868)[       Thread-29] Pushing parameter [launch_url=] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.868)[       Thread-29] Pushing parameter [linux_end_script=] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.868)[       Thread-29] Pushing parameter [linux_start_script=] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.869)[       Thread-29] Pushing parameter [locale=en] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.869)[       Thread-29] Pushing parameter [mac_end_script=] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.869)[       Thread-29] Pushing parameter [mac_start_script=] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.869)[       Thread-29] Pushing parameter [ncp_read_timeout=120] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.869)[       Thread-29] Pushing parameter [redir_url=/dana/home/starter.cgi?startpageonly=1] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.869)[       Thread-29] Pushing parameter [redir_win=Please_Wait7819] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.870)[       Thread-29] Pushing parameter [signin_url=/] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.870)[       Thread-29] Pushing parameter [switch-dns-search-order=enabled] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.870)[       Thread-29] Pushing parameter [uninstall_on_quit=0] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.870)[       Thread-29] Pushing parameter [upgradeMode=2] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.870)[       Thread-29] Pushing parameter [win_end_script=] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.870)[       Thread-29] Pushing parameter [win_skip_start_script=0] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.871)[       Thread-29] Pushing parameter [win_start_script=] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.871)[       Thread-29] Pushing parameter [=null] to the app
    NCAppInstallImpl:000 (06/02 13:58:03.871)[       Thread-29] Pushing parameter [cookies=<hidden>] to the app
    DSAppControlThre:000 (06/02 13:58:03.871)[       Thread-29] Checking to see if the application is already running
    2011-06-02 13:58:03.871 ../../webserver/:093 [       Thread-29]     [RuntimeExec] Executing ["/bin/sh" "-c" "ps xco 'state,pid,command' | awk '/^[^zZ].+[N]etwork Connect/ { print $2 }'" ]...
    2011-06-02 13:58:03.916 ../../webserver/:100 [       Thread-29]     [RuntimeExec] Process ID = java.lang.UNIXProcess@6dabbec4
    2011-06-02 13:58:03.920 ../../webserver/:045 [       Thread-35]     [RuntimeExec] Result [22587]
    2011-06-02 13:58:03.921 ../../webserver/:141 [       Thread-29]     [RuntimeExec] ExitValue of waitFor() = 0
    2011-06-02 13:58:03.921 ../../webserver/:166 [       Thread-29]     [RuntimeExec] ... done executing [/bin/sh] waitFor()=[java.lang.UNIXProcess@6dabbec4] outputStream=[22587] statusStream=[empty -null status stream-]
    NCAppController.:000 (06/02 13:58:03.922)[       Thread-29] Starting quit sequence...
    NCAppController.:000 (06/02 13:58:03.922)[       Thread-29] Cleaning up
    NCAppController.:000 (06/02 13:58:03.923)[       Thread-29] doQuit trying to load /dana/home/starter.cgi?startpageonly=1
    NCAppController.:000 (06/02 13:58:03.923)[       Thread-29] Loading https://go.adt.com/dana/home/starter.cgi?startpageonly=1 in current window
    2011-06-02 13:58:08.899 Network Connect[22587] NCController.info -applicationDidFinishLaunching: Network Connect 6.4.0 (14619)/Version 10.6.6 (Build 10J567) starting (NCController.m:98)
    2011-06-02 13:58:09.111 Network Connect[22587] NCController.info -applicationDidFinishLaunching: launched from applet/application launcher (launchType: 1), waiting for parameters (NCController.m:133)
    2011-06-02 13:58:09.113 Network Connect[22587] DSIPCConnection.info -_clearIPCBuffer: Clearing the IPC buffer (DSIPCConnection.mm:526)
    2011-06-02 13:58:09.154 Network Connect[22587] DSSessionContext.info -addCookieWithName:domain:value: Creating a new DSFirstAccess cookie (DSSessionContext.m:148)
    2011-06-02 13:58:09.154 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received DSID = bff2f274c3d8f863f7e631151c7a9bd3 (NCController.m:1297)
    2011-06-02 13:58:09.154 Network Connect[22587] DSSessionContext.info -addCookieWithName:domain:value: Adding cookie with name DSID, domain go.adt.com, and value <hidden> (DSSessionContext.m:81)
    2011-06-02 13:58:09.154 Network Connect[22587] DSSessionContext.info -cookie: Didn't find DSID cookie! (DSSessionContext.m:68)
    2011-06-02 13:58:09.154 Network Connect[22587] DSSessionContext.info -addCookieWithName:domain:value: Creating a new DSID cookie (DSSessionContext.m:148)
    2011-06-02 13:58:09.155 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received DSSignInURL = / (NCController.m:1297)
    2011-06-02 13:58:09.155 Network Connect[22587] DSSessionContext.info -addCookieWithName:domain:value: Adding cookie with name DSSignInURL, domain go.adt.com, and value <hidden> (DSSessionContext.m:81)
    2011-06-02 13:58:09.155 Network Connect[22587] DSSessionContext.info -cookie: Didn't find DSSignInURL cookie! (DSSessionContext.m:68)
    2011-06-02 13:58:09.155 Network Connect[22587] DSSessionContext.info -addCookieWithName:domain:value: Creating a new DSSignInURL cookie (DSSessionContext.m:148)
    2011-06-02 13:58:09.174 Network Connect[22587] DSLoginWindowController.info -windowDidLoad setting user-agent to Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/6533.20.25 (KHTML, like Gecko) Network Connect (like Safari)/14619 (DSLoginWindowController.m:105)
    2011-06-02 13:58:09.387 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter internal-proxy-config = "no" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.391 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received internal-proxy-config = no (NCController.m:1297)
    2011-06-02 13:58:09.392 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter ivehost = "go.adt.com" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.392 Network Connect[22587] NCController.info -ipc:appletSetIVEParameter:: applet says to connect to go.adt.com. (NCController+NCIPC.m:13)
    2011-06-02 13:58:09.393 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received ivehost = go.adt.com (NCController.m:1297)
    2011-06-02 13:58:09.393 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter launch_url = "" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.394 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received launch_url =  (NCController.m:1297)
    2011-06-02 13:58:09.394 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter linux_end_script = "" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.395 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received linux_end_script =  (NCController.m:1297)
    2011-06-02 13:58:09.395 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter linux_start_script = "" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.396 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received linux_start_script =  (NCController.m:1297)
    2011-06-02 13:58:09.396 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter locale = "en" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.396 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received locale = en (NCController.m:1297)
    2011-06-02 13:58:09.397 Network Connect[22587] NCController.info -loginWindowController:setClientParameter:value: saving locale preference (
        en
    ) as AppleLanguages for use on next launch. (NCController.m:1324)
    2011-06-02 13:58:09.398 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter mac_end_script = "" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.399 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received mac_end_script =  (NCController.m:1297)
    2011-06-02 13:58:09.399 Network Connect[22587] NCScriptLauncher.info -scheduleScriptAtPath:forEventIdentifier: scheduled  for NCScriptLauncherPostDisconnectEventIdentifier (NCScriptLauncher.m:35)
    2011-06-02 13:58:09.400 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter mac_start_script = "" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.400 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received mac_start_script =  (NCController.m:1297)
    2011-06-02 13:58:09.400 Network Connect[22587] NCScriptLauncher.info -scheduleScriptAtPath:forEventIdentifier: scheduled  for NCScriptLauncherPostConnectEventIdentifier (NCScriptLauncher.m:35)
    2011-06-02 13:58:09.401 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter ncp_read_timeout = "120" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.401 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received ncp_read_timeout = 120 (NCController.m:1297)
    2011-06-02 13:58:09.402 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter redir_url = "/dana/home/starter.cgi?startpageonly=1" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.402 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received redir_url = /dana/home/starter.cgi?startpageonly=1 (NCController.m:1297)
    2011-06-02 13:58:09.403 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter redir_win = "Please_Wait7819" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.403 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received redir_win = Please_Wait7819 (NCController.m:1297)
    2011-06-02 13:58:09.404 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter signin_url = "/" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.404 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received signin_url = / (NCController.m:1297)
    2011-06-02 13:58:09.404 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter switch-dns-search-order = "enabled" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.405 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received switch-dns-search-order = enabled (NCController.m:1297)
    2011-06-02 13:58:09.406 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter uninstall_on_quit = "0" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.406 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received uninstall_on_quit = 0 (NCController.m:1297)
    2011-06-02 13:58:09.406 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter upgradeMode = "2" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.407 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received upgradeMode = 2 (NCController.m:1297)
    2011-06-02 13:58:09.407 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter win_end_script = "" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.408 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received win_end_script =  (NCController.m:1297)
    2011-06-02 13:58:09.408 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter win_skip_start_script = "0" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.408 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received win_skip_start_script = 0 (NCController.m:1297)
    2011-06-02 13:58:09.409 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter win_start_script = "" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.409 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received win_start_script =  (NCController.m:1297)
    2011-06-02 13:58:09.410 Network Connect[22587] NCController.para -ipc:appletSetIVEParameter:: received applet parameter cookies = "DSLastAccess=1307048282; DSFirstAccess=1307047819; DSID=bff2f274c3d8f863f7e631151c7a9bd3; DSSignInURL=/" (NCController+NCIPC.m:10)
    2011-06-02 13:58:09.410 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received DSLastAccess = 1307048282 (NCController.m:1297)
    2011-06-02 13:58:09.411 Network Connect[22587] DSSessionContext.info -addCookieWithName:domain:value: Adding cookie with name DSLastAccess, domain go.adt.com, and value <hidden> (DSSessionContext.m:81)
    2011-06-02 13:58:09.411 Network Connect[22587] DSSessionContext.info -cookie: Didn't find DSLastAccess cookie! (DSSessionContext.m:68)
    2011-06-02 13:58:09.748 Network Connect[22587] DSLoginWindowController.info -showWindowWithWebLogin No proxy to resolve.. (DSLoginWindowController.m:824)
    2011-06-02 13:58:09.748 Network Connect[22587] NCController.info -enterResolvingProxiesStateWithOldState: reconfiguring and resolving proxies (NCController+NCStateChanges.m:112)
    2011-06-02 13:58:09.748 Network Connect[22587] NCController.info -reconfigure Reconfiguring on en1 (NCController.m:824)
    2011-06-02 13:58:09.788 Network Connect[22587] DSHTTPSProxyResolver.info -resolveProxiesInBackground No HTTPS proxy (DSHTTPSProxyResolver.m:378)
    2011-06-02 13:58:09.841 Network Connect[22587] DSSessionContext.info -addCookieWithName:domain:value: Creating a new DSLastAccess cookie (DSSessionContext.m:148)
    2011-06-02 13:58:09.842 Network Connect[22587] NCController.para -loginWindowController:setClientParameter:value: received DSFirstAccess = 1307047819 (NCController.m:1297)
    2011-06-02 13:58:09.843 Network Connect[22587] DSSessionContext.info -addCookieWithName:domain:value: Adding cookie with name DSFirstAccess, domain go.adt.com, and value <hidden> (DSSessionContext.m:81)
    2011-06-02 13:58:09.843 Network Connect[22587] DSSessionContext.info -cookie: Didn't find DSFirstAccess cookie! (DSSessionContext.m:68)
    2011-06-02 13:58:09.847 Network Connect[22587] nc.mac.app.1200.error <DSError 0x28bf20 domain=nc.mac.app code=1200 "Network Connect can't launch service" userInfo={
        DSErrorClassName = NCController;
        DSErrorLocalizedAlertText = "Network Connect cannot start the tunneling service. See the Log Viewer for more information.";
        DSErrorLocalizedAlertTitle = "Network Connect cannot establish a secure session.";
        DSErrorLocalizedFirstButtonTitle = Cancel;
        DSErrorLocalizedSecondButtonTitle = DSOptions;
        DSErrorMethodName = "enterWaitingOnServiceStateWithOldState:";
        DSErrorStackBackTrace =     (
            "atos not installed: hex trace: 0x11007e97  0x110088d5  0x105f8  0x3fd6  0x12008469  0x12008d6c  0x3fd6  0x1201914d  0xf7e0  0x9867cedd  0x9867ce48  0x986b9698  0x11016b46  0x11006148  0x110063ba  0x11017f4e  0x96cb5588  0x9865e793  0x9865e19a  0x96caa384  0x96d82038  0x986424cb  0x9863ff8f  0x9863f464  0x9863f291  0x92884004  0x92883cf7  0x92883c40  0x96f5b78d  0x96f5afce  0x96f1d247  0x96f152d9  0xde2a  0x2656  0x2571  0x5"
        path = "/usr/local/juniper/nc/6.4.0/ncproxyd";
        reason = "working directory doesn't exist.";
    } (NCController+NCStateChanges.m:160)>
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info ifconfig -a: lo0: flags=8049<UP,LOOPBACK,RUNNING,MULTICAST> mtu 16384
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info           inet6 ::1 prefixlen 128
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info           inet6 fe80::1%lo0 prefixlen 64 scopeid 0x1
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info           inet 127.0.0.1 netmask 0xff000000
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info gif0: flags=8010<POINTOPOINT,MULTICAST> mtu 1280
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info stf0: flags=0<> mtu 1280
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info en0: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info           ether d4:9a:20:ec:fe:36
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info           media: autoselect
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info           status: inactive
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info en1: flags=8863<UP,BROADCAST,SMART,RUNNING,SIMPLEX,MULTICAST> mtu 1500
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info           ether 34:15:9e:8d:11:36
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info           inet6 fe80::3615:9eff:fe8d:1136%en1 prefixlen 64 scopeid 0x5
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info           inet 192.168.1.65 netmask 0xffffff00 broadcast 192.168.1.255
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info           inet6 ::3615:9eff:fe8d:1136 prefixlen 64 autoconf
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info           media: autoselect
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info           status: active
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info netstat -rnf inet: -a: Routing tables
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info Internet:
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info Destination        Gateway            Flags        Refs      Use   Netif Expire
    2011-06-02 13:58:09.895 Network Connect[22587] diag.info default            192.168.1.254      UGSc           15        0     en1

    rtdolfan13 I have the same problem with my new mac Mac OS X (10.6.7). My other mac worked fine. I work for the same company as you also.. please let me know if you found a solution and I will do the same. Our "help desk" does not know anything about macs which makes no sense to me. We have 4 mac users in our office and we can not log on with the VPN.. kinda frustrating.
    hope we can resolve this soon!

Maybe you are looking for

  • Airport Network Options Problem

    Hi All I have just upgraded from 10.3 to 10.4.5 and have found a problem with the Airport Network prefs pane which I can't fix. Originally the interface to the Airport Networks pane was not showing correctly and was still setup as in 10.3. I only not

  • Microphone

    I would like to experient with dictation on this mini.  It's a mid-2010 Mini (2.4 GHz Intel Core 2 Duo).  Somewhere in storage I have an old microphone left over from a previous computer, most likely the IIsi.   I tried plugging that microphone into

  • I want to attach an external drive to my time capsule, what format should i select for it?

    I have a WD external drive that I want to add to my Time Capsule.  It had previously been used to store TV shows on.  I need to reformat it for the Time Capsule.  What format do I choose?

  • My iPod touch's facetime will not recieve or call to any iPod's and iPhone's. What do I do?

    My white iPod touch 4g cannot recieve or says they are not available when I call, when they are. I want to video chat my friend who lives far away, so how can I get my facetime to work!?

  • Arrangement of column in MIGO

    Hi All. I want the material field to be displayed in first column in item details instead of scrolling far to the right, i found  this same requirement posted by another person in this thread - Screen Layout for MIGO and MIRO , i tried that ,but i co