Loadjava error with circular dependencies?

I attempted to load an in-house jar file and several errors were generated. The majority of them are similar to the following:
ORA-29534: referenced object YYYORA8I.com/osi/nx/fw/asn/AbstractType could not be resolved
I tried to load some of the classes outside of the jar file and have recieved the following:
loadjava -user yyyOra8i/xyz -r -v -f ComponentId.class
initialization complete
loading : com/osi/nx/fw/asn/ComponentId
creating : com/osi/nx/fw/asn/ComponentId
resolver :
resolving: com/osi/nx/fw/asn/ComponentId
errors : com/osi/nx/fw/asn/ComponentId
ORA-29534: referenced object YYYORA8I.com/osi/nx/fw/asn/AbstractType could not be resolved
loadjava: 1 errors
So I tried to load AbstractType.class and got:
loadjava -user yyyOra8i/xyz -r -v -f AbstractType.class
initialization complete
loading : com/osi/nx/fw/asn/AbstractType
creating : com/osi/nx/fw/asn/AbstractType
resolver :
resolving: com/osi/nx/fw/asn/AbstractType
errors : com/osi/nx/fw/asn/AbstractType
ORA-29534: referenced object YYYORA8I.com/osi/nx/fw/asn/ComponentId could not be resolved
loadjava: 1 errors
ComponentId.class fails to load because of AbstractType.class. AbstractType.class fails to load because of ComponentId.class. Both these classes reside in the jar file.
Any thoughts?
Thanks.

Give javasyspriv role to scott and execute next command: loadjava -u scott/tiger@instance -v -resolve iText-2.1.3.jar

