GifImageDecoder,  UnsatisfiedLinkError Exception

Hello there
I am getting the following exception during rendering pdf with fop and java. The stack trace is attached at the end of this message. It seems that the gif images could not be decoded because of a missing native library. The application is running on a sun solaris environment with JRE 1.3.1_04-b02.
Does anyone know what could be missining ? I guess the GIF decoding is not part of the JVM and needs some additional *.so libraries ? If yes which ones ?
Where is the java doc and source code for the class " sun.awt.image.GifImageDecoder" available ?
Thank you for any hints.
regards
Mark
java.lang.UnsatisfiedLinkError: exception occurred in JNI_OnLoad
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1414)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1330)
at java.lang.Runtime.loadLibrary0(Runtime.java:744)
at java.lang.System.loadLibrary(System.java:815)
at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:48)
at java.security.AccessController.doPrivileged(Native Method)
at sun.awt.image.NativeLibLoader.loadLibraries(NativeLibLoader.java:36)
at sun.awt.image.GifImageDecoder.<clinit>(GifImageDecoder.java:362)
at sun.awt.image.InputStreamImageSource.getDecoder(InputStreamImageSource.java:217)
at sun.awt.image.URLImageSource.getDecoder(URLImageSource.java:137)
at sun.awt.image.InputStreamImageSource.doFetch(InputStreamImageSource.java:246)
at sun.awt.image.ImageFetcher.fetchloop(ImageFetcher.java:167)
at sun.awt.image.ImageFetcher.run(ImageFetcher.java:135)

I think Sun doesn't guarantee the existence of any sun.* packages to be included in the JRE/JDK. Nevertheless, it might be true that only some library is missing, but I am sorry, I can't help.
The Image I/O facility included with J2SE 1.4 might help, can you give it a try instead?
Regards,
Fritz

