Com.sleepycat.db.RunRecoveryException: DB_RUNRECOVERY error

Hi all,
Some time there will be such kind of error occur when initial the db envrironement:
com.sleepycat.db.RunRecoveryException: DB_RUNRECOVERY: Fatal error, run database recovery: DB_RUNRECOVERY: Fatal error, run database recovery
     at com.sleepycat.db.internal.db_javaJNI.DbEnv_close0(Native Method)
     at com.sleepycat.db.internal.DbEnv.close0(DbEnv.java:204)
     at com.sleepycat.db.internal.DbEnv.close(DbEnv.java:81)
     at com.sleepycat.db.Environment.close(Environment.java:39)
     at com.ssc.crd.db.BerkeleyDBUtil.shutdown(BerkeleyDBUtil.java:215)
     at com.ssc.util.BDBContextListener.contextDestroyed(BDBContextListener.java:85)
     at org.apache.catalina.core.StandardContext.listenerStop(StandardContext.java:3770)
     at org.apache.catalina.core.StandardContext.stop(StandardContext.java:4339)
     at org.apache.catalina.core.ContainerBase.stop(ContainerBase.java:1066)
     at org.apache.catalina.core.ContainerBase.stop(ContainerBase.java:1066)
     at org.apache.catalina.core.StandardEngine.stop(StandardEngine.java:447)
     at org.apache.catalina.core.StandardService.stop(StandardService.java:512)
     at org.apache.catalina.core.StandardServer.stop(StandardServer.java:743)
     at org.apache.catalina.startup.Catalina.stop(Catalina.java:601)
     at org.apache.catalina.startup.Catalina.start(Catalina.java:576)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
     at java.lang.reflect.Method.invoke(Unknown Source)
     at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:294)
     at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:432)
And this issue can resolve by running db_recover -c, such as:
C:\Work\Conf\Test\berkeley>db_recover -c
And we try to use setRunRecovery(true); and setRunFatalRecovery(true);, but both failed.
EnvironmentConfig envConf = new EnvironmentConfig();
envConf.setRunRecovery(true);
envConf.setRunFatalRecovery(true);
Only run db_recover -c can resolve it. Why? And how to deal with it in code.
Thanks.
Jane