Similar Messages

  • BAPI_OBJCL_CHANGE error: valuated with object dependencies

    Hi expert,
    having programmed an extension for a customer for automatic maintenance of characteristic values of technical object, we have come across an error.
    When using BAPI_OBJCL_CHANGE to change a characteristic followed by BAPI_TRANSACTION_COMMIT (without wait) we have two scenarios:
    1. if the technical object has no value in the characteristic before calling  BAPI_OBJCL_CHANGE  the characteristic will be set.
    2. if there is already a value set there is an error stating
    Characteristic 'XYZ' valuated with object dependencies (old value '00')
    However, I can't find a dependency definition in CT04. do you know what's wrong here,or what is a usual cause of that?
    thanks
    Stefan

    Hi,
    Please see the given link, It may help you.
    Re: BAPI_OBJCL_CHANGE and BAPI_TRANSACTION_COMMIT
    Regards,
    Shamma

  • Linux JVM: How to load shared libraries with mutual/circular dependencies

    Hi,
    I am using the API
    System.loadLibrary(String name)
    to dynamically link shared libaries to Linux JVM.
    The shared libraries has complex circular symbol dependencies among them.
    I am not able to load shared libraries due to java.lang.UnsatisfiedLinkError.
    Any ideas on how a number of shared libraries with interdependent realtionships
    could be successfully linked in to the Linux JVM?
    Thanks,
    Soumen.
    Background
    ===========
    Successful execution of native code within Java virtual machine in a
    host platform, has two necessary prerequisites:
    Prerequisite 1: The native code is written to the JNI specification
    Prerequisite 2: The native code is dynamically linked with Java virtual
    machine.
    The second step is achieved via simple Java interface, System.loadLibrary:
    http://java.sun.com/j2se/1.4.2/docs/api/java/lang/System.html#loadLibrary(java.lang.String)
    However, implementation of this interface is highly platform dependent
    in regards to exact nature of dynamic linking process.
    Tests
    =====
    I made three shared libraries libfeatureA.so, libfeatureB.so and libfeatureC.so.
    Feature A and Feature B are mutually dependent on each other (i.e cicular
    dependencies between libfeatureA.so, libfeatureB.so) whereas libfeatureC.so
    has no external dependencies.
    Case 1
    I could link libfeatureC.so with java.
    Case 2
    Java failed to resolve circular dependency between libfeatureA.so, libfeatureB.so
    resulting in linking failure. There may be repackaging workarounds which I have
    not yet explored.
    Java source code
    ================
    class TestLoadLibrary
    static
    System.loadLibrary("featureB");
    System.loadLibrary("featureA");
    System.loadLibrary("featureB");
    public static void main(String[] args)
    System.out.println("In TestLoadLibrary.main()");
    Exception in thread "main" java.lang.UnsatisfiedLinkError: /homes/soumen/work/event/featureB/libfeatureB.so.1.0: /homes/soumen/work/ev B.so.1.0: undefined symbol: featureA_func2
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1737)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1662)
    at java.lang.Runtime.loadLibrary0(Runtime.java:817)
    at java.lang.System.loadLibrary(System.java:986)
    at TestLoadLibrary.<clinit>(TestLoadLibrary.java:5)

    The use of "dlopen() application programming" to achieve dynamic link closure works if there are
    no circular dependencies. For example, I have the following dependency:
    libfeatureD.so ==> libfeatureC.so
    Even if I call Java APIs in correct dependency order, i.e.,
    System.loadLibrary("featureC");
    System.loadLibrary("featureD");
    there would be java.lang.UnsatisfiedLinkError for call System.loadLibrary("featureD").
    Now, I have a JNI method implementation, which makes native API call in same dependency order:
    dlopen("libfeatureC.so", RTLD_LAZY|RTLD_GLOBAL);
    dlopen("libfeatureD.so", RTLD_LAZY|RTLD_GLOBAL);
    and now System.loadLibrary calls succeed. Note that I had to set environment
    variable LD_LIBRARY_PATH so that dlopen call would find libraries to load.
    In other words, from a JNI programming point of view, "linking chasm" has been crossed.
    I am looking at circular dependency issue, i.e.,
    libfeatureA.so <==> libfeatureB.so
    There may be library repackaging workaround.
    If anybody knows any workaround, please post.
    -Soumen Sarkar
    JNI code
    ========
    #include <jni.h>
    #include "TestLoadLibrary.h"
    #include <stdio.h>
    #include <string.h>
    #include <dlfcn.h>
    JNIEXPORT void JNICALL Java_TestLoadLibrary_libLoadNative
    (JNIEnv * jenv, jclass class, jobjectArray libNames)
    printf("native: In TestLoadLibrary.libLoadNative()\n");
    char linuxLibName[1024];
    jsize idx = 0;
    jsize nLibs = (*jenv)->GetArrayLength(jenv, libNames);
    for(idx = 0; idx < nLibs; ++idx)
    /* obtain the current object from the object array */
    jobject myObject = (*jenv)->GetObjectArrayElement(jenv, libNames, idx);
    /* Convert the object just obtained into a String */
    const char libName = (jenv)->GetStringUTFChars(jenv,myObject,0);
    strcpy(linuxLibName, "lib");
    strcat(linuxLibName, libName);
    strcat(linuxLibName, ".so");
    printf("\nnative: Trying to open lib with name %s\n", linuxLibName);
    void* handle = dlopen(linuxLibName, RTLD_LAZY|RTLD_GLOBAL);
    if(handle == 0)
    fputs ("\nnative: Could not load lib\n", stderr);
    fputs (dlerror(), stderr);
    else
    printf("\nnative: Loaded lib %s\n", linuxLibName);
    /* Free up memory to prevent memory leaks */
    (*jenv)->ReleaseStringUTFChars(jenv, myObject, libName);
    return;

  • Plug-in errors and dependency errors with a CAF app in DS in NW CE 7.1

    I am learining to build CAF apps in Developer Studio in NW CE 7.1.  Here are my steps and the errors I am getting:
    Open Developer Studio
    Switch to the CA perspective
    File->New->Project
    Choose Development Component under Development Infrastructure
    Press Next
    Choose Composite Application under sap.com
    Choose MyComponents[demo.sap.com] under 'Local Development'
    Vendor: demo.sap.com
    Name: carpool
    Caption: Car Pool
    Language: American English
    Domain: SAP-xApps
    Support Component: CAF-APP (typed in, not chosen)
    Press Finish
    The following error appears:
    Status ERROR
    Plugin : com.sap.ide.metamodel.core.services.eclipse
    code=0
    Internal error
       Plugin name: Metamodel Core
       Internal error  : com.sap.ide.metamodel.core.services.eclipse
       Class      : com.sap.ide.mmservices.core.eclipse.project.ArchiveVersionChecker
       Method     : computeIdeJarProperties
       Message    : C:\Program Files\SAP\IDE\CE\eclipse\E:\Program Files\SAP\IDE\CE\eclipse\plugins\com.sap.dictionary.services_10.0.0.070821165456\lib\com.sap.dictionary.services_api.jar (The filename, directory name, or volume label syntax is incorrect)
       Exception  : java.io.FileNotFoundException: C:\Program Files\SAP\IDE\CE\eclipse\E:\Program Files\SAP\IDE\CE\eclipse\plugins\com.sap.dictionary.services_10.0.0.070821165456\lib\com.sap.dictionary.services_api.jar (The filename, directory name, or volume label syntax is incorrect)
    java.io.FileNotFoundException: C:\Program Files\SAP\IDE\CE\eclipse\E:\Program Files\SAP\IDE\CE\eclipse\plugins\com.sap.dictionary.services_10.0.0.070821165456\lib\com.sap.dictionary.services_api.jar (The filename, directory name, or volume label syntax is incorrect)
    at java.util.zip.ZipFile.open(Native Method)
    at java.util.zip.ZipFile.<init>(ZipFile.java:203)
    at java.util.jar.JarFile.<init>(JarFile.java:132)
    at java.util.jar.JarFile.<init>(JarFile.java:70)
    at com.sap.ide.mmservices.core.eclipse.project.ArchiveVersionChecker.computeIdeJarProperties(ArchiveVersionChecker.java:296)
    at com.sap.ide.mmservices.core.eclipse.project.ArchiveVersionChecker.doFullCheck(ArchiveVersionChecker.java:214)
    at com.sap.ide.mmservices.core.eclipse.project.ArchiveVersionChecker.checkProject(ArchiveVersionChecker.java:125)
    at com.sap.ide.mmservices.core.eclipse.generation.GenerationServiceEclipse.checkArchiveVersions(GenerationServiceEclipse.java:110)
    at com.sap.dictionary.tools.generation.eclipse.GenerationBuilder.checkArchiveVersions(GenerationBuilder.java:335)
    at com.sap.dictionary.tools.generation.eclipse.GenerationBuilder.build(GenerationBuilder.java:85)
    at org.eclipse.core.internal.events.BuildManager$2.run(BuildManager.java:624)
    at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)
    at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:166)
    at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:197)
    at org.eclipse.core.internal.events.BuildManager$1.run(BuildManager.java:246)
    at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)
    at org.eclipse.core.internal.events.BuildManager.basicBuild(BuildManager.java:249)
    at org.eclipse.core.internal.events.BuildManager.basicBuildLoop(BuildManager.java:302)
    at org.eclipse.core.internal.events.BuildManager.build(BuildManager.java:334)
    at org.eclipse.core.internal.events.AutoBuildJob.doBuild(AutoBuildJob.java:137)
    at org.eclipse.core.internal.events.AutoBuildJob.run(AutoBuildJob.java:235)
    at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
    I do not think I missed anything installing NW CE 7.1, but this error makes me think that some plug-in was erroneously left out of the install. 
    Incidentally, I can continue onward and build an app (this is obviously a tutorial), but when I try to deploy I get the following error:
    The deployment of the archive failed with an exception!
    ([ERROR CODE DPL.DCAPI.1027]) DependenciesResolvingException.
    Reason:[ERROR CODE DPL.DC.3033] An unresolved dependencies error
    occurred while sorting the deployment batch items regarding the
    dependencies.;nested exception is:
    com.sap.engine.services.dc.cm.deploy.sdu_deps_resolver.UnresolvedDepen
    denciesException:[ERROR CODE DPL.DC.3437]Unresolved dependencies
    found for the following deployment items:
    1. Component: name:'carpool~ear',vendor:'my.company',location:
    'localDevelopment',version:'20080501110329',software type: 'J2EE',
    dependencies:'[name:'cafruntimeear',vendor:'sap.com',name:
    'cafcoreear',vendor:'sap.com']
    Unresolved dependency:
    name:'cafruntimeear',vendor:'sap.com'          (not found in the admitted
    batch items and the repository)
    Unresolved dependency:
    name:'cafcoreear',vendor:'sap.com'          (not found in the admitted
    batch items and the repository)
    Please check the error log for further informations.
    Again, this looks like I am missing some components.
    Any assistance is greatly appreciated.
    TB

    Further developments:  As you may note from the error message, DS is looking for com.sap.ide.metamodel.core.services.eclipse in both the C: and the E: drive at the same time.  In fact, this file exists in the E: drive subdirectory listed, so I obviously have an error with two drive designations being concatenated.  Does anyone know how I can change the lookup directory for this dependency (or any dependency)? 
    Thanks,
    TB

  • Error with ZCM 10.3.3 Agent

    Hi,
    I got this error with 10.3.3 ZCM agent.
    Client is XP SP3.
    Server is w2K3 64Bits
    Full Message:
    An error ocurred during a general refresh in module: Registration Module. Error Message: Could not load file or assembly 'Novell.Casa.Client.Auth, Version=1.7.0.0, Culture=neutral, PublicKeyToken=ed0eb71059ea593b' or one of its dependencies. The system cannot find the file specified.
    nexpected exception received when refreshing handler Registration Module(GeneralRefresh): Could not load file or assembly 'Novell.Casa.Client.Auth, Version=1.7.0.0, Culture=neutral, PublicKeyToken=ed0eb71059ea593b' or one of its dependencies. The system cannot find the file specified.
    Please help.

    sl0000,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://www.novell.com/support and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Forums Team
    http://forums.novell.com

  • Circular dependencies reference in Java

    Hi all,
    I would liek to ask that if there were aome effective way of overcoming the circular reference problem is Java ... that is I hav e a class A which has a reference to class B, whereas class B has a reference to class A too, it seems like a "deadlock" situation....class B does not know class A can not compile, whereas class A also know nothing about class B .
    I used to over come this by a stupid trick, that is out comment the class A reference is classB first let it compiled and produce a class file ... after that compile class A, add in class A reference in class B again...seems work :)
    public class classB{
    private classA clsA;
         public classB(classA clsA){
              this.clsA = clsA;
    public class classA{
         private classB clsB;
         public classA(){
              clsB = new classB(this);
    }I used to overcome this this C++ by the class forward method like using pointer to declare the reference....
    But in Java is there an effective way ??? Plz help !!!
    p.s. It is said that we should never let circular dependency occurs (bad programming ) ??? but in some situation we really need that....

    Isn't a doubly linked list implemented with just a
    Node class that has references to previous and next
    node? I.e. it's not a case where class A knows about
    B, and B knows about A??My point is that circular dependencies are quite common in computer science and I've never heard they're intrinsically bad and should be avoided.
    Regarding the A knows about B, and B knows about A case. If you can avoid it basically you've lowered the complexity which is good. But it can also be a question of A is defined in terms of B, and B is defined in terms of A and that could be an elegant recursive definition with low complexity which is good.

  • Error: cannot resolve dependencies for "avahi"

    Greetings:
    I get the following message when I run paman -Syu
    :: Replace mkinitrd with mkinitcpio from "current"? [Y/n]
    error: cannot resolve dependencies for "avahi":
    "dbus" is not in the package set
    So, I thougth I'd get rid of avahi, but pacman -R avahi returns:
    error: this will break the following dependencies:
    avahi: is required by gnome-vfs
    I've tried removing dbus from the daemons in rc.conf. I've tired restating dbus folloing instrcutions from another thread here.
    Pacman -Ss dbus returns:
    community/perl-net-dbus 0.33.3-1
    Perl extension for the DBUS message system
    So I am thinking, and am probably completely wrong, that pacman is searching for a repo with dbus in it?
    Color me stumped.

    Yes, I have the default install one uncommented:
    [extra]
    # Add your preferred servers here, they will be used first
    Include = /etc/pacman.d/extra
    Should I add a different one?

  • Error: cannot resolve dependencies for "font..

    what could be that?
    [root@myhost root]# pacman -S -u --sysupgrade
    error: cannot resolve dependencies for "fontconfig":
    fontconfig conflicts with xfree86
    thxs
    (if u can put it in spanish, better )

    but before u post me, updated pacman, and then, not send me that error

  • DDIC_ ACTIVATION error  with SAPKB70006 on ECC6/NW7

    Hi BASIS GURUS,
    I am doing support package SAPKB70006 to SAPKB70012  in ecc 6.0 IDES system. When i check the import logs queue. It showing these below tables are not activated. Then i try to activated in se14,se11,se38. But there it showing cannot be processed via db utility.
    Table YCRM01_S_BUPM could not be activated
    Table YTEL01_S_BUPM could not be activated
    Table ZICMAG_S_BUPM could not be activated.
    It is in ddic_activation stage. Transport tool is o.k..
    Reason for error: TP_STEP_FAILURE, Return code: 0008
    Pls do need full.
    Points guaranteed for immediate reply.

    I have enough space ,  problem is with activation of four tables, part of the error message is as below:-
    Table YCRM01_S_BUPM could not be activated                                                                               
    Table YTEL01_S_BUPM could not be activated                                                                               
    Table ZICMAG_S_BUPM could not be activated                                                                               
    ¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬----
    ¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬----¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬¬
    Field RATE: Component type or domain used not active or does not exist                                                             
           Nametab for table YTEL01_S_BUPM cannot be generated                                                                               
    Dependent table YTEL01_S_BUPM was not activated                                                                               
            Activate dependent table YTEL05_S_BUPM                                                                               
    Activation of dependent table YTEL05_S_BUPM successful                                                                               
            Activate dependent table ZICMAG_S_BUPM                                                                               
    Field RATE: Component type or domain used not active or does not exist                                                             
           Nametab for table ZICMAG_S_BUPM cannot be generated                                                                               
    Dependent table ZICMAG_S_BUPM was not activated                                                                               
    Activate dependent table YTEL01_S_BUPM                                                                               
    Field RATE: Component type or domain used not active or does not exist                                                             
           Nametab for table YTEL01_S_BUPM cannot be generated                                                                               
    Dependent table YTEL01_S_BUPM was not activated                                                                               
            Activate dependent table YTEL05_S_BUPM                                                                               
    Activation of dependent table YTEL05_S_BUPM successful                                                                               
            Activate dependent table ZICMAG_S_BUPM                                                                               
    Field RATE: Component type or domain used not active or does not exist                                                             
           Nametab for table ZICMAG_S_BUPM cannot be generated                                                                               
    Dependent table ZICMAG_S_BUPM was not activated                  
    Following objects not activated/deleted or activated/deleted w. warning:                                                           
           Data Element AD_TITLE1 was activated (error in the dependencies)                                                                   
           Table YCRM01_S_BUPM could not be activated                                                                               
    Table YTEL01_S_BUPM could not be activated                                                                               
    Table ZICMAG_S_BUPM could not be activated

  • Data element was activated (error in the dependencies)

    Hello Friends,
    We had released some TR yesterday to move to Quality and this was not moved successfully and in the TR logs I found the following message. Not sure what to do...request if some has encountered similar situation to give their feedback.
    We had similar problem 2 days ago with another TR failing for the same reasons for another Data element...both are mentioned below...
    We have adjusted the table in SE14 also but still the same. In development box we do not have any issues everything is active.
    We have also regenerated the table maintenance also.
    Following objects not activated/deleted or activated/deleted w. warning:
    Table YAR_CN_BS_ACT could not be activated
    (E- Nametab for table YAR_CN_BS_ACT cannot be generated )
    Data Element ZLINE was activated (error in the dependencies)
    Data Element ZZSERIAL was activated (error in the dependencies)
    Following objects not activated/deleted or activated/deleted w. warning:
    Table YAR_CN_GAAP_AREA could not be activated
    (E- Nametab for table YAR_CN_GAAP_AREA cannot be generated )
    Data Element ZZDES was activated (error in the dependencies)

    Ramesh,
    When you transport a custom object, you need to make available other dependent custom objects for that object in the target system, means that when you transport a custom table you need to take all custom domains, data elements also in the TR if they are not already existing in the target system.....
    Pls check that in your respective TRs, do you have data elements ZLINE, ZZSERIAL also....same for ZZDES...., Also include their domains if they are custom. Now, to remove this error, create a new TR and include all these custom data elements in it and transport to Quality. After that re-import your erroneous transports in Quality with help of basis.
    BR,
    Diwakar

  • Enumeration with Circular Buffer

    Hi, im having trouble with the enumeration of Circular Buffer .
    I had compilation errors with the Ring Buffer Class, it keeps pointing to public Enumeration elements () {return new RingBufferEnumeration(this);}
    Any advice ? Thanks
    This is the RingBufferEnumeration Class code
    public class RingBufferEnumeration implements Enumeration {
    private RingBufferNode firstFree, firstFilled;
         public RingBufferEnumeration(RingBufferNode a) {
              firstFree = new RingBufferNode(a);
              firstFilled = firstFree;
              firstFree.next = firstFree;
    public boolean hasMoreElements(){
      return firstFilled != firstFree;
    public Object nextElement () {
    return firstFilled= firstFilled.next;
    }this is the Ring Buffer Code
    public class RingBufferQueue implements Queue {
          * initialize an empty ring buffer queue
         public RingBufferQueue () {
              firstFree = new RingBufferNode(firstFilled);
              firstFilled = firstFree;
              firstFree.next = firstFree;
         private RingBufferNode firstFree, firstFilled;
          * Determines whether the collection is empty
          * @return true if the collection is empty
         public boolean isEmpty() { return firstFilled == firstFree; }
          * Determines number of elements in collection
          * @return number of elements in collection as integer
         public int size () {
              int count = 0;
              RingBufferNode p = firstFilled;
              for (; p != firstFree; p = p.next) count++;
              return count;
          * Yields enumerator for collection
          * @return an <code>Enumeration</code> that will yield the elements of the collection
          * @see java.util.Enumeration
         public Enumeration elements () {return new RingBufferEnumeration(this);}
          * add a new value to end of the collection
          * @param value element to be inserted into collection
         public synchronized void addLast (Object val) {
              if (firstFree.next == firstFilled)
                   firstFree.next = new RingBufferNode(firstFree.next);
              firstFree.value = val;
              firstFree = firstFree.next;
          * access the first value in collection
          * @return element at front of collection
          * @exception java.util.NoSuchElementException no matching value
         public Object getFirst () {
              if (firstFilled == firstFree) throw new NoSuchElementException();
              return firstFilled.value; }
          * remove first value in collection
          * @exception java.util.NoSuchElementException no matching value
         public synchronized void removeFirst () {
              if (firstFilled == firstFree) throw new NoSuchElementException();
              firstFilled = firstFilled.next;
    class RingBufferNode {
         public Object value;
         public RingBufferNode next;
         public RingBufferNode (RingBufferNode n)
              { next = n; }
    }

    im not sure is it a RingBufferNode but, im sure it is not indexed data for ring Buffer
    My IndexDeque is working correctly
    public Enumeration elements () { return new IndexedEnumeration(this); }IndexedEnumeration
    public class IndexedEnumeration implements Enumeration {
          * initialize newly created IndexedEnumeration
          * @param d collection to enumerate over
         public IndexedEnumeration (Indexed d) { data = d; }
         private Indexed data;
         private int index = 0;
          * see if enumeration should continue
          * @return true if enumeration has at least one more element
         public boolean hasMoreElements () { return index < data.size(); }
          * get next element in enumeration
          * @return value of next element in enumeration
         public Object nextElement () { return data.elementAt(index++); }
    }

  • Locale problem with circular dependancies

    locale -a output
    $ locale -a
    C
    POSIX
    el_GR
    el_GR.iso88597
    el_GR.utf8
    greek
    locale output
    $ locale
    locale: Cannot set LC_ALL to default locale: No such file or directory
    LANG=C
    LC_CTYPE="C"
    LC_NUMERIC=en_US.utf8
    LC_TIME=en_US.utf8
    LC_COLLATE=C
    LC_MONETARY=en_US.utf8
    LC_MESSAGES="C"
    LC_PAPER="C"
    LC_NAME="C"
    LC_ADDRESS="C"
    LC_TELEPHONE="C"
    LC_MEASUREMENT=en_US.utf8
    LC_IDENTIFICATION="C"
    LC_ALL=
    locale-gen output
    # locale-gen
    Generating locales...
    el_GR.UTF-8... done
    el_GR.ISO-8859-7... done
    en_US.UTF-8...circular dependencies between locale definitions
    In /etc/locale.gen i have uncomment these 4: "el_GR.UTF-8", "el_GR ISO-8859-7", "en_US.UTF-8" and "en_US ISO-8859-1" (i have triple check that)
    and in /etc/locale.conf i have these 2 lines:
    LANG="en_US"
    LC_COLLATE="C"
    I'm searching in forums here and googling for about 2 days now, i would appreciate some help.
    I haven't notice any real problem yet, i can write and read in both languages, but i think i surelly will.
    Last edited by s0lid7 (2013-03-07 12:55:39)

    Had not see that but it didn't help. I don't want to change LC_ALL=
    As it seems the problem is only with en_US whatever other language i uncomment in /etc/locale.conf works propertly.
    I remember myself editing the /usr/share/i18n/locales/en_US file when trying to change "workday 2" in order to have monday first in calendar but i'm not sure if that causes the issue since i'm pretty sure that i changed it to default values again anyway.
    I tried LC_ALL="" in /etc/locale.conf but it didn't work either.
    Last edited by s0lid7 (2013-03-07 13:48:37)

  • Error with OCI8 driver installing sendmail/javamail

    Hi to All,
    From Dos window I run the command:
    loadjava -user sys/pwd@name_db -resolve -synonym activation.jar
    This is the first step in order to install a Sendmail package based on javamail, but I have this error:
    =============================
    Java.exe error
    Impossible to find the enterpoint kpufhndl0 of procedure in the library of dynamic link OCI.dll (Sorry, this is a translation of italian language)
    OK
    =============================
    After I click on OK and this is the next response:
    Error while connecting with OCI8 driver to namedb:oracle.aurora.server.tools.loadjava.ToolsException: The JDBC OCI8 Driver is not installed properly, use -thin to try the JDBC Thin Driver: C:\oracle\product\10.2.0\oradb10g\BIN\ocijdbc10.dll: Impossible to find the specified procedure.
    exiting: could not open connection
    After, I have used the command:
    loadjava -thin C:\oracle\product\10.2.0\oradb10g\BIN\ocijdbc10.dll
    This is the result:
    SQL error while connecting with driver to default database: Listener refused the connection with the following error:
    ORA-12505, TNS: listener does not currently know of SID given in connect descriptor
    The connection descriptor used by the client was:
    localhost:1521: orcl
    exiting: could not open connection
    But the connection descriptor that I use is eg COSFI, not orcl.
    Other applications works fine with my descriptor.
    Someone can help me in order to resolve this problem ?
    Thank You and Best Regards.
    Gaetano
    Message was edited by:
    NICK048

    Gaetano,
    I see you took my advice when I replied to your Error with OCI8 driver installing sendmail/javamail.
    However, it doesn't look like you studied the Oracle documentation for loadjava because the command you posted doesn't look right at all.
    Please refer to the Java Developer's Guide for the correct syntax and usage of the loadjava command.
    Good Luck,
    Avi.

  • Error with sdl_mixer [Solved]

    Tried in install tux paint but it did not work very well so removed it. Then started getting errors with pacman
    sudo pacman -S sdl_mixer
    warning: sdl_mixer-1.2.12-3 is up to date -- reinstalling
    resolving dependencies...
    looking for inter-conflicts...
    Targets (1): sdl_mixer-1.2.12-3
    Total Installed Size: 0.21 MiB
    Proceed with installation? [Y/n] y
    (1/1) checking package integrity [------------------------------------------------------------] 100%
    error: sdl_mixer: signature from "Jan Alexander Steffens (heftig) <[email protected]>" is invalid
    error: failed to commit transaction (invalid or corrupted package (PGP signature))
    Errors occurred, no packages were upgraded.
    Keys are up to date....
    Now I am getting these messages when using pacman
    warning: atop-2.0_1-1 is up to date -- reinstalling
    resolving dependencies...
    looking for inter-conflicts...
    Targets (1): atop-2.0_1-1
    Total Download Size: 0.09 MiB
    Total Installed Size: 0.48 MiB
    Net Upgrade Size: 0.00 MiB
    Proceed with installation? [Y/n] y
    :: Retrieving packages from community...
    atop-2.0_1-1-x86_64 88.7 KiB 618K/s 00:00 [------------------------------------------------------------] 100%
    (1/1) checking package integrity [------------------------------------------------------------] 100%
    (1/1) loading package files [------------------------------------------------------------] 100%
    (1/1) checking for file conflicts [------------------------------------------------------------] 100%
    (1/1) checking available disk space [------------------------------------------------------------] 100%
    (1/1) upgrading atop [------------------------------------------------------------] 100%
    ldconfig: File /usr/lib/libSDL_ttf-2.0.so.0.10.1 is empty, not checked.
    ldconfig: File /usr/lib/libsmpeg-0.4.so.0.1.3 is empty, not checked.
    ldconfig: File /usr/lib/libmikmod.so.3 is empty, not checked.
    ldconfig: File /usr/lib/libpaper.so.1 is empty, not checked.
    ldconfig: File /usr/lib/libpaper.so.1.1.2 is empty, not checked.
    ldconfig: File /usr/lib/libSDL_mixer-1.2.so.0.12.0 is empty, not checked.
    ldconfig: File /usr/lib/libmikmod.so is empty, not checked.
    ldconfig: File /usr/lib/libSDL_mixer-1.2.so.0 is empty, not checked.
    ldconfig: File /usr/lib/libmikmod.so.3.0.0 is empty, not checked.
    ldconfig: File /usr/lib/libSDL_ttf-2.0.so.0 is empty, not checked.
    ldconfig: File /usr/lib/libSDL_Pango.so.1 is empty, not checked.
    ldconfig: File /usr/lib/libsmpeg.so is empty, not checked.
    ldconfig: File /usr/lib/libSDL_ttf.so is empty, not checked.
    ldconfig: File /usr/lib/libSDL_Pango.so is empty, not checked.
    ldconfig: File /usr/lib/libpaper.so is empty, not checked.
    ldconfig: File /usr/lib/libsmpeg-0.4.so.0 is empty, not checked.
    ldconfig: File /usr/lib/libSDL_Pango.so.1.1.0 is empty, not checked.
    ldconfig: File /usr/lib/libSDL_mixer.so is empty, not checked.
    Any ideas on what I have done wrong?
    Last edited by heman (2013-02-03 11:07:22)

    Targets (7): ntfs-3g-2013.1.13-1 ntfsprogs-2013.1.13-1 speex-1.2rc1-3 sudo-1.8.6.p6-1 xorg-sessreg-1.0.7-2 xorg-xdpyinfo-1.3.0-2 xorg-xset-1.2.2-2
    Total Download Size: 1.52 MiB
    Total Installed Size: 5.05 MiB
    Net Upgrade Size: 0.02 MiB
    Proceed with installation? [Y/n] y
    :: Retrieving packages from core...
    sudo-1.8.6.p6-1-x86_64 576.4 KiB 2.08M/s 00:00 [------------------------------------------------------------] 100%
    :: Retrieving packages from extra...
    ntfs-3g-2013.1.13-1-x86_64 253.7 KiB 7.16M/s 00:00 [------------------------------------------------------------] 100%
    ntfsprogs-2013.1.13-1-x86_64 150.4 KiB 6.96M/s 00:00 [------------------------------------------------------------] 100%
    speex-1.2rc1-3-x86_64 536.7 KiB 7.65M/s 00:00 [------------------------------------------------------------] 100%
    xorg-sessreg-1.0.7-2-x86_64 7.5 KiB 10.8M/s 00:00 [------------------------------------------------------------] 100%
    xorg-xdpyinfo-1.3.0-2-x86_64 14.0 KiB 16.7M/s 00:00 [------------------------------------------------------------] 100%
    xorg-xset-1.2.2-2-x86_64 16.9 KiB 16.1M/s 00:00 [------------------------------------------------------------] 100%
    (7/7) checking package integrity [------------------------------------------------------------] 100%
    (7/7) loading package files [------------------------------------------------------------] 100%
    (7/7) checking for file conflicts [------------------------------------------------------------] 100%
    (7/7) checking available disk space [------------------------------------------------------------] 100%
    (1/7) upgrading ntfs-3g [------------------------------------------------------------] 100%
    (2/7) upgrading ntfsprogs [------------------------------------------------------------] 100%
    (3/7) upgrading speex [------------------------------------------------------------] 100%
    (4/7) upgrading sudo [------------------------------------------------------------] 100%
    (5/7) upgrading xorg-sessreg [------------------------------------------------------------] 100%
    (6/7) upgrading xorg-xdpyinfo [------------------------------------------------------------] 100%
    (7/7) upgrading xorg-xset [------------------------------------------------------------] 100%
    ldconfig: File /usr/lib/libSDL_ttf-2.0.so.0.10.1 is empty, not checked.
    ldconfig: File /usr/lib/libsmpeg-0.4.so.0.1.3 is empty, not checked.
    ldconfig: File /usr/lib/libmikmod.so.3 is empty, not checked.
    ldconfig: File /usr/lib/libpaper.so.1 is empty, not checked.
    ldconfig: File /usr/lib/libpaper.so.1.1.2 is empty, not checked.
    ldconfig: File /usr/lib/libSDL_mixer-1.2.so.0.12.0 is empty, not checked.
    ldconfig: File /usr/lib/libmikmod.so is empty, not checked.
    ldconfig: File /usr/lib/libSDL_mixer-1.2.so.0 is empty, not checked.
    ldconfig: File /usr/lib/libmikmod.so.3.0.0 is empty, not checked.
    ldconfig: File /usr/lib/libSDL_ttf-2.0.so.0 is empty, not checked.
    ldconfig: File /usr/lib/libSDL_Pango.so.1 is empty, not checked.
    ldconfig: File /usr/lib/libsmpeg.so is empty, not checked.
    ldconfig: File /usr/lib/libSDL_ttf.so is empty, not checked.
    ldconfig: File /usr/lib/libSDL_Pango.so is empty, not checked.
    ldconfig: File /usr/lib/libpaper.so is empty, not checked.
    ldconfig: File /usr/lib/libsmpeg-0.4.so.0 is empty, not checked.
    ldconfig: File /usr/lib/libSDL_Pango.so.1.1.0 is empty, not checked.
    ldconfig: File /usr/lib/libSDL_mixer.so is empty, not checked.
    Ok removed sdl_mixer from cache, but after update now get above

  • RE: [Adobe Reader] when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? i

    HelloThank's for your helpsI hope this document is helpfulBest Regards,
    Date: Sun, 22 Jun 2014 17:10:17 -0700
    From: [email protected]
    To: [email protected]
    Subject:  when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? if you can help me th
        when i open pdf file it open all the pages but some pages give error massage (there was error processing a page,there was a problem reading this document 110) but if i open this page which give me error with google chrome it's work ? if you can help m
        created by Anoop9178 in Adobe Reader - View the full discussion
    Hi,
    Would it be possible for you to share the document?
    Regards,
    Anoop
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6485431#6485431
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
         To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Adobe Reader by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

    thank's for reply and your help
    i did the step's that you told me but  i still have the same problem
                                     i have the latest v.11.0.7
    i
    i disable the protected mode

Maybe you are looking for