Similar Messages

  • UnsatisfiedLinkError exception loading native library: njni10

    Hi All,
    Get this error:
    $ $ORACLE_HOME/bin/netca
    UnsatisfiedLinkError exception loading native library: njni10
    java.lang.UnsatisfiedLinkError: jniGetOracleHome
    at oracle.net.common.NetGetEnv.jniGetOracleHome(Native Method)
    at oracle.net.common.NetGetEnv.getOracleHome(Unknown Source)
    at oracle.net.ca.NetCA.main(Unknown Source)
    Oracle Net Services configuration failed. The exit code is -1
    ran YUM update and updated all packages....
    OS: CentOs 5.7
    thanks

    Thanks...note was Somewhat helpful..:)
    [oracle@emarssms lib32]$ ar rv libn10.a nnfgt.o
    ar: nnfgt.o: No such file or directory
    [oracle@emarssms lib32]$ ar rv libn10.a
    [oracle@emarssms lib32]$ ar tv libn10.a | grep nnfgt
    rw-rw-rw- 6118/42424 3501 Jun 22 05:29 2005 nnfgt.o
    [oracle@emarssms lib3
    i went ahead and did the relink and still am getting the error...
    netca /silent /responsefile=/home/oracle/database/respon
    UnsatisfiedLinkError exception loading native library: njni10
    java.lang.UnsatisfiedLinkError: jniGetOracleHome
            at oracle.net.common.NetGetEnv.jniGetOracleHome(Native Method)
            at oracle.net.common.NetGetEnv.getOracleHome(Unknown Source)
            at oracle.net.ca.NetCA.main(Unknown Source)
    Oracle Net Services configuration failed.  The exit code is -1                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • FindClass() throws java.lang.UnsatisfiedLinkError exception

    Hi All,
    I am using a JNI to make my C program to communicate with the GUI developed in Java Swings. In my C program I have used FindClass() method to find the java class. While exececuting my C program, I got the following exception,
    Exception in thread "main" java.lang.UnsatisfiedLinkError: /usr/java/jre1.5.0_04/lib/i386/libawt.so: /usr/java/j2sdk1.4.2_08/jre/lib/i386/libmlib_image.so: version `VER_1.1' not found (required by /usr/java/jre1.5.0_04/lib/i386/libawt.so)
    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 sun.security.action.LoadLibraryAction.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.awt.NativeLibLoader.loadLibraries(Unknown Source)
    at sun.awt.DebugHelper.<clinit>(Unknown Source)
    at java.awt.Component.<clinit>(Unknown Source)
    I have ensured that the libawt.so and ibmlib_image.so paths are set in LD_LIBRARY_PATH. Inspite of that I am not able to access the java class because of the above mentioned exception. Please help me out in this.
    For your reference, I am attaching the code with this,
    #include <jni.h>
    int main()
         JavaVMOption options[2];
         JNIEnv *env;
         JavaVM *jvm;
         JavaVMInitArgs vm_args;
         long status;
         jclass cls;
         jobject obj;
         jmethodID mid;
         jstring jstr;
         char str[25];
           options[0].optionString =        "-Djava.class.path=/home/maniyan/work/Dhruv_proj/vers/v5";
         options[1].optionString = "-verbose:jni";
         memset(&vm_args, 0, sizeof(vm_args));
            vm_args.version = JNI_VERSION_1_4;
         vm_args.nOptions = 1;
         vm_args.options = options;
         vm_args.ignoreUnrecognized = 1;
         status = JNI_CreateJavaVM(&jvm, (void**)&env, &vm_args);
         printf("status %d\n",status);
         if (status != JNI_ERR)
              printf("Exception %d\n",(*env)->ExceptionCheck(env));
              cls = (*env)->FindClass(env, "frame_main_v1");
              printf("Exception %d\n",(*env)->ExceptionCheck(env));
              if ((*env)->ExceptionCheck(env)) {
              (*env)->ExceptionDescribe(env);
              (*env)->ExceptionClear(env);
         if(cls !=0)
                 //printf("am here\n");
              mid = (*env)->GetStaticMethodID(env, cls, "display_message", "(Ljava/lang/String;)V");
              printf("Method %d\n",mid);
              if(mid !=0)
              {      strcpy(str,"Hello world");
                    (*env)->CallStaticCharMethod(env, cls, mid, (*env)->NewStringUTF(env, str));
         (*jvm)->DestroyJavaVM(jvm);
         return 0;
    else {
              printf("some error\n");
              return -1;
    Thanks in adv,
    Cool Dude

    this is like a classpath issue, but for a native library
    basically you need to include the library file in your path info to the JVM

  • Exception of type java.lang.UnsatisfiedLinkError was thrown Anyone ?

    We are getting this exception when trying to run a very basic aspx. This project works across several other servers, after bringing a new server online, we are finding we get this exception. Below is the complete response from tcptrace.
    HTTP/1.1 500 Internal Server ErrorServer: Microsoft-IIS/5.0Date: Tue, 24 Feb 2004 16:28:31 GMTX-Powered-By: ASP.NETX-AspNet-Version: 1.1.4322Cache-Control: privateContent-Type: text/html; charset=utf-8Content-Length: 5522
    <html> <head> <title>Exception of type java.lang.UnsatisfiedLinkError was thrown.</title> <style> body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;} p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px} b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px} H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red } H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon } pre {font-family:"Lucida Console";font-size: .9em} .marker {font-weight: bold; color: black;text-decoration: none;} .version {color: gray;} .error {margin-bottom: 10px;} .expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; } </style> </head>
    <body bgcolor="white">
    <span><H1>Server Error in '/PPAApps' Application.<hr width=100% size=1 color=silver></H1>
    <h2> <i>Exception of type java.lang.UnsatisfiedLinkError was thrown.</i> </h2></span>
    <font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif ">
    <b> Description: </b>An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    <br><br>
    <b> Exception Details: </b>java.lang.UnsatisfiedLinkError: Exception of type java.lang.UnsatisfiedLinkError was thrown.<br><br>
    <b>Source Error:</b> <br><br>
    <table width=100% bgcolor="#ffffcc"> <tr> <td> <code>
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.</code>
    </td> </tr> </table>
    <br>
    <b>Stack Trace:</b> <br><br>
    <table width=100% bgcolor="#ffffcc"> <tr> <td> <code><pre>
    [UnsatisfiedLinkError: Exception of type java.lang.UnsatisfiedLinkError was thrown.] java.lang.ExceptionInInitializerError.checkAndThrowException(Throwable thrown) +59 java.util.Locale..cctor() +1678
    [TypeInitializationException: The type initializer for "java.util.Locale" threw an exception.] java.lang.Float..ctor(String s) +214 com.plumtree.remote.portlet.xp.XPSettingsManager.IsCSPVersionAtLeast(Double version) com.plumtree.remote.portlet.xp.XPSettingsManager..ctor(IXPRequest request, IXPResponse response) com.plumtree.remote.portlet.xp.XPSettingsFactory.getXPSettingsManager(IXPRequest request, IXPResponse response) com.plumtree.remote.portlet.xp.XPPortletContext..ctor(IXPRequest request, IXPResponse response) com.plumtree.remote.portlet.xp.XPPortletContextFactory.createPortletContext(IXPRequest req, IXPResponse resp) Plumtree.Remote.Portlet.PortletContextFactory.CreatePortletContext(HttpRequest req, HttpResponse resp) Com.Plumtree.Remote.Transformer.Condition.GatewayedStandardCondition.UseFilter(HttpContext ctx) Com.Plumtree.Remote.Transformer.FilterManager.UpdateFilter(HttpContext ctx) Com.Plumtree.Remote.Transformer.PTTransformer.BeginRequestHandler(Object sender, EventArgs e) System.Web.SyncEventExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute() +60 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +87</pre></code>
    </td> </tr> </table>
    <br>
    <hr width=100% size=1 color=silver>
    <b>Version Information:</b> Microsoft .NET Framework Version:1.1.4322.573; ASP.NET Version:1.1.4322.573
    </font>
    </body></html><!-- [UnsatisfiedLinkError]: Exception of type java.lang.UnsatisfiedLinkError was thrown. at java.lang.ExceptionInInitializerError.checkAndThrowException(Throwable thrown) at java.util.Locale..cctor()[TypeInitializationException]: The type initializer for "java.util.Locale" threw an exception. at java.lang.Float..ctor(String s) at com.plumtree.remote.portlet.xp.XPSettingsManager.IsCSPVersionAtLeast(Double version) at com.plumtree.remote.portlet.xp.XPSettingsManager..ctor(IXPRequest request, IXPResponse response) at com.plumtree.remote.portlet.xp.XPSettingsFactory.getXPSettingsManager(IXPRequest request, IXPResponse response) at com.plumtree.remote.portlet.xp.XPPortletContext..ctor(IXPRequest request, IXPResponse response) at com.plumtree.remote.portlet.xp.XPPortletContextFactory.createPortletContext(IXPRequest req, IXPResponse resp) at Plumtree.Remote.Portlet.PortletContextFactory.CreatePortletContext(HttpRequest req, HttpResponse resp) at Com.Plumtree.Remote.Transformer.Condition.GatewayedStandardCondition.UseFilter(HttpContext ctx) at Com.Plumtree.Remote.Transformer.FilterManager.UpdateFilter(HttpContext ctx) at Com.Plumtree.Remote.Transformer.PTTransformer.BeginRequestHandler(Object sender, EventArgs e) at System.Web.SyncEventExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)-->HTTP/1.1 500 Internal Server ErrorServer: Microsoft-IIS/5.0Date: Tue, 24 Feb 2004 16:29:06 GMTX-Powered-By: ASP.NETX-AspNet-Version: 1.1.4322Cache-Control: privateContent-Type: text/html; charset=utf-8Content-Length: 5522
    <html> <head> <title>Exception of type java.lang.UnsatisfiedLinkError was thrown.</title> <style> body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;} p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px} b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px} H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red } H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon } pre {font-family:"Lucida Console";font-size: .9em} .marker {font-weight: bold; color: black;text-decoration: none;} .version {color: gray;} .error {margin-bottom: 10px;} .expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; } </style> </head>
    <body bgcolor="white">
    <span><H1>Server Error in '/PPAApps' Application.<hr width=100% size=1 color=silver></H1>
    <h2> <i>Exception of type java.lang.UnsatisfiedLinkError was thrown.</i> </h2></span>
    <font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif ">
    <b> Description: </b>An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    <br><br>
    <b> Exception Details: </b>java.lang.UnsatisfiedLinkError: Exception of type java.lang.UnsatisfiedLinkError was thrown.<br><br>
    <b>Source Error:</b> <br><br>
    <table width=100% bgcolor="#ffffcc"> <tr> <td> <code>

    This is the response I got from support:
    This is bug 22205 and will be fixed in the release of the Exchange Groupware Portlet Suite 3.0.4 at the end of April. The workaround in the interim is to copy the D:\Program Files\plumtree\jre folder from the installation CD (or another working portal server) onto the problem server. Please let me know if this resolves the issue for you. Neal Rapoporthttp://www.portalconsultant.com

  • Weblogic server 8.1 JNI module deployment java.lang.UnsatisfiedLinkError

    This is on the weblogic 8.1 Solaris platform.
    We have a module in our application which uses the native shared library and makes JNI called from the J2EE application. We have added the .so files to the LD_LIBRARY_PATH environment variable in our managed server startup scripts. When we start our servers the module works fine. But when we redeploy the J2EE application, the java code is changed but we start getting java.lang.UnsatisfiedLinkError exception when the module is invoked. We are using the staged mode for deployment. We have to shut down the managed servers and restart them every time for this module to start working after the redeployment of the J2EE application.
    Is this a known problem with the JNI based application. Is there any setting that we are missing? Has this problem been fixed in any of the service packs?

    Have you checked to see if your file descriptor setting is set high enough? Disabling native IO is not a very good solution as it will drastically reduce performance.
    --Raheem                                                                                                                                                                                                                                                                                                                                                                   

  • UnsatisfiedLinkError,   Load Library Successfully, Native Method Not Found

    I am using JNI to call a ".dll" file I made on windows.
    I got the exception:
    Exception in thread "Thread-0" java.lang.UnsatisfiedLinkError: com.aspectgaming.core.io.JniInnocore.Dpci.waitEvent(Ljava/lang/Object;J)I
    at com.aspectgaming.core.io.JniInnocore.Dpci.waitEvent(Native Method)
    at com.aspectgaming.core.io.JniInnocore.IDLPThread.run(IDLPThread.java:19)
    at java.lang.Thread.run(Unknown Source)
    The code for loading c dll library:
    URL url = Thread.currentThread().getContextClassLoader().getResource("");
    String baseClassPath = url.getPath();
    System.load(baseClassPath "com/aspectgaming/libjnidpcicore.dll");+
    The  ".dll"  file is already loaded,  because when I changed the dll file name to any other ones,  a "library file not found" exception will be caught.
    The problem is Dpci.waitEvent and all the native methods could not be found.
    I used a PE viewer to view the dll exports I got:
    Export table
    Characteristics=0, TimeDateStamp=1237366066, MajorVersion=0, MinorVersion=0, Name=36994, Base=1, NumberOfFunctions=9, NumberOfNames=9, AddressOfFunctions=36904, AddressOfNames=36940, AddressOfNameOrdinals=36976,
    TimeDateStamp:Wed Mar 18 16:47:46 GMT+08:00 2009
    Java_com_aspectgaming_core_io_JniInnocore_Dpci_getEventName@12 (Ordinal: 1, Entry Point RVA: 147ah (5,242))
    Java_com_aspectgaming_core_io_JniInnocore_Dpci_getNumOfEvents@8 (Ordinal: 2, Entry Point RVA: 11a5h (4,517))
    Java_com_aspectgaming_core_io_JniInnocore_Dpci_getNumOfInputPorts@12 (Ordinal: 3, Entry Point RVA: 1789h (6,025))
    Java_com_aspectgaming_core_io_JniInnocore_Dpci_getSramSize@8 (Ordinal: 4, Entry Point RVA: 1190h (4,496))
    Java_com_aspectgaming_core_io_JniInnocore_Dpci_readEvent@12 (Ordinal: 5, Entry Point RVA: 11bah (4,538))
    Java_com_aspectgaming_core_io_JniInnocore_Dpci_readPort@12 (Ordinal: 6, Entry Point RVA: 17a7h (6,055))
    Java_com_aspectgaming_core_io_JniInnocore_Dpci_waitEvent@20 (Ordinal: 7, Entry Point RVA: 14b8h (5,304))
    Java_com_aspectgaming_core_io_JniInnocore_Dpci_waitIOPort@24 (Ordinal: 8, Entry Point RVA: 17dbh (6,107))
    Java_com_aspectgaming_core_io_JniInnocore_Dpci_writePort@16 (Ordinal: 9, Entry Point RVA: 182ch (6,188))
    The java class "Dpci" is exactly in this package : com.aspectgaming.core.io.JniInnocore;
    I compiled it by gcc on linux as a ".so" file and everything is working on linux.
    On windows I am compiling this by Mingw gcc.
    Here is the make file on Windows which is used by Mingw32-make:
    dpci_core:
    gcc -o ../../../java/com/aspectgaming/libjnidpcicore.dll -shared -IC:\jdk1.6.0_10\include -IC:\jdk1.6.0_10\include\win32 -I'D:\Program Files\Innocore Gaming Ltd\DirectPCI SDK & Run-time\include' dpci_core.c libdpci_static.lib
    dpci_core.c is my code file and  libdpci_static.lib is the library that my c dll will depend on.
    Any thought to this UnsatisfiedLinkError exception problem?
    Thanks!

    I recompile my codes under visual c++ 2008 express on Windows XP professional, and I have already got rid of this problem.
    But when I move the compiled java jar application to windows xp embedded edition, an exception will be caught:
    C:\AspectGamingCore>java -jar Aspect.jar
    Exception in thread "main" java.lang.UnsatisfiedLinkError: C:\AspectGamingCore\l
    ib\libjnidpcicore.dll: This application has failed to start because the applicat
    ion configuration is incorrect. Reinstalling the application may fix this proble
    m
    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.load0(Unknown Source)
    at java.lang.System.load(Unknown Source)
    at com.aspectgaming.core.io.JniInnocore.Dpci.loadLibraryOnWindows(Unknow
    n Source)
    at com.aspectgaming.core.io.JniInnocore.DpciTest.main(Unknown Source)
    I don't know if there is any compatible problem bewteen xp and xpe but one possible reason is that xpe may be lack of some dll files like msvcr90.dll.
    So I tried to compile the dll as static library in vc++2008, but this does not run even on my winxp professional:
    Exception in thread "main" java.lang.UnsatisfiedLinkError: C:\AspectGamingCore\l
    ib\libjnidpcicore.dll: %1 is not a valid Win32 application
    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.load0(Unknown Source)
    at java.lang.System.load(Unknown Source)
    at com.aspectgaming.core.io.JniInnocore.Dpci.loadLibraryOnWindows(Unknow
    n Source)
    at com.aspectgaming.core.io.JniInnocore.DpciTest.main(Unknown Source)
    Could JNI call a c static library? Why it says "not a valid Win32 application"?

  • JNI and Tomcat

    I am trying to use a JNI library on Tomcat. I have created a class with a JNI API. I have tested its use being calling it from a Java application. It works. When I try to invoke it from my app server (Tomcat), I get a java.lang.UnsatisfiedLinkError exception. I must find a way to specify where the library is located, but haven't found how to do this. I have tried to add a -Djava.library.path=... option in the JAVAOPT environment variable in the shell where I run the catalina.sh script, but this didn't help.
    Any advice?

    If you are using tomcat over UNIX, you shold put the LD_LIBRARY_PATH pointing the path of your native library.

  • Issues expected in oracle 9i/10g to 11g upgrade

    Hi.
    We are planning to migrate some 95 odd applications from Oracle 9i/10g to 11g. The upgrade method we are planning to use is to setup 11g target servers and move databases from source to target using import/export. Then do the necessary changes in the app code and connect the application to the new target server and test.
    The source OS may be RHEL 3/4/5 or Solaris 8 and target OS will be RHEL 4/5 or Solaris 10.
    My questions are:
    1. What can be the expected database side issues possible while moving the structure+data+views/sps etc from old version to new version using import/export.
    2. How much time may it take to move the database from source to target for say a 100GB database?
    3. Will the change of OS have any implications on the movement from source to target?
    4. What are the application side issues possible considering that most apps use odbc/jdbc to connect to the datastores?
    5. Can any application side inline queries be affected?
    6. Will there be any changes to the column data types from 9i/10g to 11g which can impact the code?
    Thanks,
    Vipul Shah
    Edited by: 885362 on Sep 15, 2011 1:31 AM
    Edited by: 885362 on Sep 15, 2011 1:39 AM

    1. What can be the expected database side issues possible while moving the structure+data+views/sps etc from old version to new version using import/export. If you complete the steps in (Interoperability Notes Oracle EBS 11i with Oracle Database 11gR2 (11.2.0.2) [ID 881505.1]) please see these docs.
    After RDBMS Upgrade To 11gR2 In An Applications 11i Environment: ORA-20000 DRG-100[51021],[Drwaf.C],[1605],[],[] ORA-4088 [ID 1104963.1]
    Running adbldxml.pl On DB Node Fails With Unsatisfiedlinkerror Exception Loading Native Library: njni11 [ID 1183373.1]
    Adstats.sql Fails While Upgrading Database to 11gR2 [ID 1232853.1]
    Ad_parallel_compile: Ora-01031: Insufficient Privileges in adadmin / re-create grants and synonyms for APPS schema after upgrade from 10gR2 to 11gR2 [ID 1148264.1]
    Ad_parallel_compile: Ora-01031: Insufficient Privileges in adadmin / re-create grants and synonyms for APPS schema after upgrade from 10gR2 to 11gR2 [ID 1148264.1]
    2. How much time may it take to move the database from source to target for say a 100GB database? Depends on many factors -- Try this on a test instance with similar hardware configuration and setup to production to estimate the time.
    3. Will the change of OS have any implications on the movement from source to target?No, but you may relink the executable files -- How to Relink Oracle Database Software on UNIX [ID 131321.1]
    4. What are the application side issues possible considering that most apps use odbc/jdbc to connect to the datastores? If you run AutoConfig with no errors when there should be no issues with ODBC/JDBC connectivity.
    5. Can any application side inline queries be affected? It should not be affected expect if you custom code use some features which are no longer available in 11g database.
    6. Will there be any changes to the column data types from 9i/10g to 11g which can impact the code?Typically no, however you need to do full and proper testing to verify.
    Thanks,
    Hussein

  • Dynamic images in a Servlet with WL6.1

    Hi,
              I try to create a BufferedImage in a Servlet:
              BufferedImage img = new BufferedImage(320,200,
              BufferedImage.TYPE_INT_RGB);
              I get an UnsatisfiedLinkError to the log. The servlet works fine on
              Tomcat.
              The platform is Solaris 8 with Weblogic 6.1. The libawt.so is included
              in the CLASSPATH. The creation of the image works fine, if I run it
              from command line with the same JRE.
              regards, EK
              the log:
              <7.10.2002 16:04:57 EEST> <Error> <HTTP>
              <[WebAppServletContext(7518429,testwl61
              ,/testwl61)] Servlet failed with Exception
              java.lang.UnsatisfiedLinkError: exception occurred in JNI_OnLoad
              at java.lang.ClassLoader$NativeLibrary.load(Native Method)
              at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1382)
              at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1298)
              at java.lang.Runtime.loadLibrary0(Runtime.java:749)
              at java.lang.System.loadLibrary(System.java:820)
              at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:53)
              at java.security.AccessController.doPrivileged(Native Method)
              at java.awt.image.ColorModel.loadLibraries(ColorModel.java:155)
              at java.awt.image.ColorModel.<clinit>(ColorModel.java:163)
              at java.awt.image.BufferedImage.<clinit>(BufferedImage.java:203)
              at com.testwl61.DrawServlet.doGet(DrawServlet.java:34)
              at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
              at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
              pl.java:265)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
              pl.java:200)
              at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
              rvletContext.java:2495)
              at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
              pl.java:2204)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              >
              

    Hi,
    Please post to an asp.net forum....if possible include a link to your website with your question.
    this forum is for questions about IEAK and GPO for system administrators of domain networks....
    tip... use response.end I/o response flush....
    view... the page-source from IE (View-source) or use the Find tool on the IE Developer tool to inspect the scr value of img tags and the base href value (if used)...
    the optimal load time for web pages is considered to be 3 seconds...
    consider reducing the number and size of images, and external stylesheets and libraries on your web pages. (www.webpagetests.org)
    Rob^_^

  • Deployment of JavaFX Web application on client machine(Windows OS.)

    Problem Statement:
    Deployment of JavaFX Web application on client machine(Windows OS.)
    Error: unable to load the native libarary(JNI Windows dll) i.e. throws java.lang.UnsatisfiedLinkError exception.
    Problem Description:
    I have create the JavaFX application which have dependency on Native library written in Java Native Interface(JNI).
    When the application is deployed on Apache 6.0 Tomcat Server(Copied .html file *.jnlp file and .jar file) and when client machine hit the html page in internet explorer version 8.0 its throws the following error(java.lang.UnsatisfiedLinkError: no JNIHelloWorld in java.library.path)
    Note:
    I have created the jar file which have my "JNIHelloWorld' native library dll in root directory. I have signed the jar with same signature which i have used for signing for my application Jar file.
    I have mentioned the native library jar in JNLP file resource keyword as follows:
    <resources os=Windows>
    <nativelib href="JNIHelloWorld.jar" download="eager" />
    </resources>
    The complete jnlp file content is in "JavaFXApplication.jnlp file:" section below.
    The description of error is as follows:
    Match: beginTraversal
    Match: digest selected JREDesc: JREDesc[version 1.6+, heap=-1--1, args=null, href=http://java.sun.com/products/autodl/j2se, sel=false, null, null], JREInfo: JREInfo for index 0:
    platform is: 1.7
    product is: 1.7.0_07
    location is: http://java.sun.com/products/autodl/j2se
    path is: C:\Program Files\Java\jre7\bin\javaw.exe
    args is: null
    native platform is: Windows, x86 [ x86, 32bit ]
    JavaFX runtime is: JavaFX 2.2.1 found at C:\Program Files\Java\jre7\
    enabled is: true
    registered is: true
    system is: true
         Match: ignoring maxHeap: -1
         Match: ignoring InitHeap: -1
         Match: digesting vmargs: null
         Match: digested vmargs: [JVMParameters: isSecure: true, args: ]
         Match: JVM args after accumulation: [JVMParameters: isSecure: true, args: ]
         Match: digest LaunchDesc: http://10.187.143.68:8282/KPIT/JavaFXApplication20.jnlp
         Match: digest properties: []
         Match: JVM args: [JVMParameters: isSecure: true, args: ]
         Match: endTraversal ..
         Match: JVM args final:
         Match: Running JREInfo Version match: 1.7.0.07 == 1.7.0.07
         *Match: Running JVM args match: have:<> satisfy want:<>*
    *java.lang.UnsatisfiedLinkError: no JNIHelloWorld in java.library.path*
    *     at java.lang.ClassLoader.loadLibrary(Unknown Source)*
    *     at java.lang.Runtime.loadLibrary0(Unknown Source)*
    *     at java.lang.System.loadLibrary(Unknown Source)*     at javafxapplication20.JavaFXApplication20.<clinit>(JavaFXApplication20.java:41)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at java.lang.Class.newInstance0(Unknown Source)
         at java.lang.Class.newInstance(Unknown Source)
         at com.sun.javafx.applet.FXApplet2.init(FXApplet2.java:63)
         at com.sun.deploy.uitoolkit.impl.fx.FXApplet2Adapter.init(FXApplet2Adapter.java:207)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Java Plug-in 10.7.2.11
    Using JRE version 1.7.0_07-b11 Java HotSpot(TM) Client VM
    User home directory = C:\Users\io839
    Please find my native library code and JavaFX application code:
    Native library JNI Code:
    JavaFXApplication.java:
    JNIEXPORT jstring JNICALL Java_javafxapplication_SampleController_printString(JNIEnv *env, jobject envObject)
         string str = "hello JNI";
         jstring jniStr = env->NewStringUTF(str.c_str());
         return jniStr;
    JavaFX Application code:
    JavaFXApplication.java:
    package javafxapplication;
    import javafx.application.Application;
    import javafx.fxml.FXMLLoader;
    import javafx.scene.Parent;
    import javafx.scene.Scene;
    import javafx.stage.Stage;
    public class JavaFXApplication extends Application {
    @Override
    public void start(Stage stage) throws Exception {
    Parent root = FXMLLoader.load(getClass().getResource("Sample.fxml"));
    Scene scene = new Scene(root);
    stage.setScene(scene);
    stage.show();
    * The main() method is ignored in correctly deployed JavaFX application.
    * main() serves only as fallback in case the application can not be
    * launched through deployment artifacts, e.g., in IDEs with limited FX
    * support. NetBeans ignores main().
    * @param args the command line arguments
    public static void main(String[] args) {
    launch(args);
    static{
    System.loadLibrary("JNIHelloWorld");
    SampleController.java file:
    package javafxapplication;
    import java.net.URL;
    import java.util.ResourceBundle;
    import javafx.event.ActionEvent;
    import javafx.fxml.FXML;
    import javafx.fxml.Initializable;
    import javafx.scene.control.Label;
    public class SampleController implements Initializable {
    @FXML
    private Label label;
    private native String printString();
    @FXML
    private void handleButtonAction(ActionEvent event) {
    System.out.println("You clicked me!");
    String str = printString();
    label.setText(str);
    @Override
    public void initialize(URL url, ResourceBundle rb) {
    // TODO
    //String str = printString();
    JavaFXApplication.jnlp file:
    <?xml version="1.0" encoding="utf-8"?>
    <jnlp spec="1.0" xmlns:jfx="http://javafx.com" href="JavaFXApplication.jnlp">
    <information>
    <title>JavaFXApplication20</title>
    <vendor>io839</vendor>
    <description>Sample JavaFX 2.0 application.</description>
    <offline-allowed/>
    </information>
    <resources>
    <jfx:javafx-runtime version="2.2+" href="http://javadl.sun.com/webapps/download/GetFile/javafx-latest/windows-i586/javafx2.jnlp"/>
    </resources>
    <resources>
    <j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se"/>
    <jar href="JavaFXApplication.jar" size="20918" download="eager" />
    </resources>
    <resources os=Windows>
    <nativelib href="JNIHelloWorld.jar" download="eager" />
    </resources>
    <security>
    <all-permissions/>
    </security>
    <applet-desc width="800" height="600" main-class="com.javafx.main.NoJavaFXFallback" name="JavaFXApplication" >
    <param name="requiredFXVersion" value="2.2+"/>
    </applet-desc>
    <jfx:javafx-desc width="800" height="600" main-class="javafxapplication.JavaFXApplication" name="JavaFXApplication" />
    <update check="always"/>
    </jnlp>

    No problem.
    Make sure your resources are set at the proper location. Could be that tje jni.jar is under a 'lib' folder?
    Normally you don't have to worry about deployment a lot if you are using like Netbeans 7.2 or higher.
    When you press 'Clean and build' it creates your deployed files in the 'dist' folder.
    You can change specification by adapting the build.xml file.
    Of course lot of different possibilities are available for deployment!
    You can find lot of info here:
    [http://docs.oracle.com/javafx/2/deployment/jfxpub-deployment.htm|http://docs.oracle.com/javafx/2/deployment/jfxpub-deployment.htm]
    Important to know is if you want to work with
    - a standalone application (self-contained or not)
    - with webstart
    - or with applets
    (In my case I'm using webstart, but also Self-Contained Application Packaging (jre is also installed!)

  • Errors when installing Oracle Client 10.2.0.2.0 on zLinux (Red Hat)

    I am receiving errors when installing Oracle Client 10.2.0.2.0 (Administrator) on zLinux. During the install I receive two notifications for File Not Found when the installer tries to create the link for lib32/libclntsh.so.10.1. I hit ignore on the pop-ups and the install completes. The Oracle Net Configuration Assistant then fails to launch with the following error:
    Output generated from configuration assistant "Oracle Net Configuration Assistant":
    Command = /opt/oracle/product/10.2.0/db_1/bin/netca /orahome /opt/oracle/product/10.2.0/db_1 /orahnam Oracle_home /instype custom /inscomp client,oraclenet,ano /insprtcl tcp /cfg local /authadp NO_VALUE /nodeinfo NO_VALUE /responseFile /opt/oracle/product/10.2.0/db_1/network/install/netca_clt.rsp
    UnsatisfiedLinkError exception loading native library: njni10
    Configuration assistant "Oracle Net Configuration Assistant" failed
    The "/opt/oracle/product/10.2.0/db_1/cfgtoollogs/configToolFailedCommands" script contains all commands that failed, were skipped or were cancelled. This file may be used to run these configuration assistants outside of OUI. Note that you may have to update this script with passwords (if any) before executing the same.
    I have seen multiple threads relating to very similar errors, but none of the fixes that were suggested have worked. I have double checked the required Red Hat packages and made sure they were all installed on the server. All of the prerequisite checks for the installer are successful. Any assistance would be of most helpful!

    Worked with my Linux system admin and figured out that we were indeed missing some packages. There are 390 and 390x rpm's for Red Hat on System Z, i.e. 64 bit and 32 bit versions. Since we are running a 64 bit os some of those 32 bit packages did not get installed. Since our roles are split up, I am kind of blind as to the OS setup so I was not able to catch the problem. It is truly puzzling as to why Oracle would need 32 bit packages even though Oracle client is 64 bit. Regardless, after adding the 32 bit rpm's the installer was able to perform the linking operation that was failing, and the network configuration script ran successfully.

  • INS-20802 Oracle net configuration assistant failed on windows server 2003 R2

    Hi all,
                I have windows server 2003 r2 installed on VM and tried installing oracle database 11g r2.
    But got Oracle net configuration assistant failed. Below is the log
    INFO: This variable JRE_HOME is not added to the global context map
    INFO: This variable ISQLPLUS_PROTOCOL is not added to the global context map
    INFO: This variable ISQLPLUS_PORT is not added to the global context map
    INFO: This variable HOST_SID_OFFSET_ENABLED is not added to the global context map
    INFO: This variable HOSTNAME is not added to the global context map
    INFO: This variable EM_UPLOAD_DISABLE is not added to the global context map
    INFO: This variable EM_UIX_DEBUG_FLAG is not added to the global context map
    INFO: This variable EMPRODVER is not added to the global context map
    INFO: This variable CONSOLE_MODE is not added to the global context map
    INFO: This variable CONSOLE_CFG is not added to the global context map
    INFO: This variable sl_oraclehomes is not added to the global context map
    INFO: This variable s_oc4jDir is not added to the global context map
    INFO: This variable s_oc4jAppsDir is not added to the global context map
    INFO: This variable s_jreHome is not added to the global context map
    INFO: This variable s_configcommand is not added to the global context map
    INFO: This variable b_isRAC is not added to the global context map
    INFO: This variable b_UNIX is not added to the global context map
    INFO: This variable OJSP_JAR_LOC is not added to the global context map
    INFO: This variable OJSPUTIL_JAR_LOC is not added to the global context map
    INFO: This variable LDAP_JAR_LOC is not added to the global context map
    INFO: This variable JAVA_HOME is not added to the global context map
    INFO: This variable ISQLPLUS_HOST is not added to the global context map
    INFO: This variable EM_UIX_LOCATION is not added to the global context map
    INFO: This variable EM_REPOS_HOST is not added to the global context map
    INFO: This variable EM_PING_COMMAND is not added to the global context map
    INFO: This variable EM_OC4J_HOME is not added to the global context map
    INFO: This variable EM_EAR_LOC is not added to the global context map
    INFO: This variable EMDROOT is not added to the global context map
    INFO: Adding the variable s_oc4jAdmPasswd to the aggregate oracle.sysman.console.db
    INFO: Adding the variable s_oc4jAdmPasswd to the global context map for the aggregate oracle.sysman.console.db
    INFO: This variable s_launchBrowserClasspath is not added to the global context map
    INFO: This variable s_javapOracleHome is not added to the global context map
    INFO: This variable PROD_HOME is not added to the global context map
    INFO: {Parameter:TOPLEVEL_COMPONENT in {Aggregate:OuiConfigVariables:1.0.0.0.0:common}}: Parameter data type is not compatible with the provided String Array.
    INFO: passing params to cf done
    INFO: done saving info by cf
    INFO: This is a shared oracle home or remote nodes are null. No copy required.
    INFO: Checkpoint:Failed Checkpoint found returning it for getAllFailedCheckPoints.
    INFO: Checkpoint:Failed Checkpoint found returning null for getLastFailedCheckPoint.
    INFO: Checkpoint:Index file written and updated
    INFO: Checkpoint:Transfer of file done from remote node
    INFO: Updating the global context
    INFO: Path To 'globalcontext.xml' = C:\oracle\product\11.2.0\dbhome_1\install\chainedInstall\globalcontext
    INFO: Since operation was successful, move the current OiicAPISessionDetails to installed list
    INFO: Number of root scripts to be executed = 0
    INFO: isSuccessfullInstallation: true
    INFO: isSuccessfullRemoteInstallation: true
    INFO: Adding ExitStatus SUCCESS to the exit status set
    INFO: Completed setting up InstallDB
    INFO: Performing Configuration
    INFO: Entering ConfigClient.init method
    INFO: ConfigClient.init sOracleHomeLoc=C:\oracle\product\11.2.0\dbhome_1, sTopAggId=oracle.server
    INFO: Entering ConfigClient.initClientAndSession method
    INFO: ConfigClient.initClientAndSession status : connected to the config framework
    INFO: ConfigClient.initClientAndSession session begun oracle.sysman.emCfg.client.CfwSession@c0d228
    INFO: ConfigClient.initClientAndSession m_oAggregate=[Loracle.sysman.emCfg.common.IAggregate;@1257f0e
    INFO: Configuration log directory - C:\oracle\product\11.2.0\dbhome_1\cfgtoollogs
    INFO: Exiting ConfigClient.init method
    INFO: Calling event ConfigSessionInitialized
    INFO: ConfigClient.registerOutErrStream method called
    INFO: Entering ConfigClient.getToolsList method
    INFO: Created config job for Oracle Net Configuration Assistant
    INFO: Created config job for Oracle Database Configuration Assistant
    INFO: Updating Transient Parameters in the Aggregates
    INFO: Updating Transient Parameters for oracle.server
    INFO: Updating Transient Parameters for oracle.assistants.netca.client
    INFO: Updating Transient Parameters for oracle.assistants.server
    INFO: Setting value to transient variable s_dbcaArgs
    INFO: Setting value to transient variable S_SYSMANPASSWORD
    INFO: Setting value to transient variable s_systemPasswordFlag
    INFO: Setting value to transient variable s_sysmanPasswordFlag
    INFO: Setting value to transient variable S_HOSTUSERPASSWORD
    INFO: Setting value to transient variable s_dbcaArgsOverride
    INFO: Setting value to transient variable windows_commandline_prefix
    INFO: Setting value to transient variable s_sysPasswordFlag
    INFO: Setting value to transient variable S_SYSPASSWORD
    INFO: Setting value to transient variable s_asmsnmpPasswordFlag
    INFO: Setting value to transient variable S_DBSNMPPASSWORD
    INFO: Setting value to transient variable s_dbsnmpPasswordFlag
    INFO: Setting value to transient variable S_ASMSNMPPASSWORD
    INFO: Setting value to transient variable S_SYSTEMPASSWORD
    INFO: Setting value to transient variable s_hostUserPasswordFlag
    INFO: Updating Transient Parameters for OuiConfigVariables
    INFO: Updating Transient Parameters for oracle.sysman.ccr
    INFO: Updating Transient Parameters for oracle.sysman.console.db
    INFO: Successfully updated Transient Parameters in the Aggregates
    INFO: Configuration log directory - C:\oracle\product\11.2.0\dbhome_1\cfgtoollogs
    INFO:
    The Runconfig command constructed is C:\oracle\product\11.2.0\dbhome_1\oui\bin\runConfig.bat ORACLE_HOME=C:\oracle\product\11.2.0\dbhome_1 MODE=perform ACTION=configure RERUN=true $*
    INFO: Created a new file C:\oracle\product\11.2.0\dbhome_1\cfgtoollogs\configToolAllCommands
    INFO: Since the option is to overwrite the existing C:\oracle\product\11.2.0\dbhome_1\cfgtoollogs\configToolAllCommands file, backing it up
    INFO: The backed up file name is C:\oracle\product\11.2.0\dbhome_1\cfgtoollogs\configToolAllCommands.bak
    INFO: Entering ConfigClient.executeToolsInAggregate method
    INFO: ConfigClient.executeToolsInAggregate oAggregate=oracle.server:oracle.server:11.2.0.1.0:common
    INFO: Entering ConfigClient.assignAction method
    INFO: ConfigClient.assignAction actionref=[Loracle.sysman.emCfg.common.IActionReference;@1ae9cec
    INFO: ConfigClient.assignAction action is of type :configuration
    INFO: Exiting ConfigClient.assignAction method
    INFO: ConfigClient.executeToolsInAggregate action assigned
    INFO: Started Plugin named: Oracle Net Configuration Assistant
    INFO: Found associated job
    INFO: Starting 'Oracle Net Configuration Assistant'
    INFO: Starting 'Oracle Net Configuration Assistant'
    INFO: UnsatisfiedLinkError exception loading native library: oranjni11
    INFO: java.lang.UnsatisfiedLinkError: C:\oracle\product\11.2.0\dbhome_1\BIN\oranjni11.dll: Can't find dependent libraries
    WARNING: java.lang.UnsatisfiedLinkError: jniGetOracleHome
    WARNING: at oracle.net.common.NetGetEnv.jniGetOracleHome(Native Method)
    WARNING: at oracle.net.common.NetGetEnv.getOracleHome(Unknown Source)
    WARNING: at oracle.net.ca.NetCALogger.getOracleHome(NetCALogger.java:230)
    WARNING: at oracle.net.ca.NetCALogger.initOracleParameters(NetCALogger.java:215)
    WARNING: at oracle.net.ca.NetCALogger.initLogger(NetCALogger.java:130)
    WARNING: at oracle.net.ca.NetCA.main(NetCA.java:408)
    INFO:
    INFO: Error: jniGetOracleHome
    INFO: Oracle Net Services configuration failed.  The exit code is 1
    INFO:
    WARNING:
    INFO: Completed Plugin named: Oracle Net Configuration Assistant
    INFO: Oracle Net Configuration Assistant failed.
    INFO: Oracle Net Configuration Assistant failed.
    INFO: ConfigClient.executeToolsInAggregate action performed
    INFO: Exiting ConfigClient.executeToolsInAggregate method
    INFO: Calling event ConfigToolsExecuted
    INFO:
    The Runconfig command constructed is C:\oracle\product\11.2.0\dbhome_1\oui\bin\runConfig.bat ORACLE_HOME=C:\oracle\product\11.2.0\dbhome_1 MODE=perform ACTION=configure RERUN=false $*
    INFO: Created a new file C:\oracle\product\11.2.0\dbhome_1\cfgtoollogs\configToolFailedCommands
    INFO: Since the option is to overwrite the existing C:\oracle\product\11.2.0\dbhome_1\cfgtoollogs\configToolFailedCommands file, backing it up
    INFO: The backed up file name is C:\oracle\product\11.2.0\dbhome_1\cfgtoollogs\configToolFailedCommands.bak
    WARNING: readme.txt file doesn't exits
    INFO: ConfigClient.saveSession method called
    INFO: Calling event ConfigSessionEnding
    INFO: ConfigClient.endSession method called
    INFO: Completed Configuration
    INFO: Shutting down OUISetupDriver.JobExecutorThread
    INFO: Cleaning up, please wait...
    INFO: Dispose the install area control object
    INFO: Update the state machine to STATE_CLEAN
    INFO: All forked task are completed at state setup
    INFO: Completed background operations
    INFO: Moved to state <setup>
    INFO: Performing Configuration
    INFO: Entering ConfigClient.init method
    INFO: ConfigClient.init sOracleHomeLoc=C:\oracle\product\11.2.0\dbhome_1, sTopAggId=oracle.server
    INFO: Entering ConfigClient.initClientAndSession method
    INFO: ConfigClient.initClientAndSession status : connected to the config framework
    INFO: ConfigClient.initClientAndSession session begun oracle.sysman.emCfg.client.CfwSession@140de18
    INFO: ConfigClient.initClientAndSession m_oAggregate=[Loracle.sysman.emCfg.common.IAggregate;@1b52041
    INFO: Configuration log directory - C:\oracle\product\11.2.0\dbhome_1\cfgtoollogs
    INFO: Exiting ConfigClient.init method
    INFO: Calling event ConfigSessionInitialized
    INFO: ConfigClient.registerOutErrStream method called
    INFO: Entering ConfigClient.getToolsList method
    INFO: Selecting job named 'Oracle Net Configuration Assistant' for retry
    INFO: Selecting job named 'Oracle Database Configuration Assistant' for retry
    INFO: Updating Transient Parameters in the Aggregates
    INFO: Updating Transient Parameters for oracle.server
    INFO: Updating Transient Parameters for oracle.assistants.netca.client
    INFO: Updating Transient Parameters for oracle.assistants.server
    INFO: Setting value to transient variable s_dbcaArgs
    INFO: Setting value to transient variable S_SYSMANPASSWORD
    INFO: Setting value to transient variable s_systemPasswordFlag
    INFO: Setting value to transient variable s_sysmanPasswordFlag
    INFO: Setting value to transient variable S_HOSTUSERPASSWORD
    INFO: Setting value to transient variable s_dbcaArgsOverride
    INFO: Setting value to transient variable windows_commandline_prefix
    INFO: Setting value to transient variable s_sysPasswordFlag
    INFO: Setting value to transient variable S_SYSPASSWORD
    INFO: Setting value to transient variable s_asmsnmpPasswordFlag
    INFO: Setting value to transient variable S_DBSNMPPASSWORD
    INFO: Setting value to transient variable s_dbsnmpPasswordFlag
    INFO: Setting value to transient variable S_ASMSNMPPASSWORD
    INFO: Setting value to transient variable S_SYSTEMPASSWORD
    INFO: Setting value to transient variable s_hostUserPasswordFlag
    INFO: Updating Transient Parameters for OuiConfigVariables
    INFO: Updating Transient Parameters for oracle.sysman.ccr
    INFO: Updating Transient Parameters for oracle.sysman.console.db
    INFO: Successfully updated Transient Parameters in the Aggregates
    INFO: Configuration log directory - C:\oracle\product\11.2.0\dbhome_1\cfgtoollogs
    INFO:
    The Runconfig command constructed is C:\oracle\product\11.2.0\dbhome_1\oui\bin\runConfig.bat ORACLE_HOME=C:\oracle\product\11.2.0\dbhome_1 MODE=perform ACTION=configure RERUN=true $*
    INFO: Since the option is to overwrite the existing C:\oracle\product\11.2.0\dbhome_1\cfgtoollogs\configToolAllCommands file, backing it up
    INFO: The backed up file name is C:\oracle\product\11.2.0\dbhome_1\cfgtoollogs\configToolAllCommands.bak.1
    INFO: Entering ConfigClient.executeSelectedToolsInAggregate method
    INFO: ConfigClient.executeSelectedToolsInAggregate oAggregate=oracle.server:oracle.server:11.2.0.1.0:common
    INFO: Entering ConfigClient.assignAction method
    INFO: ConfigClient.assignAction actionref=[Loracle.sysman.emCfg.common.IActionReference;@b970f5
    INFO: ConfigClient.assignAction action is of type :configuration
    INFO: Exiting ConfigClient.assignAction method
    INFO: ConfigClient.executeSelectedToolsInAggregate action assigned
    INFO: Started Plugin named: Oracle Net Configuration Assistant
    INFO: Found associated job
    INFO: Starting 'Oracle Net Configuration Assistant'
    INFO: Starting 'Oracle Net Configuration Assistant'
    INFO: UnsatisfiedLinkError exception loading native library: oranjni11
    INFO: java.lang.UnsatisfiedLinkError: C:\oracle\product\11.2.0\dbhome_1\BIN\oranjni11.dll: Can't find dependent libraries
    WARNING: java.lang.UnsatisfiedLinkError: jniGetOracleHome
    WARNING: at oracle.net.common.NetGetEnv.jniGetOracleHome(Native Method)
    WARNING: at oracle.net.common.NetGetEnv.getOracleHome(Unknown Source)
    WARNING: at oracle.net.ca.NetCALogger.getOracleHome(NetCALogger.java:230)
    WARNING: at oracle.net.ca.NetCALogger.initOracleParameters(NetCALogger.java:215)
    WARNING: at oracle.net.ca.NetCALogger.initLogger(NetCALogger.java:130)
    WARNING: at oracle.net.ca.NetCA.main(NetCA.java:408)
    INFO:
    INFO: Error: jniGetOracleHome
    INFO: Oracle Net Services configuration failed.  The exit code is 1
    INFO:
    WARNING:
    INFO: Completed Plugin named: Oracle Net Configuration Assistant
    INFO: Oracle Net Configuration Assistant failed.
    INFO: Oracle Net Configuration Assistant failed.
    INFO: ConfigClient.executeSelectedToolsInAggregate action performed
    INFO: Exiting ConfigClient.executeSelectedToolsInAggregate method
    INFO:
    The Runconfig command constructed is C:\oracle\product\11.2.0\dbhome_1\oui\bin\runConfig.bat ORACLE_HOME=C:\oracle\product\11.2.0\dbhome_1 MODE=perform ACTION=configure RERUN=false $*
    INFO: Since the option is to overwrite the existing C:\oracle\product\11.2.0\dbhome_1\cfgtoollogs\configToolFailedCommands file, backing it up
    INFO: The backed up file name is C:\oracle\product\11.2.0\dbhome_1\cfgtoollogs\configToolFailedCommands.bak.1
    WARNING: readme.txt file doesn't exits
    INFO: ConfigClient.saveSession method called
    INFO: Calling event ConfigSessionEnding
    INFO: ConfigClient.endSession method called
    INFO: Completed Configuration
    INFO: Performing Configuration
    INFO: Entering ConfigClient.init method
    INFO: ConfigClient.init sOracleHomeLoc=C:\oracle\product\11.2.0\dbhome_1, sTopAggId=oracle.server
    INFO: Entering ConfigClient.initClientAndSession method
    INFO: ConfigClient.initClientAndSession status : connected to the config framework
    INFO: ConfigClient.initClientAndSession session begun oracle.sysman.emCfg.client.CfwSession@969e08
    INFO: ConfigClient.initClientAndSession m_oAggregate=[Loracle.sysman.emCfg.common.IAggregate;@6155e3
    INFO: Configuration log directory - C:\oracle\product\11.2.0\dbhome_1\cfgtoollogs
    INFO: Exiting ConfigClient.init method
    INFO: Calling event ConfigSessionInitialized
    INFO: ConfigClient.registerOutErrStream method called
    INFO: Entering ConfigClient.getToolsList method
    INFO: Selecting job named 'Oracle Net Configuration Assistant' for retry
    INFO: Selecting job named 'Oracle Database Configuration Assistant' for retry
    INFO: Updating Transient Parameters in the Aggregates
    INFO: Updating Transient Parameters for oracle.server
    INFO: Updating Transient Parameters for oracle.assistants.netca.client
    INFO: Updating Transient Parameters for oracle.assistants.server
    INFO: Setting value to transient variable s_dbcaArgs
    INFO: Setting value to transient variable S_SYSMANPASSWORD
    INFO: Setting value to transient variable s_systemPasswordFlag
    INFO: Setting value to transient variable s_sysmanPasswordFlag
    INFO: Setting value to transient variable S_HOSTUSERPASSWORD
    INFO: Setting value to transient variable s_dbcaArgsOverride
    INFO: Setting value to transient variable windows_commandline_prefix
    INFO: Setting value to transient variable s_sysPasswordFlag
    INFO: Setting value to transient variable S_SYSPASSWORD
    INFO: Setting value to transient variable s_asmsnmpPasswordFlag
    INFO: Setting value to transient variable S_DBSNMPPASSWORD
    INFO: Setting value to transient variable s_dbsnmpPasswordFlag
    INFO: Setting value to transient variable S_ASMSNMPPASSWORD
    INFO: Setting value to transient variable S_SYSTEMPASSWORD
    INFO: Setting value to transient variable s_hostUserPasswordFlag
    INFO: Updating Transient Parameters for OuiConfigVariables
    INFO: Updating Transient Parameters for oracle.sysman.ccr
    INFO: Updating Transient Parameters for oracle.sysman.console.db
    INFO: Successfully updated Transient Parameters in the Aggregates
    INFO: Configuration log directory - C:\oracle\product\11.2.0\dbhome_1\cfgtoollogs
    INFO:
    The Runconfig command constructed is C:\oracle\product\11.2.0\dbhome_1\oui\bin\runConfig.bat ORACLE_HOME=C:\oracle\product\11.2.0\dbhome_1 MODE=perform ACTION=configure RERUN=true $*
    INFO: Since the option is to overwrite the existing C:\oracle\product\11.2.0\dbhome_1\cfgtoollogs\configToolAllCommands file, backing it up
    INFO: The backed up file name is C:\oracle\product\11.2.0\dbhome_1\cfgtoollogs\configToolAllCommands.bak.2
    INFO: Entering ConfigClient.executeSelectedToolsInAggregate method
    INFO: ConfigClient.executeSelectedToolsInAggregate oAggregate=oracle.server:oracle.server:11.2.0.1.0:common
    INFO: Entering ConfigClient.assignAction method
    INFO: ConfigClient.assignAction actionref=[Loracle.sysman.emCfg.common.IActionReference;@1e976fd
    INFO: ConfigClient.assignAction action is of type :configuration
    INFO: Exiting ConfigClient.assignAction method
    INFO: ConfigClient.executeSelectedToolsInAggregate action assigned
    INFO: Started Plugin named: Oracle Net Configuration Assistant
    INFO: Found associated job
    INFO: Starting 'Oracle Net Configuration Assistant'
    INFO: Starting 'Oracle Net Configuration Assistant'
    INFO: UnsatisfiedLinkError exception loading native library: oranjni11
    INFO: java.lang.UnsatisfiedLinkError: C:\oracle\product\11.2.0\dbhome_1\BIN\oranjni11.dll: Can't find dependent libraries
    WARNING: java.lang.UnsatisfiedLinkError: jniGetOracleHome
    WARNING: at oracle.net.common.NetGetEnv.jniGetOracleHome(Native Method)
    WARNING: at oracle.net.common.NetGetEnv.getOracleHome(Unknown Source)
    WARNING: at oracle.net.ca.NetCALogger.getOracleHome(NetCALogger.java:230)
    WARNING: at oracle.net.ca.NetCALogger.initOracleParameters(NetCALogger.java:215)
    WARNING: at oracle.net.ca.NetCALogger.initLogger(NetCALogger.java:130)
    WARNING: at oracle.net.ca.NetCA.main(NetCA.java:408)
    INFO:
    INFO: Error: jniGetOracleHome
    INFO: Oracle Net Services configuration failed.  The exit code is 1
    WARNING:
    INFO:
    INFO: Completed Plugin named: Oracle Net Configuration Assistant
    INFO: Oracle Net Configuration Assistant failed.
    INFO: Oracle Net Configuration Assistant failed.
    INFO: ConfigClient.executeSelectedToolsInAggregate action performed
    INFO: Exiting ConfigClient.executeSelectedToolsInAggregate method
    INFO:
    The Runconfig command constructed is C:\oracle\product\11.2.0\dbhome_1\oui\bin\runConfig.bat ORACLE_HOME=C:\oracle\product\11.2.0\dbhome_1 MODE=perform ACTION=configure RERUN=false $*
    INFO: Since the option is to overwrite the existing C:\oracle\product\11.2.0\dbhome_1\cfgtoollogs\configToolFailedCommands file, backing it up
    INFO: The backed up file name is C:\oracle\product\11.2.0\dbhome_1\cfgtoollogs\configToolFailedCommands.bak.2
    WARNING: readme.txt file doesn't exits
    INFO: ConfigClient.saveSession method called
    INFO: Calling event ConfigSessionEnding
    INFO: ConfigClient.endSession method called
    INFO: Completed Configuration

    Hi Srini,
           The issue is resolved. Thanks for your response.
        The issue is, windows 2003 server is 32 bit and I am trying to install 64 bit 11g database. I tried installing 32 bit 11g database. Before that I have cleared the traces of virtual box in my host system and reinstalled it and tried. It worked out.
    Thanks
    Sunil

  • No Manager Stauts for Requests in R12 on winXP, Consurrent Manager Stops

    Dear all,
    I have installed EBS Vision 12.1.1, everything worked fine but now when i try to run any request it gives me
    Phase: Inactive and Status: No Manager,
    When i try to solve run OracleConcMgrVIS_abc from windows services, it starts but with in a second it stops, when i run adautocfg.cmd, it gives me following output
    C:\Documents and Settings\Administrator>C:\oracle\VIS\db\tech_st\11.1.0\appsutil
    \scripts\VIS_visr12\adautocfg.cmd.
    Starting up AutoConfig engine...
    Mon 12/10/2012
    04:45 PM
    Enter the APPS user password:****
    The log file for this session is located at: C:\oracle\VIS\db\tech_st\11.1.0\app
    sutil\log\VIS_visr12\12101645\adconfig.log
    AutoConfig is configuring the Database environment...
    AutoConfig will consider the custom templates if present.
    Using ORACLE_HOME location : C:\oracle\VIS\db\tech_st\11.1.0
    Classpath : ;C:\oracle\VIS\db\tech_st\11.1.0\jdbc\lib\
    ojdbc6.jar;C:\oracle\VIS\db\tech_st\11.1.0\appsutil\java\xmlparserv2.jar;C:\orac
    le\VIS\db\tech_st\11.1.0\appsutil\java;C:\oracle\VIS\db\tech_st\11.1.0\jlib\netc
    fg.jar;C:\oracle\VIS\db\tech_st\11.1.0\jlib\ldapjclnt11.jar
    Using Context file : C:\oracle\VIS\db\tech_st\11.1.0\appsutil\V
    IS_visr12.xml
    Context Value Management will now update the Context file
    UnsatisfiedLinkError exception loading native library: oranjni11
    Updating Context file...COMPLETED
    Attempting upload of Context file and templates to database...COMPLETED
    Context Value Management Complete. Check Logs for details
    Updating rdbms version in Context file to db111
    Updating rdbms type in Context file to 32 bits
    Configuring templates from ORACLE_HOME ...
    AutoConfig completed successfully.
    Completed execution of AutoConfig
    Event log doesn't show any error.
    CM_VIS_visr12.log logfile shows following output
    The Internal Concurrent Manager has encountered an error.
    Review concurrent manager log file for more detailed information. : 10-DEC-2012 16:09:30 -
    Shutting down Internal Concurrent Manager : 10-DEC-2012 16:09:30
    10-DEC-2012 16:09:30
    The ICM has lost its database connection and is shutting down.
    Spawning reviver process to restart the ICM when the database becomes available again.
    usdipe: error inserting data: ORA-3114
    usdsop: Error inserting into FND_CONC_NT_PROCESSES:
    The operation completed successfully.
    Spawned reviver process 6120.
    List of errors encountered:
    _ 1 _
    Routine AFPCMT encountered an ORACLE error. ORA-01012: not logged on.
    Review your error messages for the cause of the error. (=<POINTER>)
    _ 2 _
    Routine AFPCSQ encountered an ORACLE error. ORA-12705: invalid or
    unknown NLS parameter value specified
    Review your error messages for the cause of the error. (=<POINTER>)
    APP-FND-01388: Cannot read value for profile option CONC_GSM_ENABLED in routine &ROUTINE.
    List of errors encountered:
    _ 1 _
    Routine AFPCAL received failure code while parsing or running your
    concurrent program CPMGR
    Review your concurrent request log file for more detailed information.
    Make sure you are passing arguments in the correct format.
    .............................................................................I have tried to sort out the problem but could not do it please if anyone can help me sorting out the problem. (Right now i dont have oracle support access)
    Thanks
    Nav
    Edited by: 853604 on Dec 10, 2012 5:08 AM

    I have run the script, and I again reinstalled everything from the begining but still having the same problem of concurrent manager is not starting up, I also tried it on win server 2003,
    on both machines i have same problem, but strangly every thing is working fine when i installed without vision, it works fine,
    CM log file is showing folloing log on XP machine
    >>
    The Internal Concurrent Manager has encountered an error.
    Review concurrent manager log file for more detailed information. : 28-DEC-2012 09:52:43 -
    Shutting down Internal Concurrent Manager : 28-DEC-2012 09:52:43
    28-DEC-2012 09:52:43
    The ICM has lost its database connection and is shutting down.
    Spawning reviver process to restart the ICM when the database becomes available again.
    usdipe: error inserting data: ORA-3114
    usdsop: Error inserting into FND_CONC_NT_PROCESSES:
    The operation completed successfully.
    Unable to spawn reviver process.
    The ICM will need to be restarted manually when the database becomes available again.
    Cannot delete the file TempFileName1.
    Check that you have privileges to delete files in the file directory. Contact your system administrator to obtain delete privileges. If your file contains secure data, >>be sure to delete it manually, fr
    List of errors encountered:
    _ 1 _
    Routine AFPCMT encountered an ORACLE error. ORA-01012: not logged on.
    Review your error messages for the cause of the error. (=<POINTER>)
    _ 2 _
    Routine AFPCSQ encountered an ORACLE error. ORA-12705: invalid or
    unknown NLS parameter value specified
    Review your error messages for the cause of the error. (=<POINTER>)
    APP-FND-01388: Cannot read value for profile option CONC_GSM_ENABLED in routine &ROUTINE.
    List of errors encountered:
    _ 1 _
    Routine AFPCAL received failure code while parsing or running your
    concurrent program CPMGR
    Review your concurrent request log file for more detailed information.
    Make sure you are passing arguments in the correct format.
    Seek help,
    Regards

  • Library problem with Oracle 10

    I am installing Oracle 10 on Linux (CentOS)
    I'm in the process of installing Oracle on the screen of the wizard "Setup Wizard", while trying to install the tool Oracle Net Configuration Assistant, this is canceled, and to review the log that is the problem:
    UnsatisfiedLinkError exception loading native library: njni10
    Where should I install this library that I need, and if not too much trouble, from where I can get it?.
    Thank you very much.

    Friend, please answer:
    Answering your question, the system is CentOS 5.3, and 64 bit architecture.
    Sorry I uploaded the last consultation, the problem was that I still need to download a package, in the preparation stage of the system.
    The package was missing:
    glibc-devel for i386.
    When you install this package addresses the issue.
    Leave a link where I found this solution:
    http://www.brucalipto.org/linux/how-to-install-oracle-client-10g-on-red-hat-enterprise-linux-5-64bit
    Thank you very much for your help friend.
    Thanks to this forum can finally install Oracle 10 on CentOS 5.3

  • Native library loading problem

    Hi Folks,
    I currently downloaded, and compiled the bDB core using VS 2010 x64 (I run 64 bit win7, and JRE 64 bit). In Eclipse I'm trying to use the native library (setting up the path correctly), however the java is complaining that it cannot find dependencies.
    I switched to JE, it works fine, but I'm not sure if JE is as performant as the core version. Anybody had the same problem?
    thanks in advance
    Edited by: user5493457 on Mar 22, 2011 3:35 AM

    Hi,
    Please review the building process of the Berkeley DB libraries, to ensure you have correctly built them. Review Building Berkeley DB for Windows, Building the Java API and Java configuration. If you want to build 64-bit libraries, make sure you select x64 as platform configuration in Visual Studio when building.
    I assume you are getting a java.lang.UnsatisfiedLinkError exception at runtime. Just to make sure Eclipse correctly finds the native BDB libraries, in your Run Configuration for the project you're trying to run, under Environment, add a new variable, LD_LIBRARY_PATH with a value of something like D:\BerkeleyDB\db-5.1.25\build_windows\x64\Debug (substitute Debug with Release depending on how you built the libraries) -- this is the path to the location of the native BDB libs, libdb51d.dll and libdb_java51d.dll (or libdb51.dll and libdb_java51.dll), so you should change it as appropriate for your system.
    Also, for that Run Configuration add a new variable, CLASSPATH with a value of something like D:\BerkeleyDB\db-5.1.25\build_windows\x64\Debug\db.jar;D:\BerkeleyDB\db-5.1.25\build_windows\x64\Debug\classes (this is the path to the Java API classes and the Java API jar file -- db.jar). Make sure that "Append environment to native environment" option is checked, in the Run Configurations screen.
    Regards,
    Andrei

Maybe you are looking for

  • Help with table calculations

    Hi, all, I am working on a form that was previously made in Excel. I wanted to remake this in an expandable pdf fillable so that I can add the accessibiltiy information to the form. The first link is to the static pdf converted from Excel here: https

  • Not able to find 'Sales Summary' of a BP in CIC0 transaction

    Hi, We are using CRM 3.0 vesion and not able to find 'Sales Summary' of a BP in CIC0 transaction. Appriciate any suggests on this. Regards, Fedor.

  • Audio Cuts out after a few minutes.  IChat AV 2.1

    I have surfed and have not found any topics like this yet. Audio is cutting out after chatting with another Mac - AV user. Both microphones still appear to work in the preferences, but the person can not hear on the other side. Video works fine, but

  • Process Chain load step in yellow status

    We are having a process chain with a load step.The load step is run with init with data transfer. The load step is scheduled for the next time without changing the option to delta update.So the load step turned yellow with the background job log stat

  • I want to throw this Ipod!

    My Ipod is sick the only thing it does is charge when plugged into the computer but thats all it does. No updating at all. My computer does not see it as hardware and itunes doesn't see it either. Someone help please. I have tried everything and spen