But after I set all environment, there are some error occur when starting the tomcat server and failed to setup it, generate hs_err_pid3020.txt.
Detail in hs_err_pid3020.txt:
# An unexpected error has been detected by HotSpot Virtual Machine:
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x27d4e525, pid=3020, tid=2760
# Java VM: Java HotSpot(TM) Client VM (1.5.0_08-b03 mixed mode)
# Problematic frame:
# C [libdb43.dll+0x3e525]
--------------- T H R E A D ---------------
Current thread (0x00238d50): JavaThread "main" [_thread_in_native, id=2760]
siginfo: ExceptionCode=0xc0000005, reading address 0x00000018
Registers:
EAX=0x27dcda30, EBX=0x00000000, ECX=0x00808000, EDX=0x00000000
ESP=0x0006f0e8, EBP=0x00000000, ESI=0x27dc4cb8, EDI=0x27dc4cb8
EIP=0x27d4e525, EFLAGS=0x00010206
Top of Stack: (sp=0x0006f0e8)
0x0006f0e8: 27dcda30 ffff86ff 00800000 00000000
0x0006f0f8: 27d50294 00800000 00000000 00800000
0x0006f108: 00000000 27dc4cb8 00000016 00238e10
0x0006f118: 00238d50 27458978 27dc4cb8 00000000
0x0006f128: 00000000 00800000 00008000 27cf8035
0x0006f138: 0000005c 27458978 0002e061 000001a4
0x0006f148: 00238d50 231f4e28 231f4e20 0006f194
0x0006f158: 00a0832f 00238e10 0006f19c 27dc4cb8
Instructions: (pc=0x27d4e525)
0x27d4e515: 00 3b c3 89 9e dc 00 00 00 74 12 8b 54 24 08 50
0x27d4e525: 8b 42 18 50 56 e8 01 c1 02 00 83 c4 0c 8b 86 08
Stack: [0x00030000,0x00070000), sp=0x0006f0e8, free space=252k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C [libdb43.dll+0x3e525]
[error occurred during error reporting, step 120, id 0xc0000005]
Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
j com.sleepycat.db.internal.db_javaJNI.DbEnv_open(JLjava/lang/String;II)V+0
j com.sleepycat.db.internal.DbEnv.open(Ljava/lang/String;II)V+7
j com.sleepycat.db.EnvironmentConfig.openEnvironment(Ljava/io/File;)Lcom/sleepycat/db/internal/DbEnv;+312
j com.sleepycat.db.Environment.<init>(Ljava/io/File;Lcom/sleepycat/db/EnvironmentConfig;)V+6
j com.ssc.crd.db.BerkeleyDBUtil.setup()V+97
j com.ssc.util.BDBContextListener.contextInitialized(Ljavax/servlet/ServletContextEvent;)V+10
j org.apache.catalina.core.StandardContext.listenerStart()Z+429
j org.apache.catalina.core.StandardContext.start()V+1244
j org.apache.catalina.core.ContainerBase.addChildInternal(Lorg/apache/catalina/Container;)V+149
j org.apache.catalina.core.ContainerBase.addChild(Lorg/apache/catalina/Container;)V+26
j org.apache.catalina.core.StandardHost.addChild(Lorg/apache/catalina/Container;)V+25
j org.apache.catalina.startup.HostConfig.deployWAR(Ljava/lang/String;Ljava/io/File;Ljava/lang/String;)V+482
j org.apache.catalina.startup.HostConfig.deployWARs(Ljava/io/File;[Ljava/lang/String;)V+163
j org.apache.catalina.startup.HostConfig.deployApps()V+25
j org.apache.catalina.startup.HostConfig.start()V+147
j org.apache.catalina.startup.HostConfig.lifecycleEvent(Lorg/apache/catalina/LifecycleEvent;)V+132
j org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(Ljava/lang/String;Ljava/lang/Object;)V+68
j org.apache.catalina.core.ContainerBase.start()V+306
j org.apache.catalina.core.StandardHost.start()V+314
j org.apache.catalina.core.ContainerBase.start()V+266
j org.apache.catalina.core.StandardEngine.start()V+221
j org.apache.catalina.core.StandardService.start()V+132
j org.apache.catalina.core.StandardServer.start()V+88
j org.apache.catalina.startup.Catalina.start()V+32
v ~StubRoutines::call_stub
j sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0
j sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+87
J sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;
J java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;
v ~RuntimeStub::alignment_frame_return Runtime1 stub
j org.apache.catalina.startup.Bootstrap.start()V+37
j org.apache.catalina.startup.Bootstrap.main([Ljava/lang/String;)V+158
v ~StubRoutines::call_stub
--------------- P R O C E S S ---------------
Java Threads: ( => current thread )
0x27388908 JavaThread "Dispatcher-Thread-1" daemon [_thread_blocked, id=3304]
0x009c8780 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=2904]
0x00238f80 JavaThread "CompilerThread0" daemon [_thread_blocked, id=560]
0x009c6860 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2040]
0x009bd840 JavaThread "Finalizer" daemon [_thread_blocked, id=3420]
0x009bc368 JavaThread "Reference Handler" daemon [_thread_blocked, id=2584]
=>0x00238d50 JavaThread "main" [_thread_in_native, id=2760]
Other Threads:
0x009b8138 VMThread [id=2484]
0x009e35e0 WatcherThread [id=3052]
VM state:not at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: None
Heap
def new generation total 36288K, used 31681K [0x02a80000, 0x051e0000, 0x051e0000)
eden space 32256K, 90% used [0x02a80000, 0x046eae78, 0x04a00000)
from space 4032K, 64% used [0x04df0000, 0x05075968, 0x051e0000)
to space 4032K, 0% used [0x04a00000, 0x04a00000, 0x04df0000)
tenured generation total 483968K, used 0K [0x051e0000, 0x22a80000, 0x22a80000)
the space 483968K, 0% used [0x051e0000, 0x051e0000, 0x051e0200, 0x22a80000)
compacting perm gen total 8192K, used 7782K [0x22a80000, 0x23280000, 0x26a80000)
the space 8192K, 94% used [0x22a80000, 0x23219850, 0x23219a00, 0x23280000)
No shared spaces configured.
Dynamic libraries:
0x00400000 - 0x0040d000      G:\Jianfang Ye\FM\20070129\Java\jre1.5.0_08\bin\java.exe
0x77f80000 - 0x77ffc000      C:\WINNT\system32\ntdll.dll
0x7c2d0000 - 0x7c335000      C:\WINNT\system32\ADVAPI32.dll
0x7c570000 - 0x7c624000      C:\WINNT\system32\KERNEL32.dll
0x77d30000 - 0x77d9f000      C:\WINNT\system32\RPCRT4.dll
0x78000000 - 0x78045000      C:\WINNT\system32\MSVCRT.dll
0x6d6c0000 - 0x6d85b000      G:\Jianfang Ye\FM\20070129\Java\jre1.5.0_08\bin\client\jvm.dll
0x77e10000 - 0x77e79000      C:\WINNT\system32\USER32.dll
0x77f40000 - 0x77f7c000      C:\WINNT\system32\GDI32.dll
0x77570000 - 0x775a0000      C:\WINNT\system32\WINMM.dll
0x6d280000 - 0x6d288000      G:\Jianfang Ye\FM\20070129\Java\jre1.5.0_08\bin\hpi.dll
0x690a0000 - 0x690ab000      C:\WINNT\system32\PSAPI.DLL
0x6d690000 - 0x6d69c000      G:\Jianfang Ye\FM\20070129\Java\jre1.5.0_08\bin\verify.dll
0x6d300000 - 0x6d31d000      G:\Jianfang Ye\FM\20070129\Java\jre1.5.0_08\bin\java.dll
0x6d6b0000 - 0x6d6bf000      G:\Jianfang Ye\FM\20070129\Java\jre1.5.0_08\bin\zip.dll
0x6d4c0000 - 0x6d4d3000      G:\Jianfang Ye\FM\20070129\Java\jre1.5.0_08\bin\net.dll
0x75030000 - 0x75044000      C:\WINNT\system32\WS2_32.dll
0x75020000 - 0x75028000      C:\WINNT\system32\WS2HELP.DLL
0x74fd0000 - 0x74fee000      C:\WINNT\system32\msafd.dll
0x75010000 - 0x75017000      C:\WINNT\System32\wshtcpip.dll
0x27cf0000 - 0x27d08000      G:\Jianfang Ye\FM\20070129\BDBXML\bin\libdb_java43.dll
0x27d10000 - 0x27db7000      G:\Jianfang Ye\FM\20070129\BDBXML\bin\libdb43.dll
0x7c340000 - 0x7c396000      G:\Jianfang Ye\FM\20070129\BDBXML\bin\MSVCR71.dll
0x7c3a0000 - 0x7c41b000      G:\Jianfang Ye\FM\20070129\BDBXML\bin\MSVCP71.dll
VM Arguments:
jvm_args: -Dsiteminder=false -Dmyss=false -Dconfig.file=G:\Jianfang Ye\FM\20070129\config.properties -Dcom.ssc.eis.myssc.jvmglobal.configfile=G:\Jianfang Ye\FM\20070129\mssconfig-50_dev.xml -Xms512m -Xmx512m -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Djava.util.logging.config.file=G:\Jianfang Ye\FM\20070129\apache-tomcat-5.5.17\conf\logging.properties -Djava.endorsed.dirs=G:\Jianfang Ye\FM\20070129\apache-tomcat-5.5.17\common\endorsed -Dcatalina.base=G:\Jianfang Ye\FM\20070129\apache-tomcat-5.5.17 -Dcatalina.home=G:\Jianfang Ye\FM\20070129\apache-tomcat-5.5.17 -Djava.io.tmpdir=G:\Jianfang Ye\FM\20070129\apache-tomcat-5.5.17\temp
java_command: org.apache.catalina.startup.Bootstrap start
Launcher Type: SUN_STANDARD
Environment Variables:
JAVA_HOME=C:\jdk1.3.1_10
JRE_HOME=G:\Jianfang Ye\FM\20070129\Java\jre1.5.0_08
CLASSPATH=C:\jdk1.3.1_10\lib\tools.jar;G:\Jianfang Ye\FM\20070129\apache-tomcat-5.5.17\bin\bootstrap.jar
PATH=G:\Jianfang Ye\FM\20070129\BDBXML\bin; C:\jdk1.3.1_10\bin
USERNAME=e461579
OS=Windows_NT
PROCESSOR_IDENTIFIER=x86 Family 15 Model 2 Stepping 9, GenuineIntel
--------------- S Y S T E M ---------------
OS: Windows 2000 Build 2195 Service Pack 4
CPU:total 1 (cores per cpu 1, threads per core 1) family 15 model 2 stepping 9, cmov, cx8, fxsr, mmx, sse, sse2
Memory: 4k page, physical 1046324k(275832k free), swap 2519928k(1509212k free)
vm_info: Java HotSpot(TM) Client VM (1.5.0_08-b03) for windows-x86, built on Jul 26 2006 01:10:50 by "java_re" with MS VC++ 6.0

