Problem about running oci demo program!

I execute a demo program under $oracle_home/rdbms/demo,get errors:
[oracle@lnx71 demo]$ ./cdemodsa
./cdemodsa: error while loading shared libraries: libclntsh.so.9.0: cannot open
[oracle@lnx71 demo]$
The environment is : gcc 2.95.3 ; kernel 2.40-8.
Can somebody tell me why?
Thanks a lot!

It sounds like your environment has not been setup properly. You might want to make sure that libclntsh.so.9.0 is in LD_LIBRARY_PATH. Other settings that need to be checked are mentioned in the demo makefile.
Hope that helps.

Similar Messages

  • Problem in running a JAXB program?

    hi
    i am new to JAXB. I Read the article in following link.
    http://java.sun.com/developer/technicalArticles/WebServices/jaxb/
    i am trying to run a example program , got an error message
    i used this command for running
    java test.jaxb.UsingJAXBTest1
    The ERROR message is
    java.lang.NullPointerException
    at test.jaxb.impl.runtime.ValidatingUnmarshaller.startElement(Validating
    Unmarshaller.java:90)
    at org.xml.sax.helpers.XMLFilterImpl.startElement(Unknown Source)
    at com.sun.xml.bind.unmarshaller.InterningXMLReader.startElement(Interni
    ngXMLReader.java:74)
    at org.apache.xerces.parsers.AbstractSAXParser.startElement(AbstractSAXP
    arser.java:342)
    at org.apache.xerces.impl.xs.XMLSchemaValidator.startElement(XMLSchemaVa
    lidator.java:401)
    at org.apache.xerces.impl.XMLNamespaceBinder.handleStartElement(XMLNames
    paceBinder.java:809)
    at org.apache.xerces.impl.XMLNamespaceBinder.startElement(XMLNamespaceBi
    nder.java:556)
    at org.apache.xerces.impl.dtd.XMLDTDValidator.handleStartElement(XMLDTDV
    alidator.java:2678)
    at org.apache.xerces.impl.dtd.XMLDTDValidator.startElement(XMLDTDValidat
    or.java:782)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanStartElemen
    t(XMLDocumentFragmentScannerImpl.java:747)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContent
    Dispatcher.dispatch(XMLDocumentFragmentScannerImpl.java:1445)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(XM
    LDocumentFragmentScannerImpl.java:328)
    at org.apache.xerces.parsers.StandardParserConfiguration.parse(StandardP
    arserConfiguration.java:479)
    at org.apache.xerces.parsers.StandardParserConfiguration.parse(StandardP
    arserConfiguration.java:521)
    at org.apache.xerces.parsers.XMLParser.parse(XMLParser.java:148)
    at org.apache.xerces.parsers.AbstractSAXParser.parse(AbstractSAXParser.j
    ava:972)
    at org.xml.sax.helpers.XMLFilterImpl.parse(Unknown Source)
    at test.jaxb.impl.runtime.UnmarshallerImpl.unmarshal(UnmarshallerImpl.ja
    va:140)
    at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnm
    arshallerImpl.java:131)
    at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnm
    arshallerImpl.java:136)
    at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnm
    arshallerImpl.java:145)
    at javax.xml.bind.helpers.AbstractUnmarshallerImpl.unmarshal(AbstractUnm
    arshallerImpl.java:163)
    at test.jaxb.UsingJAXBTest1.main(UsingJAXBTest1.java:40)
    please help me what is the problem?
    thanks

    I had trouble with the example but I was able to get JAXB working. It's an amazing tool that will save you lots of time. I wrote the following quick JAXB tutorial that should get you up and running in about five minutes.
    working JAXB example:
    http://www.keithcoleman.com/jaxb.php
    Hope that helps! Let me know if you still have any problems.
    -Keith Coleman
    http://www.keithcoleman.com

  • Problem when Running a java program

    I am new to Java. I have installed JDK 1.3.1 on my machine. have setup the class path also. My program complies fine but when i am running it I am getting the following error.
    Exception in thread "main" java.lang.NoClassDefFoundError: InsertSuppliers
    Press any key to continue . . .
    I am pasting my java program underneath. Can anybody please help me?
    import java.sql.*;
    import java.lang.*;
    import java.util.*;
    import java.io.*;
    public class InsertSuppliers
         public static void main(String[] args)
    throws IOException
              System.out.println("iuysuiysuidyfsduyf");
              String url = "jdbc:odbc:CafeJava";
              Connection con;
              Statement stmt;
              String query = "select SUP_NAME, SUP_ID from SUPPLIERS";
              try {
                   Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
              } catch(java.lang.ClassNotFoundException e) {
                   System.err.print("ClassNotFoundException: ");
                   System.err.println(e.getMessage());
              try {
                   con = DriverManager.getConnection(url,
                                                 "Admin", "duke1");
                   stmt = con.createStatement();
                   stmt.executeUpdate("insert into SUPPLIERS " +
         "values(49, 'Superior Coffee', '1 Party Place', " +
                        "'Mendocino', 'CA', '95460')");
                   stmt.executeUpdate("insert into SUPPLIERS " +
                        "values(101, 'Acme, Inc.', '99 Market Street', " +
                        "'Groundsville', 'CA', '95199')");
                   stmt.executeUpdate("insert into SUPPLIERS " +
         "values(150, 'The High Ground', '100 Coffee Lane', " +
                        "'Meadows', 'CA', '93966')");
                   ResultSet rs = stmt.executeQuery(query);
                   System.out.println("Suppliers and their ID Numbers:");
                   while (rs.next()) {
                        String s = rs.getString("SUP_NAME");
                        int n = rs.getInt("SUP_ID");
                        System.out.println(s + " " + n);
                   stmt.close();
                   con.close();
              } catch(SQLException ex) {
                   System.err.println("SQLException: " + ex.getMessage());
    }

    Your error occurs because java can not find a file named InsertSuppliers.class in the Classpath. there are 3 basic ways to make this work. Assume you compiled InsertSuppliers so that the InsertSuppliers.class file is in a directory c:\myjava (I am assuming Windows).
    1. Do not set your System Classpath. CD to the c:\myjava directory. Enter "java InsertSuppliers"
    2. Set your System Classpath = .;c:\myjava and enter "java InsertSuppliers" from any directory.
    3. Enter "java -classpath c:\myjava InsertSuppliers" from any directory.
    Of course, none of these will work if InsertSuppliers.class file doesn't exist in c:\myjava. And remember that class names are case sensitive.

  • The problem about running MRP by MDBT

    Hello everydody,
    I encountered a strange problem in SAP system when I runned MRP by using MDBT.
    Usually running MRP has two ways.First running MRP by using T-code MD02 ; second running MRP by using T-code MDBT in the background.In my SAP system,I used T-code MDBT to run MRP, and the MPR parameter is below:
    Scope of planning
    Plant                             2000
    Processing key             NETCH 
    Create purchase req.      1      
    Schedule lines                 3      
    Create MRP list                1      
    Planning mode                 3      
    Scheduling                      1      
    Planning date             2010.06.30
    Normally if I choosed the Planning mode 3 Delete and recreate planning data,then after running MRP ,the Plan orders' number and purchase requestions number should be changed and produced new numbers.
    But I used T-code MDBT to run MRP, the Plan orders' number wasn't changed,the purchase requestions' number was changed. If I used T-code MD02 to run MRP, the  parameter is the same as above.After running MRP,the plan orders' number and the purchase reequestions' number were changed.
    I don't know how caused this happening.
    Is  there anybody who can help reslove this problem?
    Thanks & Best regards!

    Hi,Nikolai
    I was spending vacation, i can't get that now, and i will send it to you as soon as possible,i think maybe that error occured beacause I updated the metadata from V 9.0.2 and imported it into the new version of Builder?

  • A problem about run interactive form in GP

    Hi all, I am trying to run an interactive form in GP, but I am in trouble.
    I can`t instanitiate any form in GP. I always got exception.
    I am sure ADS which can work and I also configured  the adapter of GP.
    I have no idea what I can do. Can anyone give me a hand? Thx a lot. ^^
    PS: Here is my exception message:
    Execution ended in an unrecognized state
    com.sap.caf.eu.gp.base.exception.EngineException: Execution ended in an unrecognized state
    at com.sap.caf.eu.gp.model.co.execute.impl.CallableObjectExecutorImpl.executeBackground(CallableObjectExecutorImpl.java:242)
    at com.sap.caf.eu.gp.model.co.execute.impl.CallableObjectExecutorImpl.execute(CallableObjectExecutorImpl.java:294)
    at com.sap.caf.eu.gp.model.co.CallableObjectExecutor.doGet(CallableObjectExecutor.java:256)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Caused by: com.sap.caf.eu.gp.model.co.tech.TechnicalCallableObjectException: iform032
    at com.sap.caf.eu.gp.model.iforms.preproc.FormPreprocessor.execute(FormPreprocessor.java:691)
    at com.sap.caf.eu.gp.model.co.background.impl.BackgroundCOExecutorImpl$CallableObjectExecutor.run(BackgroundCOExecutorImpl.java:126)
    at com.sap.caf.eu.gp.model.co.background.impl.BackgroundCOExecutorImpl.execute(BackgroundCOExecutorImpl.java:504)
    at com.sap.caf.eu.gp.model.co.background.impl.BackgroundCOExecutorImpl.execute(BackgroundCOExecutorImpl.java:581)
    at com.sap.caf.eu.gp.model.co.execute.impl.CallableObjectExecutorImpl.executeBackground(CallableObjectExecutorImpl.java:123)
    ... 18 more
    Caused by: com.sap.caf.eu.gp.model.co.tech.TechnicalCallableObjectException: iform032
    at com.sap.caf.eu.gp.model.iforms.preproc.FormPreprocessor.execute(FormPreprocessor.java:381)
    ... 22 more

    Hi Louis,
    Yes I have exactly the same problem with the same message.
    I have created a GP processus. In my block I have 2 action. The first is an Iview Visual Composer CO and the second contains my PDF CO.
    My PDF CO contains an xdp file.
    Regards
    Tony
    Execution ended in an unrecognized state
    com.sap.caf.eu.gp.base.exception.EngineException: Execution ended in an unrecognized state at com.sap.caf.eu.gp.model.co.execute.impl.CallableObjectExecutorImpl.executeBackground(CallableObjectExecutorImpl.java:242) at com.sap.caf.eu.gp.model.co.execute.impl.CallableObjectExecutorImpl.execute(CallableObjectExecutorImpl.java:294) at com.sap.caf.eu.gp.model.co.CallableObjectExecutor.doGet(CallableObjectExecutor.java:256) at javax.servlet.http.HttpServlet.service(HttpServlet.java:740) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365) at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944) at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266) at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95) at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175) at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33) at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(AccessController.java:215) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170) Caused by: com.sap.caf.eu.gp.model.co.tech.TechnicalCallableObjectException: iform032 at com.sap.caf.eu.gp.model.iforms.preproc.FormPreprocessor.execute(FormPreprocessor.java:701) at com.sap.caf.eu.gp.model.co.background.impl.BackgroundCOExecutorImpl$CallableObjectExecutor.run(BackgroundCOExecutorImpl.java:126) at com.sap.caf.eu.gp.model.co.background.impl.BackgroundCOExecutorImpl.execute(BackgroundCOExecutorImpl.java:504) at com.sap.caf.eu.gp.model.co.background.impl.BackgroundCOExecutorImpl.execute(BackgroundCOExecutorImpl.java:581) at com.sap.caf.eu.gp.model.co.execute.impl.CallableObjectExecutorImpl.executeBackground(CallableObjectExecutorImpl.java:123) ... 18 more Caused by: com.sap.caf.eu.gp.model.co.tech.TechnicalCallableObjectException: iform032 at com.sap.caf.eu.gp.model.iforms.preproc.FormPreprocessor.execute(FormPreprocessor.java:381) ... 22 more

  • VMWare Problem about running OS

    Hi there
    my kernel is 2.6.26 and i installed vmware-server also any any patch 117d
    everything seems ok but when i try to run any OS image, there is an error says Unable to change virtual machine power state: The process exited with an error:
    End of error message
    when check the /var/log/vmware/
    i got the following logs. http://sudrap.org/paste/4631/ and http://sudrap.org/paste/4641/
    is there any ide how can i fix it ?
    PS: İ got everything is successful message after the built proccess there was no error
    Last edited by corpuscallosum (2008-09-19 13:45:17)

    Google "Version mismatch with vmmon module: expecting 138.0, got 168.0" ....Looks like you're not the only one having the issue, probably related to the recent kernel update.
    I'm not running VMWare on Arch, so I didn't look too far into it, but it didn't look like there is a fix/work-around yet, except maybe trying a older kernel version.  Likely there will be an updated "any-xxx" patch that will fix it before too long.
    Arch is by far my favorite distribution, and the only one I use on the desktop.  But for something that is as kernel dependent as VMware, and in fact usually requires a less than recent kernel, my personal feeling is that there are better host OS's for it  ( VMWare ).  Since Arch runs a very current kernel and updates it frequently, it is very difficult to keep the VMWare patches in sync and you can expect frequent issues like what you're seeing now. 
    If the main use of your machine is VMWare I'd think about using Slackware or CentOS, or similar as the host.  For that specific purpose, I think either of those distributions are perfect.  If VMWare isn't the main use for the machine, and you gotta have Arch, maybe delay updating your kernel quite as frequently.  This is of course just my opinion, and YMMV.
    Last edited by dschrute (2008-09-19 19:45:28)

  • Problem with running a java program from the command line

    I have this code:
    package pkg;
    import jxl.*;
    import java.io.File;
    public class TestClass {
         public static void main(String[] args) {
              try{
                   Workbook book = Workbook.getWorkbook(new File("d:/testWorkspace/excFile.xls"));
                   Sheet sheet = book.getSheet(0);
                   String s=sheet.getCell(4, 2).getContents();
                   System.out.println(s);     
              }catch (Exception e){System.err.println(e);}
    }I've wrote it in Eclipse, added jxl.jar to the buildpath, and it works fine.
    Then I tried to run it from the command line and I did it like this:
    D:\testWorkspace\testProject\bin> java -cp \jxl.jar pkg.TestClassThe result was:
    Exception in thread "main" java.lang.NoClassDefFoundError: pkg/TestClass
    Caused by: java.lang.ClassNotFoundException: pkg.TestClass
    ...but the file TestClass.class DOES exist in the folder d:\testWorkspace\testProject\bin\pkg\ and the file jxl.jar IS on the root of drive D (like I already wrote, it worked fine inside the Eclipse).
    So, my question is: How to run this code from the command line?
    I have no idea what went wrong.
    Can someone help me, please?

    The current directory is not implied in the classpath.
    D:\testWorkspace\testProject\bin> java -cp .;d:\ pkg.TestClassor
    D:\testWorkspace\testProject\bin> java -cp .;d:\jxl.jar pkg.TestClassI always forget which is right since I never work with jars...

  • Problems while running the Demo connecting to Oracle 9i DB

    hi bench,
    I have installed Oracle 9iAS on Windows 2000 OS . I am able
    to see the httpServer page when given the url : http://localhost
    when i try the OraclejspDemo -> SQLAccess . I get a
    error while connecting to Database. My Database is Oracle 9i..
    can some one tell me any document directing to this
    errors and solutions ....
    Thanks
    HS

    hi ,
    This is the connect string i am giving at the sample
    jdbc:oracle:thin:@Test_DB:1521:Test where Test_DB is the
    Database machine name and Test is the SID.
    I try to run the sample Database Access Beans ->ConnBeanDemo
    but i get the following error
    There was an error doing the query:
    java.sql.SQLException: ORA-00600: ????????????: [ttcgcshnd-1],
    [0],[],[],[],[],[],[]
    what am i missing ????
    Thanks
    HS

  • Problem about the GeoRaster demo files

    Hi there!
    The document "Oracle Spatial GeoRaster 10g Release 1 (10.1)" says I could find the demo files under the installation directory "$ORACLE_HOME/md/demos/georaster/plsql",but I cannot find the "demos" folder under the "md" directory.If you installed 10g and got the "plsql" folder,could you send it to me please?
    Thank you very much!
    My e-mail is: [email protected]

    hi Dan:
    Thanks for your reply,but I have not get the companion cd.could you please send the files to my e-mailbox?
    I only need the demo files in "md/demos/georaster/plsql".Thank you!

  • Problem while running client program in Netbeans4.0

    Hi,
    I am facing the following problem while running a client program in Nebeans4.0.
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x7C9012B4
    Function=RtlInitAnsiString+0x1B
    Library=C:\WINDOWS\system32\ntdll.dll
    Current Java thread:
    at java.net.Inet4AddressImpl.lookupAllHostAddr(Native Method)
    at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:770)
    at java.net.InetAddress.getAddressFromNameService(InetAddress.java:1059)
    at java.net.InetAddress.getAllByName0(InetAddress.java:1009)
    at java.net.InetAddress.getAllByName0(InetAddress.java:981)
    at java.net.InetAddress.getAllByName(InetAddress.java:975)
    at weblogic.rjvm.RJVMFinder.getDnsEntries(RJVMFinder.java:370)
    at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:181)
    - locked <0x1007ff78> (a weblogic.rjvm.RJVMFinder)
    at weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:125)
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:291)
    at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:234)
    at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory.java:135)
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:662)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:243)
    at javax.naming.InitialContext.init(InitialContext.java:219)
    at javax.naming.InitialContext.<init>(InitialContext.java:195)
    at AcfClient.getHomeRef(AcfClient.java:73)
    at AcfClient.forceSession(AcfClient.java:43)
    at AcfClient.main(AcfClient.java:34)
    Dynamic libraries:
    0x00400000 - 0x00406000      C:\Data\j2sdk1.4.2_04\jre\bin\java.exe
    0x7C900000 - 0x7C9B0000      C:\WINDOWS\system32\ntdll.dll
    0x7C800000 - 0x7C8F4000      C:\WINDOWS\system32\kernel32.dll
    0x77DD0000 - 0x77E6B000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77E70000 - 0x77F01000      C:\WINDOWS\system32\RPCRT4.dll
    0x77C10000 - 0x77C68000      C:\WINDOWS\system32\MSVCRT.dll
    0x08000000 - 0x08138000      C:\Data\j2sdk1.4.2_04\jre\bin\client\jvm.dll
    0x77D40000 - 0x77DD0000      C:\WINDOWS\system32\USER32.dll
    0x77F10000 - 0x77F56000      C:\WINDOWS\system32\GDI32.dll
    0x76B40000 - 0x76B6D000      C:\WINDOWS\system32\WINMM.dll
    0x6BD00000 - 0x6BD0D000      C:\WINDOWS\system32\SYNCOR11.DLL
    0x10000000 - 0x10007000      C:\Data\j2sdk1.4.2_04\jre\bin\hpi.dll
    0x00390000 - 0x0039E000      C:\Data\j2sdk1.4.2_04\jre\bin\verify.dll
    0x003B0000 - 0x003C9000      C:\Data\j2sdk1.4.2_04\jre\bin\java.dll
    0x003D0000 - 0x003DD000      C:\Data\j2sdk1.4.2_04\jre\bin\zip.dll
    0x02DA0000 - 0x02DAF000      C:\Data\j2sdk1.4.2_04\jre\bin\net.dll
    0x71AB0000 - 0x71AC7000      C:\WINDOWS\system32\WS2_32.dll
    0x71AA0000 - 0x71AA8000      C:\WINDOWS\system32\WS2HELP.dll
    0x71A50000 - 0x71A8F000      C:\WINDOWS\System32\mswsock.dll
    0x76F20000 - 0x76F47000      C:\WINDOWS\system32\DNSAPI.dll
    0x76FB0000 - 0x76FB8000      C:\WINDOWS\System32\winrnr.dll
    0x76F60000 - 0x76F8C000      C:\WINDOWS\system32\WLDAP32.dll
    0x66210000 - 0x66219000      C:\WINDOWS\system32\netware\NWWS2NDS.DLL
    0x50D50000 - 0x50D95000      C:\WINDOWS\system32\NETWIN32.DLL
    0x50D00000 - 0x50D15000      C:\WINDOWS\system32\CLNWIN32.DLL
    0x50DF0000 - 0x50E10000      C:\WINDOWS\system32\LOCWIN32.DLL
    0x50DB0000 - 0x50DD9000      C:\WINDOWS\system32\NCPWIN32.dll
    0x71AD0000 - 0x71AD9000      C:\WINDOWS\system32\WSOCK32.dll
    0x66220000 - 0x6622C000      C:\WINDOWS\system32\netware\NWWS2SLP.DLL
    0x1C000000 - 0x1C007000      C:\WINDOWS\system32\NWSRVLOC.dll
    0x76C90000 - 0x76CB8000      C:\WINDOWS\system32\imagehlp.dll
    0x59A60000 - 0x59B01000      C:\WINDOWS\system32\DBGHELP.dll
    0x77C00000 - 0x77C08000      C:\WINDOWS\system32\VERSION.dll
    0x76BF0000 - 0x76BFB000      C:\WINDOWS\system32\PSAPI.DLL
    Heap at VM Abort:
    Heap
    def new generation total 576K, used 497K [0x10010000, 0x100b0000, 0x104f0000)
    eden space 512K, 89% used [0x10010000, 0x10083158, 0x10090000)
    from space 64K, 57% used [0x100a0000, 0x100a9478, 0x100b0000)
    to space 64K, 0% used [0x10090000, 0x10090000, 0x100a0000)
    tenured generation total 1408K, used 129K [0x104f0000, 0x10650000, 0x14010000)
    the space 1408K, 9% used [0x104f0000, 0x10510438, 0x10510600, 0x10650000)
    compacting perm gen total 4096K, used 2122K [0x14010000, 0x14410000, 0x18010000)
    the space 4096K, 51% used [0x14010000, 0x14222828, 0x14222a00, 0x14410000)
    Local Time = Fri Aug 26 10:26:03 2005
    Elapsed Time = 2
    # The exception above was detected in native code outside the VM
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_04-b05 mixed mode)
    # An error report file has been saved as hs_err_pid1280.log.
    # Please refer to the file for further information.
    Can anyone pls let me know what could be the problem.
    Thanks in adv.

    Hi,
    This type of error
    java.lang.NoClassDefFoundError: javax/naming/Context
    will occur when the client program could not able to locate lib/j2EE.jar file.
    So set the classpath correctly and make sure that you have correctly defined the JAVA_HOME environment variable in .bat script.
    Hope this will help you.
    Regards,
    Anil.
    Technical Support Engineer.

  • Problem in running a program installed in SD Memor...

    Hi,
    I'm having problem to run an installed program in the SD card. When a choose to install a new program in the SD card, it work fine, after finish the intall process I can run the application with no problem. But after I shutdown the phone and start it again I can't run the application no more, the icon appears in the screen but I click on it and nothing happens. When I install the same application in the Phone Memory I don't have this problem, It always starts. Could some one help me to solve this problem.
    Thanks.

    Hi,
    You said that after ejecting the SD card and
    inserting it again,you can run the program from
    the SD card. This means that the issue has been
    solved. But if still persists, check the "Running
    applications menu" and see whether there are programs
    running in the background. If you see running programs,
    delete them, because running programms can sometimes
    cause similar problems.
    Regards.
    Fattan
    Message Edited by fattan on 11-Sep-2008 07:32 PM

  • Problem running a concurrent program from Reports

    Hi,
    I've come across a problem while running a concurrent program from Reports. The report is executed OK and at the end, I call a concurrent program by firing fnd_request.submit_request. I catch then the req_id returned and it gives me 0. I tried to replace the concurrent program, which is a UNIX shell script, with just a simple script that echos "hello", but anyway, I get 0 as return value from fnd_request.submit_request.
    The next step I tried to set apps_initialize with proper vUSER_ID, vRESP_ID and vRESP_APPL_ID, but did not get away with that. My last try was to hardcode vUSER_ID to a sysadmin user, in case this was rights-related issue but did not work as well.
    Am now looking into a possibility of actually getting the error, why it failes. I found some posts where FND_MESSAGE.RETRIEVE and FND_MESSAGE are used but this apparently does not work under Reports (am using reports builder v. 9.2.0.4.0).
    Any suggestions how to solve this issue?
    Thanks,
    David Lacina.

    Hi,
    Make sure that the concurrent program you are calling exists (case sensitive) and is enabled.
    Create a PL/SQL package and use that to call your request - the you'll be able to use fnd_message.
    Regards,
    Gareth
    Blog: http://garethroberts.blogspot.com/

  • Just installed java3d but the demo programs will not show any graphics

    Hi,
    I just installed java 3D and when I run a demo program
    like "HelloUniverse" a window pops up but it is blank. Nothing is
    happening.I cant figure out what is going wrong.
    Any help is appreciated,
    Thanks.

    you might want to seek help in the 3D forum....

  • Xml Demo programs cann't work

    After tar the download file, I try to run the demo program.It
    refuse to work.The error message as:
    XML C Full DOM test
    Initializing XML parser ...
    Failed to initializ XML parser,error 201
    I try it on Solaris and Linux, the messages are the same.
    Whould you give me any suggestion?
    Thank you

    this is for Oracle XDK(XML Developers' Kit) for C 9.0.1.0.0
    After tar the download file, I try to run the demo program.It
    refuse to work.The error message as:
    XML C Full DOM test
    Initializing XML parser ...
    Failed to initializ XML parser,error 201
    I try it on Solaris and Linux, the messages are the same.
    Whould you give me any suggestion?
    Thank you

  • Problems in running SQLJ programs!

    Dear SQLJ Support,
    I am not able to run SQLJ programs. I am able to compile a .sqlj file.
    I tried to compile the demo programs, for example, TestInstallCreateTable.java. I get
    "Class oracle.sqlj.runtime.Oracle not found in import" error.
    "Class sqlj.runtime.ref.DefaultContext not found in import" error.
    When I try to run the other Demo programs also, I am getting errors at places where I import classes from translator.zip. Is there a problem with the JDBC Drivers?
    I have set the classpath set to
    ORACLE_HOME/sqlj/lib/translator.zip, where the classes are found
    ORACLE_HOME/jdbc/lib/classes111.zip, where the JDBC classes are found
    JAVA_HOME/lib/classes.zip, where the core java classes are found
    I am using Oracle 8.1.6, SQLJ 8.1.6, JDK 1.1.8 on Windows NT 4.0.
    Am I missing something else? Kindly advice. Thanks in advance.
    Regards,
    Radha.

    You might wanna try changing the Look and Feel of the swing application. Test it on default, Windows, Mac and Motif interface.... and do post if it works on changing the look and feel.
    cheerz

Maybe you are looking for