Runtime problems with sdk sample.

Hi,
has anyone had any problems when running the sdk sample (instantclient 10.1.0.4)
compiled with MS Visual C++ Express version? I called make.bat and everything
compiled and linked without any worries. When I run the program it crashed. While
debugging I got the following info:
First-chance exception at 0x7c81eb33 in occi.exe: Microsoft C++ exception: oracle::occi::SQLException at memory location 0x0012fb74..
Unhandled exception at 0x7c81eb33 in occi.exe: Microsoft C++ exception: oracle::occi::SQLException at memory location 0x0012fb74..
This error occurs when trying to call ::createEnvironment().

I gave up with the occidml example and restarted with
the occiobj example. And guess what happened. It
worked. I can´t beleive it.
So I really don´t know what the difference of these
two example is as the only difference so far (as I
saw in the constructor of the two classes) is an extra
call in the occiobj-example. Well the parameters
are also different.
Occidml-example constructor:
occidml (string user, string passwd, string db)
env = Environment::createEnvironment (Environment::DEFAULT);
conn = env->createConnection (user, passwd, db);
Occiobj-example constructor:
occiobj (string user, string passwd, string db)
env = Environment::createEnvironment (Environment::OBJECT);
occiobjm (env);
con = env->createConnection (user, passwd, db);
If I have time again I will give the occidml another try. By far
I get along with the occiobj-example.
Thanks for all the people who helped me (or intended to).
Greetings Roman