Similar Messages

  • Error with com/sleepycat/db/EnvironmentConfig

    i have this message error when runing exampleLoadContainer.java in the examples
    java.lang.UnsupportedClassVersionError: com/sleepycat/db/EnvironmentConfig (Unsupported major.minor version 49.0)
         at java.lang.ClassLoader.defineClass0(Native Method)
         at java.lang.ClassLoader.defineClass(Unknown Source)
         at java.security.SecureClassLoader.defineClass(Unknown Source)
         at java.net.URLClassLoader.defineClass(Unknown Source)
         at java.net.URLClassLoader.access$100(Unknown Source)
         at java.net.URLClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at dbxml.gettingStarted.exampleLoadContainer.createEnv(exampleLoadContainer.java:143)
         at dbxml.gettingStarted.exampleLoadContainer.loadXmlFiles(exampleLoadContainer.java:163)
         at dbxml.gettingStarted.exampleLoadContainer.main(exampleLoadContainer.java:85)
    Exception in thread "main"

    Hi,
    Do you have multiple versions of Java (JDK and JVM) installed on your machine?
    It sounds a Java class was possibly compiled with version 5 and run with a 1.4 JVM?
    Make sure that the JVM you use for execution is at least as new as the version of javac that was use for compilation.
    Ron

  • Com.sleepycat.je.log.LogException: (JE 3.3.62) java.io.IOException: No lock

    Hi
    From today on my hosted machine facing issue in starting Integrated weblogic server within Jdeveloper.
    m/c machine is oel5 64 bit.
    jdev version : Studio Edition Version 11.1.1.2.0
    I tried all sorts of trick like chmod 777 -R /tmp removing edit.lok file etc. Finally I completely installed jdev and then reinstalled it, but without any luck.
    Now I am getting below errors:
    During installation below is the warning message:
    ==
    download/ORA11G/jdevstudio11112install.bin
    Extracting 0%....................................................................................................100%
    Mar 19, 2012 3:42:13 AM java.util.prefs.FileSystemPreferences checkLockFile0ErrorCode
    WARNING: Could not lock User prefs. Unix error code 37.
    Mar 19, 2012 3:42:13 AM java.util.prefs.FileSystemPreferences syncWorld
    WARNING: Couldn't flush user prefs: java.util.prefs.BackingStoreException: Couldn't get file lock.
    Mar 19, 2012 3:42:43 AM java.util.prefs.FileSystemPreferences checkLockFile0ErrorCode
    WARNING: Could not lock User prefs. Unix error code 37.
    Mar 19, 2012 3:42:43 AM java.util.prefs.FileSystemPreferences syncWorld
    WARNING: Couldn't flush user prefs: java.util.prefs.BackingStoreException: Couldn't get file lock.
    ==
    After running jdev
    ====
    Mar 19, 2012 3:43:33 AM oracle.ideimpl.persistence.BerkeleyDBEnvironment getNameSpace
    SEVERE: Unable to open environment /.jdeveloper/system11.1.1.2.36.55.36/oracle.javatools.cache
    com.sleepycat.je.log.LogException: (JE 3.3.62) java.io.IOException: No locks available
    ====
    Once I try to run the application
    ==
    Mar 19, 2012 3:44:57 AM oracle.security.jps.internal.credstore.ssp.CsfWalletManager createWallet
    WARNING: Cannot persist the wallet. Reason java.io.IOException: No locks available.
    Application Application1 is bound to Server Instance IntegratedWebLogicServer
    Starting Server Instance IntegratedWebLogicServer
    Mar 19, 2012 3:47:39 AM oracle.jps.credstore
    WARNING: Opening of wallet based credential store failed. Reason java.io.IOException: PKI-02002: Unable to open the wallet. Check password.
    Server Instance IntegratedWebLogicServer could not be started: Error starting Server Instance.
    ===
    Any suggestion ..., What might be wrong with my system or configuration. Note that it was working fine till Yesterday.

    I am also facing the same issue in my 64 bit linux machine. Any suggestions?
    Thanks.

  • Com.sleepycat.db.Database.verify(), not working with encrypted db. bug?

    Hi,
    I have a berkeley database file encrypted with a password (In fact, there are two databases embedded in the same physical file). The Berkeley api version that I'm using is the 5.3.21:
    The databases work fine, and I can read all the encrypted data (in both databases)...
    However, if I try to verifiy the database with the method, com.sleepycat.db.Database.verify(), I get the following error...
    BDB0196 Encrypted checksum: no encryption key specified
    BDB0522 Page 0: metadata page corrupted
    BDB0196 Encrypted checksum: no encryption key specified
    BDB3016 C:\cneDir\env-cipher/inforep.db: pgin failed for page 0
    Even if setup the databaseConfig object with my password... This is the code that I'm using:
        private static void doVerify(String args[], String symmetricKey) {
            DatabaseConfig dbConfig;
            VerifyConfig verifyConfig;
            String filename;
            String dbName;
            boolean result;
            filename = args[0] + "/" + args[1];
            dbName   = args[2];
            dbConfig = new DatabaseConfig();
            dbConfig.setEncrypted(symmetricKey);
            System.out.println("Is encrypted: " + dbConfig.getEncrypted());
            dbConfig.setChecksum(true);
            verifyConfig = new VerifyConfig();
            verifyConfig.setNoOrderCheck(false);
            try {
                result = Database.verify(filename, dbName, System.out, verifyConfig, dbConfig);
                System.out.println("Everything is OK? " + result);
            } catch (Exception ex) {
                System.out.println("D OH!");
                ex.printStackTrace();
            }This forced me to take the source code of the Java API to see what is happening...
    Atfer looking the API source code, it seems to me that the method com.sleepycat.db.Database.verify(), never sets the password at any point of its execution... So, I take the source code and I modify the method to set my password (Hardcoded):
        public static boolean verify(final String fileName,
                                     final String databaseName,
                                     final java.io.PrintStream dumpStream,
                                     VerifyConfig verifyConfig,
                                     DatabaseConfig dbConfig)
            throws DatabaseException, java.io.FileNotFoundException {
            final Db db = DatabaseConfig.checkNull(dbConfig).createDatabase(null);
            //db.set_flags(DbConstants.DB_ENCRYPT);
            db.set_encrypt("1234", DbConstants.DB_ENCRYPT_AES);   //Here, 1234 is my password
            return db.verify(fileName, databaseName, dumpStream,
                             VerifyConfig.checkNull(verifyConfig).getFlags());
        }Atfer this modification, the method com.sleepycat.db.Database.verify() returns true and doesn't throw any exception. So, I'm guessing that this could be a bug, right??

    Hi Carlos,
    It is a bug and the fix will be included in the next release(6.0). Thank you for pointing out this issue.
    Regards,
    -Jin

  • SIGSEGV, com.sleepycat.dbxml.dbxml_javaJNI.XmlInputStream_change_ownership

    Hello,
    I'm experimenting crashes on adding a document, on RHEL5 64bit with both Sun JDK 1.5 and 1.6; and on RHEL4 32bit with JDK 1.5
    Selinux is disabled on both RHEL.
    The essential part of the jvm error is:
    # An unexpected error has been detected by Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0x00002aaaaaf2124a, pid=22759, tid=1102199104
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (1.6.0_01-b06 mixed mode)
    # Problematic frame:
    # V [libjvm.so+0x35124a]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j com.sleepycat.dbxml.dbxml_javaJNI.XmlInputStream_change_ownership(Lcom/sleepycat/dbxml/XmlInputStream;JZ)V+0
    j com.sleepycat.dbxml.XmlInputStream.swigReleaseOwnership()V+11
    j com.sleepycat.dbxml.XmlDocument.setContentAsXmlInputStream(Lcom/sleepycat/dbxml/XmlInputStream;)V+12
    j uk.ac.open.kmi.watson.crawler.dbxml.DbXMLDriver.processFile(Ljava/io/File;)V+169
    j uk.ac.open.kmi.watson.crawler.processor.DbXMLWriter.innerProcess(Lorg/archive/crawler/datamodel/CrawlURI;)V+241
    j org.archive.crawler.framework.Processor.process(Lorg/archive/crawler/datamodel/CrawlURI;)V+50
    j org.archive.crawler.framework.ToeThread.processCrawlUri()V+127
    j org.archive.crawler.framework.ToeThread.run()V+97
    v ~StubRoutines::call_stub
    In java I'm adding a document as:
    XmlInputStream theStream = myManager.createLocalFileInputStream("/opt/watson/test.xml");
    myDoc.setContentAsXmlInputStream(theStream);
    and I have the above issues, if I drop XmlInputStream and just set the content as:
    myDoc.setContent("<foo />");
    Everything works, even on 50 threads.
    Anybody encountered similar issues?
    Thank you.
    Laurian
    Message was edited by:
    user555161

    Hi,
    This is the output of the tests, java file put after:
    MAC OS X
    $ java -version
    java version "1.5.0_07"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_07-154)
    Java HotSpot(TM) Client VM (build 1.5.0_07-87, mixed mode, sharing)
    RUN 1
    $ java -Djava.library.path=/opt/watson/usr/dbxml/lib -cp build/classes:../../dbxml/lib/db.jar:../../dbxml/lib/dbxml.jar Test1
    Dictionary - crawler - Define new name 1 -> {name,http://www.sleepycat.com/2002/dbxml}
    Dictionary - crawler - Define new name 2 -> {root,http://www.sleepycat.com/2002/dbxml}
    Dictionary - crawler - Define new name 3 -> dbxml
    Dictionary - crawler - Define new name 4 -> http://www.sleepycat.com/2002/dbxml
    Dictionary - crawler - Define new name 5 -> xml
    Dictionary - crawler - Define new name 6 -> xmlns
    Dictionary - crawler - Define new name 7 -> xsi
    Dictionary - crawler - Define new name 8 -> xsd
    Dictionary - crawler - Define new name 9 -> xs
    Dictionary - crawler - Define new name 10 -> xlink
    Dictionary - crawler - Define new name 11 -> xhtml
    Dictionary - crawler - Define new name 12 -> http://www.w3.org/XML/1998/namespace/
    Dictionary - crawler - Define new name 13 -> http://www.w3.org/XML/2000/xmlns/
    Dictionary - crawler - Define new name 14 -> http://www.w3.org/2000/xmlns/
    Dictionary - crawler - Define new name 15 -> http://www.w3.org/1999/xlink
    Dictionary - crawler - Define new name 16 -> http://www.w3.org/2001/XMLSchema-instance
    Dictionary - crawler - Define new name 17 -> http://www.w3.org/2001/XMLSchema
    Dictionary - crawler - Define new name 18 -> http://www.w3.org/1999/xhtml
    Dictionary - crawler - Define new name 19 -> id
    Dictionary - crawler - Define new name 20 -> name
    Container - crawler - Document storage container opened.
    DB opened/created!
    args:
    test1 - for ading XML from a file (path as argument 2)
    test2 - for ading XML from a string
    test3 - for ading RDF/XML, namespace issue
    Container - crawler - container closed.
    RUN 2 - test 1
    $ java -Djava.library.path=/opt/watson/usr/dbxml/lib -cp build/classes:../../dbxml/lib/db.jar:../../dbxml/lib/dbxml.jar Test1 test1 /opt/watson/test.xml
    Container - crawler - Document storage container opened.
    Container - crawler - Adding document: foo1176934467482
    Dictionary - crawler - Define new name 51 -> http://maven.apache.org/POM/4.0.0
    Dictionary - crawler - Define new name 52 -> {created,http://watson.kmi.open.ac.uk/crawler#}
    Indexer - crawler - add unique-node-metadata-equality-string, key={Size=12 Hex=5a01666f6f31313736393334343637343832}, data={Size=3 Hex=000200}
    Container - crawler - Added document successfully: foo1176934467482
    Container - crawler - container closed.
    java(1497,0x1804a00) malloc: *** Deallocation of a pointer not malloced: 0x333a00; This could be a double free(), or free() called with the middle of an allocated block; Try setting environment variable MallocHelp to see tools to help debug
    RUN 3 - test 2
    $ java -Djava.library.path=/opt/watson/usr/dbxml/lib -cp build/classes:../../dbxml/lib/db.jar:../../dbxml/lib/dbxml.jar Test1 test2
    Container - crawler - Document storage container opened.
    Container - crawler - Adding document: bar1176934723078
    Indexer - crawler - add unique-node-metadata-equality-string, key={Size=12 Hex=5a0162617231313736393334373233303738}, data={Size=3 Hex=002000}
    Container - crawler - Added document successfully: bar1176934723078
    Container - crawler - container closed.
    RUN 4 - test 3
    $ java -Djava.library.path=/opt/watson/usr/dbxml/lib -cp build/classes:../../dbxml/lib/db.jar:../../dbxml/lib/dbxml.jar Test1 test3
    Container - crawler - Document storage container opened.
    Container - crawler - Adding document: bar1176934775465
    Dictionary - crawler - Define new name 53 -> http://www.w3.org/1999/02/22-rdf-syntax-ns#
    Dictionary - crawler - Define new name 54 -> http://www.recshop.fake/cd#
    Indexer - crawler - add unique-node-metadata-equality-string, key={Size=12 Hex=5a0162617231313736393334373735343635}, data={Size=3 Hex=002a00}
    Container - crawler - Added document successfully: bar1176934775465
    Container - crawler - container closed.
    ==============================
    RHEL 5
    $ java -version
    java version "1.6.0_01"
    Java(TM) SE Runtime Environment (build 1.6.0_01-b06)
    Java HotSpot(TM) 64-Bit Server VM (build 1.6.0_01-b06, mixed mode)
    RUN 1
    $ java -Djava.library.path=/opt/watson/usr/dbxml/lib -cp build/classes:../../dbxml/lib/db.jar:../../dbxml/lib/dbxml.jar Test1
    Dictionary - crawler - Define new name 1 -> {name,http://www.sleepycat.com/2002/dbxml}
    Dictionary - crawler - Define new name 2 -> {root,http://www.sleepycat.com/2002/dbxml}
    Dictionary - crawler - Define new name 3 -> dbxml
    Dictionary - crawler - Define new name 4 -> http://www.sleepycat.com/2002/dbxml
    Dictionary - crawler - Define new name 5 -> xml
    Dictionary - crawler - Define new name 6 -> xmlns
    Dictionary - crawler - Define new name 7 -> xsi
    Dictionary - crawler - Define new name 8 -> xsd
    Dictionary - crawler - Define new name 9 -> xs
    Dictionary - crawler - Define new name 10 -> xlink
    Dictionary - crawler - Define new name 11 -> xhtml
    Dictionary - crawler - Define new name 12 -> http://www.w3.org/XML/1998/namespace/
    Dictionary - crawler - Define new name 13 -> http://www.w3.org/XML/2000/xmlns/
    Dictionary - crawler - Define new name 14 -> http://www.w3.org/2000/xmlns/
    Dictionary - crawler - Define new name 15 -> http://www.w3.org/1999/xlink
    Dictionary - crawler - Define new name 16 -> http://www.w3.org/2001/XMLSchema-instance
    Dictionary - crawler - Define new name 17 -> http://www.w3.org/2001/XMLSchema
    Dictionary - crawler - Define new name 18 -> http://www.w3.org/1999/xhtml
    Dictionary - crawler - Define new name 19 -> id
    Dictionary - crawler - Define new name 20 -> name
    Container - crawler - Document storage container opened.
    DB opened/created!
    args:
    test1 - for ading XML from a file (path as argument 2)
    test2 - for ading XML from a string
    test3 - for ading RDF/XML, namespace issue
    Container - crawler - container closed.
    RUN 2 - test 1
    $ java -Djava.library.path=/opt/watson/usr/dbxml/lib -cp build/classes:../../dbxml/lib/db.jar:../../dbxml/lib/dbxml.jar Test1 test1 /opt/watson/test.xml
    $ java -Djava.library.path=/opt/watson/usr/dbxml/lib -cp build/classes:../../dbxml/lib/db.jar:../../dbxml/lib/dbxml.jar Test1 test1 /opt/watson/test.xml
    Container - crawler - Document storage container opened.
    Container - crawler - Adding document: foo1176938860942
    Dictionary - crawler - Define new name 51 -> http://maven.apache.org/POM/4.0.0
    Dictionary - crawler - Define new name 52 -> {created,http://watson.kmi.open.ac.uk/crawler#}
    Indexer - crawler - add unique-node-metadata-equality-string, key={Size=12 Hex=5a01666f6f31313736393338383630393432}, data={Size=3 Hex=000200}
    Container - crawler - Added document successfully: foo1176938860942
    Container - crawler - container closed.
    RUNNING AGAIN
    $ java -Djava.library.path=/opt/watson/usr/dbxml/lib -cp build/classes:../../dbxml/lib/db.jar:../../dbxml/lib/dbxml.jar Test1 test1 /opt/watson/test.xml
    Container - crawler - Document storage container opened.
    # An unexpected error has been detected by Java Runtime Environment:
    # SIGSEGV (0xb) at pc=0x00002aaaaaf2124a, pid=6114, tid=1075882304
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (1.6.0_01-b06 mixed mode)
    # Problematic frame:
    # V [libjvm.so+0x35124a]
    # An error report file with more information is saved as hs_err_pid6114.log
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    Aborted
    In hs_err_pid6114.log:
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j com.sleepycat.dbxml.dbxml_javaJNI.XmlInputStream_change_ownership(Lcom/sleepycat/dbxml/XmlInputStream;JZ)V+0
    j com.sleepycat.dbxml.XmlInputStream.swigReleaseOwnership()V+11
    j com.sleepycat.dbxml.XmlDocument.setContentAsXmlInputStream(Lcom/sleepycat/dbxml/XmlInputStream;)V+12
    j Test1.test1(Ljava/lang/String;)V+150
    j Test1.main([Ljava/lang/String;)V+32
    v ~StubRoutines::call_stub
    RUN 3 - test 2
    $ java -Djava.library.path=/opt/watson/usr/dbxml/lib -cp build/classes:../../dbxml/lib/db.jar:../../dbxml/lib/dbxml.jar Test1 test2
    Container - crawler - Document storage container opened.
    Container - crawler - Adding document: bar1176939020231
    Indexer - crawler - add unique-node-metadata-equality-string, key={Size=12 Hex=5a0162617231313736393339303230323331}, data={Size=3 Hex=000700}
    Container - crawler - Added document successfully: bar1176939020231
    Container - crawler - container closed.
    RUN 4 - test 3
    $ java -Djava.library.path=/opt/watson/usr/dbxml/lib -cp build/classes:../../dbxml/lib/db.jar:../../dbxml/lib/dbxml.jar Test1 test3
    Container - crawler - Document storage container opened.
    Container - crawler - Adding document: bar1176939053875
    Indexer - crawler - add unique-node-metadata-equality-string, key={Size=12 Hex=5a0162617231313736393339303533383735}, data={Size=3 Hex=001100}
    Container - crawler - Added document successfully: bar1176939053875
    Container - crawler - container closed.
    JAVA FILE:
    import com.sleepycat.db.Environment;
    import com.sleepycat.db.EnvironmentConfig;
    import com.sleepycat.db.LockDetectMode;
    import com.sleepycat.db.Transaction;
    import com.sleepycat.db.TransactionConfig;
    import com.sleepycat.dbxml.XmlContainer;
    import com.sleepycat.dbxml.XmlContainerConfig;
    import com.sleepycat.dbxml.XmlDocument;
    import com.sleepycat.dbxml.XmlException;
    import com.sleepycat.dbxml.XmlInputStream;
    import com.sleepycat.dbxml.XmlManager;
    import com.sleepycat.dbxml.XmlManagerConfig;
    import com.sleepycat.dbxml.XmlTransaction;
    import com.sleepycat.dbxml.XmlUpdateContext;
    import com.sleepycat.dbxml.XmlValue;
    import java.io.File;
    import java.text.SimpleDateFormat;
    import java.util.GregorianCalendar;
    import java.util.TimeZone;
    * Test1.java
    * Created on April 18, 2007, 10:43 PM
    * To change this template, choose Tools | Template Manager
    * and open the template in the editor.
    * @author lg3388
    public class Test1 {
    public static final File TMP = new File("/tmp");
    public static final File ENV = new File(TMP, "/foo");
    static {
    ENV.mkdirs();
    public static final String container = "crawler";
    private Environment myEnv;
    private EnvironmentConfig envConf;
    private XmlManager myManager;
    private XmlContainer myContainer;
    public void initialTasks() throws Exception {
    EnvironmentConfig envConf = new EnvironmentConfig();
    envConf.setErrorStream(System.err);
    envConf.setAllowCreate(true);
    //envConf.setRunRecovery(true);
    envConf.setJoinEnvironment(true);
    envConf.setInitializeLocking(true);
    envConf.setInitializeLogging(true);
    envConf.setInitializeCache(true);
    envConf.setTransactional(true);
    envConf.setLockDetectMode(LockDetectMode.DEFAULT);
    envConf.setPrivate(false);
    envConf.setTxnMaxActive(64);
    envConf.setTxnTimeout(60*1000000);
    envConf.setThreaded(true);
    myEnv = new Environment(ENV, envConf);
    XmlManagerConfig managerConfig = new XmlManagerConfig();
    managerConfig.setAdoptEnvironment(true);
    myManager = new XmlManager(myEnv, managerConfig);
    myManager.setLogLevel(XmlManager.LEVEL_ALL, true);
    myManager.setLogCategory(XmlManager.CATEGORY_ALL, true);
    XmlContainerConfig containerConf = new XmlContainerConfig();
    containerConf.setNodeContainer(false);
    containerConf.setAllowValidation(false);
    containerConf.setTransactional(true);
    containerConf.setAllowCreate(true);
    if ( myManager.existsContainer(container) != 0 ) {
    myContainer = myManager.openContainer(container, containerConf);
    } else {
    myContainer = myManager.createContainer(container, containerConf);
    public void finalTasks() throws Exception {
    myContainer.close();
    public void test1(String fileName) throws Exception {
    // UTC unix timestamp
    GregorianCalendar time = new GregorianCalendar(TimeZone.getTimeZone("UTC"));
    long stamp = time.getTimeInMillis();
    Transaction tn = null;
    TransactionConfig tc = new TransactionConfig();
    //tc.setNoWait(true);
    tn = myEnv.beginTransaction(null, tc);//
    XmlTransaction txn = null;
    try {
    txn = myManager.createTransaction(tn);
    XmlUpdateContext theContext = myManager.createUpdateContext();
    String URI = "http://watson.kmi.open.ac.uk/crawler#";
    String attrName = "created";
    XmlValue attrValue = new XmlValue(XmlValue.DATE_TIME, new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'").format(time.getTime()));
    // @@@@@ THIS IS NOT IN TEST 2
    // Get the input stream.
    XmlInputStream theStream = myManager.createLocalFileInputStream(fileName);
    // Get an XmlDocument
    XmlDocument myDoc = myManager.createDocument();
    // Set the document's name
    myDoc.setName("foo" + Long.toString(stamp));
    // @@@@@ THIS IS NOT IN TEST 2
    // Set the content
    myDoc.setContentAsXmlInputStream(theStream);
    // Set the metadata
    myDoc.setMetaData(URI, attrName, attrValue);
    // Put the document into the container
    myContainer.putDocument(txn, myDoc, theContext, null);
    //free resources?
    myDoc.delete();
    txn.commit();
    // free resources?
    txn.delete();
    } catch (XmlException e) {
    e.printStackTrace();
    if (txn != null) txn.abort();
    public void test2(String content) throws Exception {
    // UTC unix timestamp
    GregorianCalendar time = new GregorianCalendar(TimeZone.getTimeZone("UTC"));
    long stamp = time.getTimeInMillis();
    Transaction tn = null;
    TransactionConfig tc = new TransactionConfig();
    //tc.setNoWait(true);
    tn = myEnv.beginTransaction(null, tc);//
    XmlTransaction txn = null;
    try {
    txn = myManager.createTransaction(tn);
    XmlUpdateContext theContext = myManager.createUpdateContext();
    String URI = "http://watson.kmi.open.ac.uk/crawler#";
    String attrName = "created";
    XmlValue attrValue = new XmlValue(XmlValue.DATE_TIME, new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'").format(time.getTime()));
    // Get an XmlDocument
    XmlDocument myDoc = myManager.createDocument();
    // Set the document's name
    myDoc.setName("bar" + Long.toString(stamp));
    // @@@@ THIS IS THE DIFF TO TEST 1
    // Set the content
    myDoc.setContent(content);
    // Set the metadata
    myDoc.setMetaData(URI, attrName, attrValue);
    // Put the document into the container
    myContainer.putDocument(txn, myDoc, theContext, null);
    //free resources?
    myDoc.delete();
    txn.commit();
    // free resources?
    txn.delete();
    } catch (XmlException e) {
    e.printStackTrace();
    if (txn != null) txn.abort();
    public static void main(String[] args) throws Exception {
    Test1 test = new Test1();
    test.initialTasks();
    if (args.length > 0) {
    if ("test1".equals(args[0])) test.test1(args[1]);
    if ("test2".equals(args[0])) test.test2("<bar />");
    if ("test3".equals(args[0])) test.test2(
    "<rdf:RDF"
    + " xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' "
    + "xmlns:cd='http://www.recshop.fake/cd#'> "
    + "<rdf:Description"
    + " rdf:about='http://www.recshop.fake/cd/Empire Burlesque'>"
    + " <cd:artist>Bob Dylan</cd:artist>"
    + " <cd:country>USA</cd:country>"
    + " <cd:company>Columbia</cd:company>"
    + " <cd:price>10.90</cd:price>"
    + " <cd:year>1985</cd:year>"
    + "</rdf:Description></rdf:RDF>"
    } else {
    System.out.println("DB opened/created!");
    System.out.println("args:");
    System.out.println("test1 - for ading XML from a file (path as argument 2)");
    System.out.println("test2 - for ading XML from a string");
    System.out.println("test3 - for ading RDF/XML, namespace issue");
    test.finalTasks();
    }

  • TS1424 I am having issues downloading music from iTunes, it comes up saying an unknown error has occurred - please check your network connection. Now I can connect to iTunes store and have itunes as an exception for downloads so don't know what else to do

    Hello, I've started having an issue downloading songs and apps from iTunes to our PC which has Windows XP Professional installed. We also use Karspersky Anti-Virus and Firefox as an internet browser. Have never had this issue before, it comes up with "An unknow error has occured and downloads are stopped with an error 8003. Also says please check your network connection" We have no issue connecting to iTunes store or the network so not sure how to fix this. It is very frustrating. Have checked Windows Firewall and iTunes is an exception, can't think of anything else why it won't work.

    I sounds as though you need to start again. The following article tells you how to completely remove iTunes and Quicktime. If you didn't actually install iTunes you wont find it in add/remove programs so you can't do that bit, but still delete the iTunes folder in Program Files as advised in the article.
    http://docs.info.apple.com/article.html?artnum=93698
    Once you have got rid of them, try installing the latest version of iTunes. There is a link to it in the article.
    Itunes wont move your music for you, get iTune sgoing then ask again.

  • Cannot load individual websites; Googling is fine, but URL comes up with a 404 error.

    Since I updated Firefox, it seems my internet connectivity in that browser has dropped. I can Google things (not in the URL box, but in the Google box) perfectly, with the exception that sometimes the link clicked from Google doesn't load. However, I cannot actually visit an individual site by entering the URL. If I directly enter the URL, it comes up with a 404 error, site not found. If I try to navigate to some pages from a Google, it comes up with a connectivity problem page. I would really like to be able to use my Firefox again. In the meantime, I'll have to use Google Chrome.

    Try clearing Firefox's cookies and cache
    Do these steps and then reload the website you're having trouble with.
    * Click the menu button [[Image:New Fx Menu]] , choose History and select Clear Recent History....
    * In the Time Range to clear: drop-down, select Everything.
    * Click the arrow next to Details to display the list of items that can be cleared.
    * Select both Cookies and Cache.
    * Click Clear Now.
    Moreover, normally such issues are caused by a firewall/security software which doesn't recognize & therefore blocks new firefox versions:[[Fix problems connecting to websites after updating Firefox]]
    Also see:
    [[Firefox can't load websites but other browsers can]]
    [[Websites don't load - troubleshoot and fix error messages]]

  • Using Firefox 4 & Windows 7. Everytime I start Firefox from a shortcut to a website it comes up with the following error 'there was a problem sending the command to the program'. The requested website does load after this. with no problems.

    Using Firefox 4 & Windows 7. Everytime I start Firefox from a shortcut to a website it comes up with the following error 'there was a problem sending the command to the program'. The requested website does load after this. with no problems.
    If a shortcut is used while Firefox is already open the error does not occur.

    As reported in earlier replies, the annoyance disappeared after I upgraded to Roboform 7.5.6, from 7.5.4.
    Regards, Steve

  • TS3694 I cant get my ipad 2 out of recovery. The apple icon stays on and nothing happens. I tried restoring it through Itunes but it comes up with a 3194 error code. I have the latest Itunes being 10.6.1.7 and the latest windows update.Can someone please

    I cant get my ipad 2 out of recovery. The apple icon stays on and nothing happens. I tried restoring it through Itunes but it comes up with a 3194 error code. I have the latest Itunes being 10.6.1.7 and the latest windows update.Can someone please help?

    Recovery Mode
    1. Disconnect the USB cable from the device, but leave the other end of the cable connected to your computer's USB port.
    2. Turn off the device: Press and hold the Sleep/Wake button for a few seconds until the red slider appears, then slide the slider. Wait for the device to turn off.
    3.While pressing and holding the Home button, reconnect the USB cable to the device. The device should turn on.
    4. Continue holding the Home button until you see the "Connect to iTunes" screen. When this screen appears, release the Home button. iTunes should alert you that it has detected a device in recovery mode. Click OK, and then click Restore to restore the device.
    Note: Data will be lost. You may have to repeat the above many times.

  • Adobe pdf problem; the message comes up:- There was an error opening this document. The file is damaged and could not be repaired.

    Dear all
    I have got  3 mac computers. 2011 13 inch air, 27 inch mac and 2010 pro. latest softwares. all of them have a problem in opening pdf files;esp older files. the error message comes up 'There was an error opening this document. The file is damaged and could not be repaired.'
    I have reinstalled reader, checked software updates etc.
    Any help will be appreciated

    It isn't likely to be a problem with the software. You have two different applications which have no interaction between them, neither of which can open the same group of files on three different systems. It's possible that one application has a problem, but not both or that one system has a problem, but not all three. Typically if there were software corruption, it would not show as a failure to open a specific type of file, but in opening and running the application itself.
    I realise that that doesn't really help you since it doesn't resolve the poblem, but I think you need to start with a known-good pdf, preferably one you can download from an internet source, and see whether that opens. If it does, then it would confirm that the software is working properly.
    For a known-good PDF to download, try one of the manuals from the support site here.

  • When I try to install adobe photoshop 13 on my computer it comes up with the following error message " This installer does not support installation on a 64bit windows operating system" error code 6. How to I recify this? TIA

    When I try to install adobe photoshop 13 on my computer it comes up with the following error message " This installer does not support installation on a 64bit windows operating system" error code 6. How to I recify this? TIA

    You can try downloading the 64 bit version.  You can download the trial version of the software thru the page linked below and then use your current serial number to activate it.
    Be sure to follow the steps outlined in the Note: Very Important Instructions section on the download pages at this site and have cookies enabled in your browser or else the download will not work properly.
    Photoshop/Premiere Elements 13: http://prodesigntools.com/photoshop-elements-13-direct-download-links-premiere.html

  • How to open Camera Raw in Bridge, it comes up with the following error

    How to open Camera Raw in Bridge, it comes up with the following error Bridge parent application is not Active   Bridge requires that a qualifing product has been lanched at least once to enable this feature.  It opens in Photoshop CS6 & Elements 10 but not Bridge?

    You need to look at all programs in your uninstall list, and see if you spot any old trials that are no longer active.
    Camera Raw in Bridge and PS are the same program, so its not the program but access.  Would have been nice it you had stated OS, but here are locatons of camera raw for both OS.
    Win           Users/[user name]/AppData/Roaming/Adobe/Adobe Photoshop CS5/Adobe Photoshop CS5 Settings    note: appdata a hidden file.
    Mac          Users/[user name]/Library/Preferences

  • TS3694 hi, i tried to do a software update on my iphone 3gs and it comes up with an unknown error code 1015, any ideas?

    i tried to do a software update on my iphone 3gs comes up with an unknown error message code 1015
    any ideas?

    See this post:
    TS3694 Trying to restore and update my iphone 3, the system tells me 1015 error What can I do?

  • Appleworks won't open, comes up with shared libray error?

    for some reason my Appleworks has suddenly stopped working. It comes up with Shared libray error.
    "-<appleworks>MW_MSL.PPC.Shlb>Interface2ib>" which is gibberish to me.
    any Ideas????

    for some reason my Appleworks has suddenly stopped
    working. It comes up with Shared libray error.
    "-<appleworks>MW_MSL.PPC.Shlb>Interface2ib>" which
    is gibberish to me.
    Please read this User Tip as it seems to be the same problem. That is, a wrongly named file inside the AppleWorks package.
    <http://discussions.apple.com/click.jspa?searchID=-1&messageID=607619>
    Dale

  • My Canon MG4150 printer won't connect. Im using OS X10.7 which says is compatible. Its identifies via USB and says downloading, but then comes up with software unavailable error.

    My Canon MG4150 printer won't connect. Im using OS X10.7 which says is compatible. Its identifies via USB and says downloading, but then comes up with software unavailable error. Any ideas?

    Hi Pebbles2313,
    It sounds like you have an issue with your printer software. You may find some of the software necessary to run your printer through the following link:
    OS X: Printer and scanner software available for download - Apple Support
    http://support.apple.com/en-is/HT201465
    Thanks for being a part of the Apple Support Communities!
    Cheers,
    Braden

Maybe you are looking for

  • SetMnemonic for non-english characters

    Does anybody knos how to set JButtons mnemonic for non-english characters? My mnemonic is loaded from a resource bundle, and in the documentation the setMnemonic(char) is only limited to english and it is written that the user should call setMnemonic

  • Message no.FMCF101 and FI228

    Dear All, We have created PO in the FY-2014 and GRN is also taken in the year 2014.While doing MIRO during the FY-2015 we are getting the below error. Automatic Carryforward is only allowed for amount 0 Message No. FMCF101 and document item has not 

  • ODBC System DSN's are invisible in teh Data Sources even though they exist

    For a long time I had a problem with Windows XP Pro systems that had NI-DAQ installed.  These machines were ATE controllers which had Labview applications deployed with NI-DAQ cards.  I needed database connectivity through several system DSN's for Ac

  • HELP!!! i need help on how to update the core applications and system software.

    can anyone help me update my software for a blackberry curve 9300. i need to updat the core applications and the system software but i dont know how to do so. do i do it by my desktop or device

  • PE10 crashes after inserting transition and moving timeline cursor to its location

    I have a 100% repro crashing bug in Premier Elements 10. No known workaround. I have several clips on the timeline. I want a transition transition between two of the clips. I drag-drop a dissolve transition between the two clips. Then try to move the