Similar Messages

  • Problem with running sample code from XML Schema Processor for Java

    Hi there,
    I downloaded the XML Schema Processor for Java and tried it out. Unfortunately, it failed at the first step. FYI, I included all xmlparserv2.jar and xmlschema.jar in my classpath.
    I compiled XSDSample.java with a warning: XSDSample.java uses a deprecated API. Recompile with "-deprecation" for details. There was no problem with compiling XSDSetSchema.java.
    When I tried to run report.xml by typing java XSDSample report.xml, I got Parsing report.xml
    NonParserException: null.
    I guess that report.xml from the sample is not valid.
    Could any one give me a hint? Any suggestion would be greatly appreciated.
    ---Denali
    null

    Please post this message at:
    Forums Home » Oracle Technology Network (OTN) » Products » Database » XML DB

  • No problem with sdk 1.3- problem with 1.4!!!

    I am trying to make an interface using swing objects..
    The buttons are looking like images (2D) when compiling and running the program with sdk 1.4...
    although if I use 1.3 everything is ok??
    even with the new java version I still have the same problem..
    has anyone any idea how to fix this??
    thx in advance!

    /*                      BET                                 */
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
      * Summary description for BET
    public class BET extends JFrame
         // Variables declaration
         private JLabel jLabel1;
         private JLabel jLabel2;
         private JLabel jLabel3;
         private JTextField jTextField1;
         private JTextField jTextField2;
         private JTextField jTextField3;
         private JTextField jTextField4;
         private JTextField jTextField6;
         private JButton jButton1;
         private JButton jButton2;
         private JPanel contentPane;
         // End of variables declaration
         public BET()
              super();
              initializeComponent();
              // TODO: Add any constructor code after initializeComponent call
              this.setVisible(true);
          * This method is called from within the constructor to initialize the form.
          * WARNING: Do NOT modify this code. The content of this method is always regenerated
          * by the Windows Form Designer. Otherwise, retrieving design might not work properly.
          * Tip: If you must revise this method, please backup this GUI file for JFrameBuilder
          * to retrieve your design properly in future, before revising this method.
         private void initializeComponent()
              jLabel1 = new JLabel();
              jLabel2 = new JLabel();
              jLabel3 = new JLabel();
              jTextField1 = new JTextField();
              jTextField2 = new JTextField();
              jTextField3 = new JTextField();
              jTextField4 = new JTextField();
              jTextField6 = new JTextField();
              jButton1 = new JButton();
              jButton2 = new JButton();
              contentPane = (JPanel)this.getContentPane();
              // jLabel1
              jLabel1.setForeground(new Color(59, 241, 227));
              jLabel1.setText("<HTML><B><U>QUESTION</B><HTML>");
              // jLabel2
              jLabel2.setForeground(new Color(50, 245, 113));
              jLabel2.setText("<HTML><B><U>CHOICE</B><HTML>");
              // jLabel3
              jLabel3.setForeground(new Color(50, 245, 113));
              jLabel3.setText("<HTML><B><U>POINTS</B><HTML>");
              // jTextField1
              jTextField1.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jTextField1_actionPerformed(e);
              // jTextField2
              jTextField2.setText("YES");
              jTextField2.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jTextField2_actionPerformed(e);
              // jTextField3
              jTextField3.setText("10");
              jTextField3.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jTextField3_actionPerformed(e);
              // jTextField4
              jTextField4.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jTextField4_actionPerformed(e);
              // jTextField6
              jTextField6.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jTextField6_actionPerformed(e);
              // jButton1
              jButton1.setBackground(new Color(117, 158, 145));
              jButton1.setText("OK");
              jButton1.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jButton1_actionPerformed(e);
              // jButton2
              jButton2.setBackground(new Color(117, 158, 145));
              jButton2.setText("CANCEL");
              jButton2.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e)
                        jButton2_actionPerformed(e);
              // contentPane
              contentPane.setLayout(null);
              contentPane.setBackground(new Color(67, 97, 83));
              addComponent(contentPane, jLabel1, 172,8,60,18);
              addComponent(contentPane, jLabel2, 73,78,60,18);
              addComponent(contentPane, jLabel3, 211,76,60,18);
              addComponent(contentPane, jTextField1, 9,27,403,28);
              addComponent(contentPane, jTextField2, 24,101,134,22);
              addComponent(contentPane, jTextField3, 203,101,51,22);
              addComponent(contentPane, jTextField4, 21,151,137,22);
              addComponent(contentPane, jTextField6, 18,200,140,22);
              addComponent(contentPane, jButton1, 299,188,80,70);
              addComponent(contentPane, jButton2, 299,90,80,70);
              // BET
              this.setTitle("BET");
              this.setLocation(new Point(-2, 1));
              this.setSize(new Dimension(424, 316));
         /** Add Component Without a Layout Manager (Absolute Positioning) */
         private void addComponent(Container container,Component c,int x,int y,int width,int height)
              c.setBounds(x,y,width,height);
              container.add(c);
         // TODO: Add any appropriate code in the following Event Handling Methods
         private void jTextField1_actionPerformed(ActionEvent e)
              System.out.println("\njTextField1_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jTextField2_actionPerformed(ActionEvent e)
              System.out.println("\njTextField2_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jTextField3_actionPerformed(ActionEvent e)
              System.out.println("\njTextField3_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jTextField4_actionPerformed(ActionEvent e)
              System.out.println("\njTextField4_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jTextField6_actionPerformed(ActionEvent e)
              System.out.println("\njTextField6_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jButton1_actionPerformed(ActionEvent e)
              System.out.println("\njButton1_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         private void jButton2_actionPerformed(ActionEvent e)
              System.out.println("\njButton2_actionPerformed(ActionEvent e) called.");
              // TODO: Add any handling code here
         // TODO: Add any method code to meet your needs in the following area
    //============================= Testing ================================//
    //=                                                                    =//
    //= The following main method is just for testing this class you built.=//
    //= After testing,you may simply delete it.                            =//
    //======================================================================//
         public static void main(String[] args)
              JFrame.setDefaultLookAndFeelDecorated(true);
              JDialog.setDefaultLookAndFeelDecorated(true);
              try
                   UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
              catch (Exception ex)
                   System.out.println("Failed loading L&F: ");
                   System.out.println(ex);
              new BET();
    //= End of Testing =
    This is my code.. the problem is that when i use sdk 1.3 everything is fine... I tried to use 1.4 and now 5 and I have a problem with the appearance of buttons... I have some comments in my code. is just a form with some textfields and labels and the 2 buttons!
    thx in advance

  • Problem with Color Sampler Points

    I'm using PSCS4 on a Mac Pro, and recently upgraded to Snow Leopard 10.6.3 from Leopard 10.5.8.
    I regularly use color sampler points in Photoshop when adjusting curves. I seem to be having problems getting a sampler point to show up in the info palette when shift-clicking with the eye-dropper tool, or directly using the color sampler tool. I've also tried shift-clicking from within the Threshold command, but the points I click just don't seem to take a sample and show up. I never had this problem before. I'm bringing RAW, sRGB and ARGB digital images into PS from Bridge, and have tried 8 and 16 bit.
    After trying for awhile, sometimes it just suddenly starts working again. For instance, I was writing this post after not being able to get PS to take samples. Then I went back and forth between the internet and PS, and it started working all of a sudden. Very odd.
    Anyone else seeing this? Am I doing something wrong? Any workarounds?
    Thanks, Lou

    Thanks, Mark. You may be right, and I will try it.
    I have my workspace setup saved, but I presume it is lumped in with all the other preferences. Is there a way to "Export" my saved workspace setup from Photoshop, so after I trash my preferences, I can reimport at least my workspace? I didn't see the ability to do that, but it may be hiding somewhere. I like my current dual monitor setup and prefer not to have to 'redo' it from scratch.
    Thanks,
    Lou

  • Problem with intermittent sampling and writing to file(s)

    I am describing the functionality that I am trying to achieve via the attached VI.
    The VI opens with a sequence structure. In the first sequence step analog output voltages for 2 AO channels are set
    The next sequence step consists of analog data acquisition
    Custom linear scales for 3 input channels are specified, to convert input ‘volts’ to respective physical quantity being measured
    The input voltage signal is with +/- 10V but the physical quantity (forces) are greater than 10N
    The headers for the data files are created as strings
    The acquisition is set for finite sample acquisition
    The VI is set for periodic acquisition, wherein the data is acquired for specific time period given by ‘Sampling on’ and then ignored for time period specified by ‘Interval off’.
    The VI is set to write instantaneous data to multiple files. Each time the While loop is executed the instantaneous data, number of samples read (sampling rate x Sampling on time),  is written to a ‘.dat’ file.
    Statistical operations on data collected for each While loop execution is performed. These values (average & st. dev) are then written to another file ‘*.sum’ with respective headers
    The headers for the ‘*.sum’ file are written only for the first execution of the While loop
    The VI is designed to run for a specific duration after which the execution of  While loop is stopped
    Certain safety features are incorporated to terminate the execution of the While loop if the ratio of measured quantities exceeds a preset limit.
    In the last sequence the analog outputs are set to zero
    I am having following problems with the execution of the VI:
    The VI does not write instantaneous data to data files (*.dat)
    The VI writes the averaged data for *.sum file for only the first execution of the While loop.
    It also truncates the values to around 10.5 written in *.sum file. While implies that the custom scale is not working as intended.
    I would really appreciate if you would tell me how to fix these bugs with the VI. I would really appreciate your help.
    Have a happy holiday season.
    Thanks,
    Dinesh
    Attachments:
    VLBT_Sequence_AnalogIP_2.vi ‏437 KB

    Lynn, he may actually not be to blame for the diagram size. It does not change if you "clean" it, which leads me to believe that this is what he did. But a very entertaining diagram it is. A true case study :-)
    Now, the strange thing is that stuff like this remains in it:
    As Lynn said, the reason why the file is updated only once is that there must be an error after the first acquisition completes. The only way to figure out which one it is (in order to avoid or correct it) is to debug your code in situ (using a probe on the error wires). It might be because you try to restart your acquisition within the loop (you probably should stop it first if you really want to restart it anyhow). I would put the start out of the while loop and try this way. The error might occur elsewhere though or for another reason...
    Since you recreate your dat file at each iteration, the second giving you nothing because of an (unknown) error, will essentially erase your first successful iteration.
    I don't understand the truncation statement.

  • Problem with audio sample rate when exporting

    I am having an issue with my audio sample rate. For some reason it is set at 8 khz by defualt when I am exporting. This was not an issue until the latest update (2 weeks ago). I'll try and give all the info I can up front. Also I tried customer support...that was a nightmare.
    Ok the issue I am addressing is that the audio sample rate when exporting is at 8khz by default. Which to my knowledge has NO relevant use what so ever. Even when I set the file format to h.264 it insists on resetting to 8khz. Even if I manually set everything look at the render queue and click on output module again it changes the sample rate back to 8 khz automatically which I must adjust again. Why can it not just be set at 48000 like every other adobe product is and like it used to be two weeks ago. Does anybody have an answer?

    This problem is addressed by the After Effects CC (12.2.1) bug-fix update, which is now available:
    http://adobe.ly/AE_CC_1221
    Note the part at the end of that page about a crucial update for the Creative Cloud desktop application, which addresses some severe problems with AME, Premiere Pro, and After Effects.

  • Problem with digital samples of NI 9425 in windows 7 on usb 3.0 ports

    I have a program in C that reads the digital samples of a device 9174 module 9425 in windows 7 x64 which has no problems with the USB 2.0 ports but with the 3.0.
    When I connect the device to a USB 3.0 port errors in the samples appear, are activated or deactivated lines uncontrollably.
    The PC is Artigo A1250, Drivers NI-DAQmx9.6

    Hey vic22,
    Sylvia is correct -- the 9174 has been thoroughly tested on the USB 2.0 standard.  But we still expect it to communicate properly with USB 3.0 ports.  We have seen a few cases in which specific host controllers cause unexpected behavior similar to what you describe, but in general, our USB devices are compatible with USB 3.0.
    Of course, if sticking with a 2.0 port works for your application, that will be the quickest/simplest recommendation that we can make.  If you need to move your cDAQ to a 3.0 port, let us know -- there are some troubleshooting steps we can take to figure out why you're seeing errors.
    There are some additional details in this somewhat related article.  Upgrading the drivers for your USB Host Controller might be worth a shot.
    Kyle B  |  Product Support Engineer  |  ni.com/support

  • Problem with BIBeans sample application in JDEV

    I have installed JDeveloper and BiBeans PlugIn. I did the steps from the tutorial and it all worked fine.
    Then I generated a sample UIX application with all the options - and while the navigation loading and saving from the Catalog and everything works, the data that is displayed in the presentations is the same everytime (6 rows and 8 columns with values btwn 0 and 100) and I don't think it is coming from the BIBDEMO schema.
    So I think it is able to connect to the BIBCAT schema but it does not connect to the BIBDEMO schema
    However in JDeveloper itself all the presentations display the correct data.
    There is no error message or anything indicating what the problem is.
    Please help - I'm doing a POC and would need to show some results asap.
    I included a Trace, maybe that helps:
    oracle.dss.datautil.client.XMLManagerFactory::parseOLAPConnection: Jdbc driver type is: thin
    oracle.dss.datautil.client.XMLManagerFactory::parseOLAPConnection: Host name is: dcaclust2
    oracle.dss.datautil.client.XMLManagerFactory::parseOLAPConnection: SID is: DEV3
    oracle.dss.datautil.client.XMLManagerFactory::parseOLAPConnection: Port number is: 1521
    oracle.dss.datautil.client.XMLManagerFactory::parseOLAPConnection: Jdbc driver type is: thin
    oracle.dss.datautil.client.XMLManagerFactory::parseMetadataManager: parsing MetadataManager tag
    oracle.dss.datautil.client.XMLManagerFactory::parseOLAPConnections: parsing OLAPConnection tag
    oracle.dss.datautil.client.XMLManagerFactory::parseOLAPDatabases: parsing Database tag
    oracle.dss.connection.client.Connection::connect: -ConnectionBean-Client: is going to connect
    oracle.dss.connection.server.ConnectionImpl::connect: -ConnectionBean-Server: is going to connect - (DriverType=MDM)
    oracle.dss.connection.server.ConnectionImpl::connect: -ConnectionBean-MDMDriver: Connected Successfully: Time=1063ms
    oracle.dss.connection.client.Connection::connect: -ConnectionBean-Client: is going to connect
    oracle.dss.connection.server.ConnectionImpl::connect: -ConnectionBean-Server: is going to connect - (DriverType=PERSISTENCE)
    oracle.dss.connection.server.drivers.persistence.PersistenceConnectionDriverImpl::connect: -ConnectionBean-PersistenceDriver is going to connect
    oracle.dss.connection.server.drivers.persistence.PersistenceConnectionDriverImpl::connect: (ServiceName=null; Prinicipal=BIBCAT; Username=null)
    oracle.dss.persistence.storagemanager.bi.BIStorageManagerImpl::init: [Initializing oracle.dss.persistence.storagemanager.bi.BIStorageManagerImpl, env:{SET_ON_MID_TIER=NO, port=1521, java.naming.security.principal=BIBCAT, hostname=dcaclust2, am=oracle.dss.appmodule.server.DSSApplicationModuleImpl@20c906, jdbctype=thin, java.naming.factory.initial=oracle.dss.persistence.persistencemanager.server.InitPersistenceManagerFactory, Connection Status=2, object_name=Connection_1, drivertype=thin, Driver Type=PERSISTENCE, securityDriverManager=oracle.dss.appmodule.server.DSSApplicationModuleImpl@20c906, dad=oracle.dss.security.DAD@6db33c, sid=DEV3, mm=true, global_environment={locale_helper=oracle.dss.persistence.LocaleHelper@1263db, persistence_errorhandler=oracle.dss.util.DefaultErrorHandler@59e6e8}}
    oracle.dss.persistence.storagemanager.bi.mapping.JdbcAdapter::JdbcAdapter.init(): Detected PLSQL version 2.7.0.13.1 and Java version Not known
    oracle.dss.persistence.storagemanager.bi.BIStorageManagerImpl::init: [init]2047ms
    oracle.dss.persistence.persistencemanager.server.PersistenceManagerImpl::init: SM: Loaded storagemanager, class= oracle.dss.persistence.storagemanager.bi.BIStorageManagerImpl
    oracle.dss.connection.server.drivers.persistence.PersistenceConnectionDriverImpl::connect: -ConnectionBean-PersistenceDriver: Connected Successfully: Time=2.0 seconds
    oracle.dss.connection.server.ConnectionImpl::connect: -ConnectionBean-MDMDriver: Connected Successfully: Time=2781ms

    Not sure quick what you are seeing in your UIX application, I think it is the default crosstab when the data source fails. However, I would expect to see some error messages from in the JDev log window or the UIX page itself.
    Are you running the application directly from JDeveloper? Or have you deployed the application to a middle-tier server?
    Check the BIDesigner 'Run Time' Settings. Make sure the 'Use Design Time Setting' is not checked. Ensure the correct connection details are set for both the database and CATALOG and the catalog connection user is set as BIBCAT.
    Make sure all your presentations, calculations and saved selections have been copied to the remote catalog. This can be done using the right mouse click pop-up menu on the BIDesigner.
    Test running the application with the new run time settings from JDeveloper before deploying the application. Then follow the instructions in the JDeveloper Help on deploying UIX applications.
    Hope this helps
    Business Intelligence Beans Product Management Team
    Oracle Corporation

  • Problem with ur sample Application

    To The JDeveloper Team
    i developed an application to do basic authentication with the Database using a JSP. i was able to sign in proper but when i sign out of the application , i can't sign out ie the session variables are not clearing out and then i went to ur sample application and test it , it also works the same way ie it doesn't clear the session variables. Can u refer it and give me a suggestion. If u want to know the exact problem this is it.
    U have a sign-in url in ur auctions application . After u sign-in ,it is converted in Signout url . But if i click on it , it does show the sign-in but shows the sign out only.
    null

    Airton,
    Before running bankapp, you must set the BLKSIZE parameter in the bankvar
    file to a multiple of the machine file.
    The README file explains how to set BLKSIZE.
    For HP-UX, BLKSIZE must be set to 1024 or to a multiple of 1024.
    Ed
    <Airton Vargas> wrote in message news:[email protected]..
    I'm trying to configure and run the bankapp application for Tuxedo 8.0 under
    HP-UX, but I'm getting errors to connect to database.
    I'm using the RM=TUXEDO/SQL and when I run the script crbank I get
    the the following error messages:
    sql: Operation 'create table': rm error
    sql: LIBDUX_CAT:475: block size invalid
    sql: Operation 'LIBSQL_CAT:74: create index (table file)': rm error
    sql: LIBDUX_CAT:460: invalid rm file name
    Does anyone know how to solve this problem?
    Thanks in advance for any help!
    Best regards,
    Airton

  • Problem with HttpUploadBean sample code

    Hello,
    I need upload files to a database and download files from database. I have some problems and i'm trying the sample in the help "File Upload and Download JavaBean and Class Descriptions" - "The HttpUploadBean".
    File UploadBean.html:
    <html><body>
    <form action="beanUploadExample.jsp" ENCTYPE="multipart/form-data" method=POST>
    <br> File to upload: <INPUT TYPE="FILE" NAME="File" SIZE="50" MAXLENGTH="120" >
    <br><INPUT TYPE="SUBMIT" NAME="Submit" VALUE="Send"> </form>
    </body></html>
    File beanUploadExample.jsp:
    <%@ page language="java" import="java.util.*, oracle.jsp.webutil.fileaccess.*"
    %>
    <html><body>
    <% String userdir = "fileaccess"; %> // user's part of the upload directory
    <jsp:useBean id="upbean"
    class="oracle.jsp.webutil.fileaccess.HttpUploadBean" >
    <jsp:setProperty name="upbean" property="destination" value="<%= userdir %>"
    />
    </jsp:useBean>
    <%
    upbean.setBaseDir(application, request);
    upbean.upload(request);
    Enumeration fileNames = upbean.getFileNames();
    while (fileNames.hasMoreElements()) { %>
    <br><%= (String)fileNames.nextElement() %>
    <% } %>
    <br>Done!
    </body></html>
    Content of fileaccess.properties file in directory G:\jdeveloper9i\jdev\mywork\AccessFiles\Upload\public_html\WEB-INF
    fileaccess.basedir=G:\jdeveloper9i\jdev\mywork\AccessFiles\Upload\public_html\files
    (the directory files has been created)
    Interner Explorer (version 5.00.3315.1000) show error 500 (Internal Server Error) after to select the file and click in the buttom "Send"
    In Debug mode, to press F8 (Step over) in the line upbean.upload(request); show the error:
    "Unable to find source file for package oracle.jsp.runtime, filename httpJsp.java"
    I'm trying jDeveloper9i version 9.0.2.829
    Any help is welcome
    Thanks

    Hi,
    I will try the HttpUploadBean very soon but haven't test it. Will this article would help : Re: File Upload tag and Bean
    Rgds.

  • Problem with SDK 4.0

    Hello Friends,
    Today i downloaded and installed new sdk 4.0 and i could not see any option to run application with earlier version like simulator 3.0, simulator 3.1, simulator 3.1.2 etc.
    Do you know that how can i get all the option with new sdk 4.0 and if i develop application using new sdk 4.0 then will it be run on earlier version.
    Plz reply.
    Many Thanks.

    The problem is that I cannot see any deployment target other than 3.2 or 4.0...
    Am I looking in the wrong place? I have digged around in the project settings and cannot find anything else than 3.2 or 4.0.
    ??? I will take another look tonight when I get back to my Mac gain.

  • Problems with JDAPI Samples

    We are having problems getting the JDAPI samples provided with FormsBuilder9i working correctly. There are a couple of problems that occur.
    1) When running GetFormName/GetModuleName the name of the form retrieved with the FormModule.getName() method always returns blank.
    2) When running Traverse the following error occurs:
    oracle.forms.jdapi.JdapiException: jniget_obj_prop failed
         at oracle.forms.jdapi.BaseAPI._jni_get_obj_prop(Native Method)
         at oracle.forms.jdapi.BaseFormsObject.getObjProp(Unknown Source)
         at oracle.forms.jdapi.BaseFormsObject.getChildObjectProperty(Unknown Source)
         at oracle.forms.jdapi.demo.Traverse.recurseObject(Traverse.java:110)
         at oracle.forms.jdapi.demo.Traverse.<init>(Traverse.java:63)
         at oracle.forms.jdapi.demo.Traverse.main(Traverse.java:162)
    and
    oracle.forms.jdapi.JdapiException: jniget_obj_prop failed
         at oracle.forms.jdapi.BaseAPI._jni_get_obj_prop(Native Method)
         at oracle.forms.jdapi.JdapiObjectListIterator.hasNext(Unknown Source)
         at oracle.forms.jdapi.demo.Traverse.recurseObject(Traverse.java:117)
         at oracle.forms.jdapi.demo.Traverse.<init>(Traverse.java:63)
         at oracle.forms.jdapi.demo.Traverse.main(Traverse.java:162)
    These errors occur with every form that we attempt to run them with.
    The only changes made to the samples is to provide a full stack trace when the error is thrown, otherwise they are unchnaged from the distributed versions.
    Any help resolving these problems would be appreciated.
    Thanks.

    check whether frmjapi.dll (in case of Windows) or frmjapi.so can be reconginsed by Java ClassLoader. The problem here is when Jdapi calls it epects JNI layer dll be found by class loader which is a glue between Jdapi and underlying capi.

  • Problem with SDK Initial Setup

    Hi,
    I have been following the SDK setup for Sentinel, when doing the
    Collector Initial build as specified in the online documentation, I get
    a windows that pops up when doing the page break and replay of the Raw
    Data.
    "Function ImportClass must be called with a class; had "[JavaPackage
    esecurity.css.comp.evtsrcmgt.collector.util.AgentI nfo]" instead.
    Has anyone got any ideas on how I can get this fixed or around this.
    Cheers,
    Jonathan.
    jwgoldstein
    jwgoldstein's Profile: http://forums.novell.com/member.php?userid=92699
    View this thread: http://forums.novell.com/showthread.php?t=451025

    Hmmm.....
    I can't say I've ever seen anything like this. It's a little hard to
    tell if there's a real problem here or some sort of corruption, as your
    post has some weird extra spaces in it but I don't know if those are
    really present in the error or whether there was some sort of copy/paste
    issue.
    In any case, when the Collector initializes it imports a bunch of Java
    classes so that they can be used directly from the JS code. This stuff
    starts on line 57 of 'collector.js', at least in the current SDK
    version, and should look like:
    importClass(
    Packages.esecurity.ccs.comp.evtsrcmgt.collector.ut il.AgentInfo );
    importClass(
    Packages.esecurity.ccs.comp.evtsrcmgt.collector.ut il.BaseEngine );
    importClass(
    Packages.esecurity.ccs.comp.evtsrcmgt.collector.ut il.BSFEngine );
    Your post above has an extra space in 'AgentI nfo', which I can't
    explain. If it's present in your collector.js (which is copied from
    sdk/6.1/Collector/common at build time), then it seems like you have
    some corruption in your SDK.
    It might be helpful to have you explain exactly how you got your SDK -
    did you download the ZIP, are you using SVN, that sort of thing - and
    whether you've done anything to the SDK template code itself.
    FYI, we're close to a beta for the 2011.1 version of the SDK which will
    greatly improve the installation process, so if you can wait a few weeks
    that might solve your problem.
    DCorlette
    DCorlette's Profile: http://forums.novell.com/member.php?userid=4437
    View this thread: http://forums.novell.com/showthread.php?t=451025

  • Combox EventListener problem with SDK 3.5

    I am trying to build a custom combobox component and making that editable at the time of open and non-editable after close. Below is my code that is working fine SDK 3.2 but with SDK3.5 it is now. I mean with SDK3.5 when i click open it closes itself automatically..
    public class LookUpComboBox extends ComboBox
            public function LookUpComboBox()
                super();
                addEventListener(Event.OPEN,startLookUp);
                addEventListener(Event.CLOSE,stopLookUp);
            private function startLookUp(e:Event):void
                editable = true;
            private function stopLookUp(e:Event):void
                editable  = false;
    Can someone please help me out on this?

    In your addEventListener(), substitute "DropdownEvent.OPEN" & "DropdownEvent.CLOSE", and see if that helps.

  • Problem with auditioning samples in Ultrabeat?

    Im having some trouble with auditioning drum hits in Ultrabeat. When I go to listen a sample, the sample plays but all i can hear is a high pitched squeak instead of the drum hit I want to audition. Can anyone explain this?

    Hi,
    Ultrabeat is not so much a sample player, but more a synthesizer. Your squeek probably has to do with the synth parameters of that sound in UB.
    This guy (David Earl aka SFLogicNinja) explains it well:
    http://nl.youtube.com/watch?v=KElps7_rIZM
    http://nl.youtube.com/watch?v=-RApWl2HgEU
    regards, Erik.

Maybe you are looking for

  • Ext3+dir_index vs JFS, XFS, ReiserFS. Choice problem

    I'm a linux noob. Going to install Archlinux to new laptop Inspiron 1520 Right now playing with Archlinux on vmware. I want my laptop be fast, and of course choosing right FS is important in this regard. Let me sum up all i read so far about differen

  • Vendor Down Payment Clearing F-54

    Hi, I am clearing Vendor Down Payment using BDC for T-code F-54. I have Invoice no and Down Payment Document No, which needs to be clear against that Invoice. But, how to determine the position of that DP Document number in the next screen when i am

  • How to generate XML from EBusiness suite ARXSGPO

    Could someone tell me how I can generate XML from the EBusiness Suite Accounts Receivable report ARXSGPO.rdf I understand this report is called by a C program. I have tried changing the concurrent request to output format to XML the result does not r

  • Windows 7 Machine - Can't update itunes.  Can't uninstall it either. What can I do to correct this?

    I am running Windows 7 and I am unable to update my itunes from 10.6.0.40 (as per Itunes section 'about') to the latest version 10.6.3. It says the feature i am trying to use in on a network resource that is not available. 'itunes.msi' can't be found

  • Oracle mgw more time while fetching data from MQ

    Dear All, Good morning. I am using oracle 11.2.0.3 version and using MGW to connect to MQ series (IBM WebSphere MQ ,Version: 7.5.0.0). We are experincing delay while retriving message from MQ for some times and it is not happening always. MQ2AQ Found