Oracle 8.1.5 EE- interMedia 8.1.5 Compilations Errors

Greetings,
Im runnin` Oracle 8.1.5 EE, with interMedia 8.1.5 in a windowsNT|2000 Environment and my PATH and CLASSPATH are correctly setup... Running Jakarta Tomcat as the JSP/Servlet Engine as well as JDK 1.2
======= Do I need anything else ?? =======
During compilation I keep running into similar errors like the following (12 of them):
OrdSampleAlbumBean.java:0: The method oracle.jdbc2.Clob getClob(int) declared in class oracle.jdbc.driver.OracleResultSet cannot override the method of the same signature declared in interface java.sql.ResultSet. They must have the same return type.
import java.io.*;
^
OrdSampleAlbumBean.java:0: The method oracle.jdbc2.Clob getClob(java.lang.String) declared in class oracle.jdbc.driver.OracleResultSet cannot override the method of the same signature declared in interface java.sql.ResultSet. They must have the same return type.
import java.io.*;
^
OrdSampleAlbumBean.java:0: The method oracle.jdbc2.Ref getRef(int) declared in class oracle.jdbc.driver.OracleResultSet cannot override the method of the same signature declared in interface java.sql.ResultSet. They must have the same return type.
import java.io.*;
^
The errors seem to be steming from the imports which are:
import java.io.*;
import java.util.*;
import java.sql.*;
import javax.servlet.ServletException;
import oracle.sql.*;
import oracle.jdbc.driver.*;
import oracle.ord.im.OrdImage;
import oracle.ord.im.OrdHttpUploadFile;
Like I said, all the classes and libraries ARE in fact in my path and classpath variables. And interMedia is setup Correctly in Oracle according to imchk.sql
Any help in this matter would be greatly appreciated. Thanks in Advance.

Hi Ramene,
Lets look at a couple of approaches.
The interMedia Web Agent is a web server plugin that supports the Oracle iAS, Apache, iPlanet, Microsoft IIS and Oracle OAS web/application servers on Solaris, NT and Linux (though not all web servers on all platforms, for obvious reasons!). It uses OCI to call PL/SQL procedures that return BLOBs which the Web Agent uses to upload and retrieve multimedia data. On the plus side, it is supported on Oracle 8.1.5. On the minus side, a Java application written using the interMedia Web Agent is not going to be as tightly integrated as an all-Java solution. I don't know if it would be of any use in your particular application environment, but you may also want to look at the interMedia Clipboard. It is a light-weight WinNT application that uses the Web Agent to upload and retrieve multimedia data in an Oracle 8i database. You can find examples of applications that use the Web Agent on OTN. Check out the "Dynamic Web applications using interMedia Web Agent" and "Load rich media content with a browser" links under the interMedia Sample Code tab on OTN.
Looking at an all-Java solution, with your Oracle 8.1.5 and JDK 1.2 configuration, I'm afraid you're always going to be stuck with the incompatiblites between the BLOB support in the Oracle 8.1.5 JDBC 1.1 driver implementation and the JDBC 1.2 interfaces. Again, please let me stress (to anyone reading this note) that this is not because of a problem of with the Oracle 8.1.5 JDBC 1.1 driver - it added support for BLOBs in a version of JDBC that didn't support BLOBs at all. The Oracle 8.1.6 release includes a JDBC 1.2 compliant driver that supports BLOBs according to the JDBC spec.
However, here's a thought, though I don't know if it would be officially supported (I'm not saying it wouldn't be, I just don't know if it is). Mind you, I don't believe the JDK 1.2/1.3 plus Oracle 8.1.5 EE configuration is officially support for that matter. I don't know if its possible for you to do this, but upgrade another system to Oracle 8.1.6. Then take the JDBC 1.2 driver (classes12.zip) and the SQLK/JPub runtime (runtime.zip) from the 8.1.6 installation and copy them somewhere on the 8.1.5 system. Include these files at the beginning of the CLASSPATH and use the 8.1.6 thin JDBC driver to connect to the 8.1.5 database. (The thick driver is unlikely to work as it requires an 8.1.6 version of OCI.) If this does work for you (it works on my systems), then at least you'll have something going, although it won't perform as well as the thick driver.
Re: "I need to support Oracle 8.0.5". I hope this was a typo and you don't really need to support 8.0.5. Of course, 8.0.5 does have BLOBs, but I'm not sure how robust the Java support for BLOBs was back then - that was quite a long time ago (at least it seems that way for someone working on 9i).
I guess the bottom line here is to upgrade to 8.1.6 as soon as possible to get full JDK 1.2 support. In the meantime, I Hope this helps,
Simon
null

Similar Messages

  • Oracle JDBC Driver Compile Errors

    I'd like to try out this new Preview Edition but I get the following errors:
    Error(22,8): class oracle.jdbc.driver.OracleCallableStatement is not public; cannot be accessed from outside of package oracle.jdbc.driver
    Error(23,8): class oracle.jdbc.driver.OracleTypes is not public; cannot be accessed from outside of package oracle.jdbc.driver
    These erors occur at the import statements:
    import oracle.jdbc.driver.OracleCallableStatement;
    import oracle.jdbc.driver.OracleTypes;
    when I attempt to compile a JDev 10.1.3 project in the 11g Technology Preview Edition. Any idea why?
    TIA,
    Jeff

    We don't support project migration from 10.1.3 to the
    technology preview.
    Does the problem reproduce if you create a new
    project in 11tp?Shay,
    Thanks for the quick response. I created a new application in 11tp from scratch. I created a View Object and pasted the offending code into it and got the same compile errors. I actually got the code about a year ago from Steve's Not Yet Documented Applications. He has since removed the App from the page, changed the code and added it to the Dev Guide. The sample app showed how to bind a View object to a REF Cursor returned from a stored procedure and it looked something like this:
    CallableStatement cs = conn.prepareCall("{?=call package.name(P_CODIGO => ?)}");
    cs.rgisterOutParameter(1,OracleTypes.CURSOR);
    cs.setInt(2,16782);
    cs.executeQuery();
    ResultSet result = ((OracleCallableStatement)cs).getCursor(1);
    Changing the code to look more like what is now in the DEV GUIDE will more than likely work because he eliminates the need for the OracleCallableStatement.
    This brings me to my next point. If migration is not currently supported, will it be when the production release of JDEV 11g is available? Shame on me for just quickly skimming the release notes but when the import wizard ran on my project it did not warn me that the feature is not supported or that problems are likely. Upon resolving the issues with the callable statement, I had significant other compile errors in my jspx pages that will probably not be as trivial to fix. If project upgrades are not performed "easily" it will certainly push the 11g adoption date out considerably.
    Thanks again, your comments are always encouraged.
    Jeff

  • Warning: Type created with compilation errors. sql : oracle 11gr2

    I'm trying to create a supertype customer service and subtype agent and supervisor, so they can inherent values however when I try to run this in oracle sql: a message comes up
    Warning: Type created with compilation errors.
    What is wrong with the code below?
    Create or replace type customer_s_type as object ( csID number, csName varchar(15), csType number ) NOT FINAL;  Create or replace type supervisor_type UNDER customer_s_type ( title varchar (10) );  Create or replace type agent_type UNDER customer_s_type (title varchar (10));  Create table supervisor of supervisor_type ( CONSTRAINT supervisor_PK PRIMARY KEY (csID));  Create table agent of agent_type (CONSTRAINT agent_PK PRIMARY KEY (csID));  create table customer_service( csID number(10), csType number(10), constraint supervisor_pk primary key(csID) );

    Wile creating TYPE you need to terminate with a back slash (/) semi colon does not work.
    Try like this
    create or replace type customer_s_type as object ( csid number, csname varchar(15), cstype number ) not final
    create or replace type supervisor_type under customer_s_type ( title varchar (10) )
    create or replace type agent_type under customer_s_type (title varchar (10))

  • Compiler error "oracle.xml.parser.v2.XMLElement" not found in class com.ora

    Compiler error "oracle.xml.parser.v2.XMLElement" not found in class com.oracle.demos......?
    I am currently testing a simple sample application with a java code similar to the one shown at
    the bottom of this post.
    However during deployment/compilation the compiler gives an error:
    Error(26,23): XMLElement not found in class com.oracle.demos.orderbooking.ApproveImpl
    Additionally similar other errors appear:
    Error(23,66): JAXBException not found in class com.oracle.demos.orderbooking.ObjectFactory
    Error(51,58): UnmarshalException not found in class com.oracle.demos.orderbooking.ObjectFactory
    Error(9,92): Element not found in interface com.oracle.demos.orderbooking.Approve
    What's wrong?
    It seems to me that I have to add some (more) *.jar files/libraries to the project?
    Which *.jars and where should I add them in JDeveloper?
    source code:
    package com.oracle.demos.orderbooking;
    public class ApproveImpl extends com.oracle.demos.orderbooking.ApproveTypeImpl implements com.oracle.demos.orderbooking.Approve
    public ApproveImpl(oracle.xml.parser.v2.XMLElement node)
    super(node);
    }

    Hai James this the response I am getting can you please tell what should I write inside ora:getNodeValue() to get the value of node <genReturnText>
    The drag and dropping the variable name is not working, I have to write the path manually but I dont know how.
    <ns1:getRoutingAndFrameJumpersResponse xmlns:ns1="com.NetworkInstallations">
    -<com.GetRoutingAndFrameJumpersOutput>
    <destination>
    SW
    </destination>
    <e2EData>
    busProcOriginator
    </e2EData>
    <genReturnCode>
    40777
    </genReturnCode>
    <genReturnText>
    EMW_Get_Routing_And_FrameJumpers_Succeeded
    </genReturnText>
    <supplCode>
    ISY002
    </supplCode>
    <supplText>
    Transaction successfully completed.
    </supplText>
    <severityCode>
    S
    </severityCode>
    <retriable>
    false
    </retriable>
    </com.GetRoutingAndFrameJumpersOutput>
    </ns1:getRoutingAndFrameJumpersResponse>

  • Could not execute view config service request. This usually happens when an invalid view config service request is made, or when a read only Oracle Endeca Server receives a view config service request. Error message: Error applying updates: Unsupported la

    Hi,
    I have some data loaded into the data-domain in Endeca 3.0. When I was creating views in studio I repeatedly get this message when I say save view:
    Could not execute view config service request. This usually happens when an invalid view config service request is made, or when a read only Oracle Endeca Server receives a view config service request. Error message: Error applying updates: Unsupported language ${DEFAULT_LANGUAGE}
    In the workspace.prm file I have set ${DEFAULT_LANGUAGE}=en
    May I know why this happening and a remedy for it. Appreciate you help.

    Hi,
    I have some data loaded into the data-domain in Endeca 3.0. When I was creating views in studio I repeatedly get this message when I say save view:
    Could not execute view config service request. This usually happens when an invalid view config service request is made, or when a read only Oracle Endeca Server receives a view config service request. Error message: Error applying updates: Unsupported language ${DEFAULT_LANGUAGE}
    In the workspace.prm file I have set ${DEFAULT_LANGUAGE}=en
    May I know why this happening and a remedy for it. Appreciate you help.

  • Using long vs. clob datatype with Oracle 8.1.7 and interMedia

    I am trying to determine the best datatype to use for a column I
    wish to search using the interMedia contains() function. I am
    developing a 100% java application using Oracle 8.1.7 on Linux.
    I'd prefer to use the standard JDBC API's for PreparedStatement,
    and not have to use Oracle extensions if possible. I've
    discovered that there are limitations in the support for LOB's
    in Oracle's 100% java driver. The PreparedStatement methods
    like setAsciiStream() and setCharacterStream() are documented to
    have flaws that may result in the corruption of data. I have
    also noticed that socket exceptions sometimes occur when a large
    amount of data is transferred. If I use the long datatype for
    my table column, the setCharacterStream() method seems to
    transfer the data correctly. When I try to search this column
    using the interMedia contains() function, I get strange
    results. If I run my search on Oracle 8.1.6 for Windows, the
    results seem to be correct. If I run the same search on Oracle
    8.1.7 for Linux, the results are usually incorrect. The same
    searches seem to work correctly on both boxes when I change the
    column type from long to clob. Using the clob type may not be
    an option for me since the standard JDBC API's to transfer data
    into internal clob fields are broken, and I may need to stick
    with standard JDBC API's. My customer wishes to purchase a
    version of Oracle for Linux that will allow us to implement the
    search capability he requires. Any guidance would be greatly
    appreciated.

    I've finally solved it!
    I downloaded the following jre from blackdown:
    jre118_v3-glibc-2.1.3-DYNMOTIF.tar.bz2
    It's the only one that seems to work (and god, have I tried them all!)
    I've no idea what the DYNMOTIF means (apart from being something to do with Motif - but you don't have to be a linux guru to work that out ;)) - but, hell, it works.
    And after sitting in front of this machine for 3 days trying to deal with Oracle's, frankly PATHETIC install, that's so full of holes and bugs, that's all I care about..
    The one bundled with Oracle 8.1.7 doesn't work with Linux redhat 6.2EE.
    Don't oracle test their software?
    Anyway I'm happy now, and I'm leaving this in case anybody else has the same problem.
    Thanks for everyone's help.

  • Intermedia web agent MWM-00067 error

    I've installed the intermedia web agent (Release 8.1.5.3) on a Netscape Web Server (version 4.1), running on Solaris 2.6.
    Encountering the following after recycling the web server:
    MWM-00067 nonrecoverable initialization or termination error
    Help!
    Thanks.
    null

    It was a directory issue. Change the User and Group for apache to the oracle user, or chmod the $ORACLE_HOME/ord/web/logs directory so that it's writeable by the apache user.

  • Installation oracle database 10.2 on mac snow leopard server JAVA ERROR

    When I try install DB 10g in my Macbook Pro with Snow leopard show this error when I try the 'installer' :
    No pre-requisite checks found in oraparam.ini, no system pre-requisite checks will be executed.
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2009-11-18_08-45-47PM. Please wait ...The Java RunTime Environment was not found at /System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Home/bin/java. Hence, the Oracle Universal Installer cannot be run.
    Please visit http://www.javasoft.com and install JRE version 1.3.1 or higher and try again.
    : No such file or directory
    logout
    Please help me its urgent !
    Thanks
    Best Regards

    Welcome to the forums !
    For urgent issues, pl open a Service Request with Support at http://support.oracle.com
    The forums are a loose organization of unpaid volunteers and cannot support urgent issues ;-)
    AFAIK, Snow Leopard has not been certified for 10g yet.
    Pl confirm that you meet all of the requirements for the install - http://download.oracle.com/docs/cd/B19306_01/install.102/b25286/toc.htm
    See related thread Re: Install Oracle Database 10g on Mac OS X Snow Leopard
    HTH
    Srini

  • Oracle RAC 11g on Windows 2008 64 bit - blue screen error on both nodes

    Hi Everyone,
    I installed Oracle RAC 11g on Windows 2008 64 bit, The installation was successfull and crs_state -t shows all services in two nodes are online.
    When executed a select query with 100 sessions( For performance evaluation using Transaction generator ) ,the machine got crashed and blue screen is appeared on two nodes. I restrated the machines and and starts the same evaluation ,bt the same bug is repeating.
    Can anyone suggest a solution to solve this issue? Is our hardware is not sufficient ? Shall we need to perform any
    specific settings in Oracle RAC setup for performance evaluations?
    Is our settings for load balancing is not enough? ( We added "Load Balancing= On" on tnsnames.ora on client for load
    balancing)
    The following machine configuration is used for Oracle RAC setup
    Intel Core 2 Duo 2.66 GHz,
    Ram :4GB.
    OS : windows 2008 Server 64 Bit
    Oracle RAC 11g , Clusterware 11g R2 , ASM with 5 raw disk ( 1- votting disk ,1- ocr files and 3 disk files)
    Edited by: user2033016 on Jun 29, 2011 10:02 PM

    user2033016 wrote:
    Hi Everyone,
    I installed Oracle RAC 11g on Windows 2008 64 bit, The installation was successfull crs_state -t executed successfully.
    Bt the machine got crashed ,when executed a select query with 100 sessions( For performance evaluation using TG). A blue screen is appeared on two nodes. So i am not able to evaluate the performance.
    Can you please tell any suggesstions to solve this issue? Is our hardware is not sufficient? Or any software settings has to be done?. I tried most of hte technique ,bt the problem still exists.
    The following machine configuration is used for Oracle RAC setup
    Intel Core 2 Duo 2.66 GHz,
    Ram :4GB.
    OS : windows 2008 Server 64 Bit
    Oracle RAC , Clusterware 11g R2 64 Bit.i guess you have installed/configured RAC using VMware. i guess, the problem is with your RAM size. how much disk space and RAM size you have allocated for each machine?
    which documentation you have followed?

  • Oracle application server 10.1.3.1.0 install - JAVA error

    Hi Everyone,
    I am trying to Install Oracle Application Server 10.1.3.1.0 on 32 bit Red Hat Enterprise Linux Server release 5.8 (Tikanga)
    When running the Installer, I use the -ignoreSysPrereqs option because 10.1.3.1.0 is only supported with Linux Server 4, I believe. But I know people have installed it on Linux 5.7 and 5.8
    anyways, Oracle application server gets installed and asks me to run root.sh. I run root.sh and then hit the OK button to proceed,
    At this point, it tries to run the configuration assistant and fails right away with the following error:
    Starting to execute configuration assistants
    Launched configuration assistant 'Oracle Application Server Configuration Assistant'
    Tool type is: Optional.
    The command being spawned is: '/u01/app/oracle/product/10.1.3.1/jdk/bin/java -cp /u01/app/oracle/product/10.1.3.1/j2ee/home/applications/ascontrol/ascontrol/WEB-INF/lib/ascontrol.jar:/u01/app/oracle/product/10.1.3.1/j2ee/home/applications/ascontrol/ascontrol/WEB-INF/lib/log4j-core.jar:/u01/app/oracle/product/10.1.3.1/jlib/oraclepki.jar:/u01/app/oracle/product/10.1.3.1/jlib/ojmisc.jar: oracle.sysman.ias.studio.installer.ASControlConfigAssistant -sso false -j2eeinstance home -username oc4jadmin -password Protected value, not to be logged -oraclehome /u01/app/oracle/product/10.1.3.1'
    Start output from spawned process:
    Exception in thread "main" java.lang.NoClassDefFoundError: oracle/sysman/ias/studio/installer/ASControlConfigAssistant
    End output from spawned process.
    Configuration assistant "Oracle Application Server Configuration Assistant" failed
    Exception in thread "main" java.lang.NoClassDefFoundError: oracle/sysman/ias/studio/installer/ASControlConfigAssistant
    Any ideas? am i missing a library or environment variable?
    Thanks

    I have now set the following environment variables
    ORACLE_BASE
    ORACLE_HOME
    TNS_ADMIN
    PATH
    JAVA HOME
    and now when I try to run opmnctl startall, I get:
    opmnctl: starting opmn and all managed processes...
    globalInitNLS: NLS boot file not found or invalid
    -- default linked-in boot block used
    main: NLS initialization failed!!
    globalInitNLS: NLS boot file not found or invalid
    -- default linked-in boot block used
    main: NLS initialization failed!!
    globalInitNLS: NLS boot file not found or invalid
    -- default linked-in boot block used
    main: NLS initialization failed!!
    opmnctl: opmn start failed.

  • "exp" with Oracle 11.1 client and 10.2 instance gives "MAXSIZE" error

    My company has a lot of customers running lots of versions (and combinations of versions) of Oracle, so I like to come up with commands that will usually work for all of them. I recently installed Oracle 11.1.0.6 client on my PC, and this happened when connecting to a 10.2.0.3 database on an AIX machine:
    C:\temp>exp mfour/mfour@testdb tables=(bill_period_loc) file=bpl.exp
    Export: Release 11.1.0.6.0 - Production on Thu Jun 5 08:25:14 2008
    Copyright (c) 1982, 2007, Oracle.  All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition
          Release 10.2.0.3.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    Export done in WE8MSWIN1252 character set and
          AL16UTF16 NCHAR character set
    server uses WE8ISO8859P1 character set (possible charset conversion)
    About to export specified tables via Conventional Path ...
    . . exporting table                BILL_PERIOD_LOC
    EXP-00008: ORACLE error 904 encountered
    ORA-00904: "MAXSIZE": invalid identifier
    EXP-00008: ORACLE error 942 encountered
    ORA-00942: table or view does not exist
    EXP-00024: Export views not installed, please notify your DBA
    EXP-00000: Export terminated unsuccessfully
    C:\temp>In the past I've had good results when using newer clients to exp/imp on older instances. Is there a switch or something to get this to work?

    Although it may work (sometimes), using newer export versions against older database versions is neither recommended nor supported. So use the same export version as the target database.
    Werner

  • Oracle 8.1.6 P edition for win95/98 instullation error

    Hi,
    Please i was installing oracle 8i on win
    98, but it came up with an error "OLE Initialize or OCX load error while registering OCX" . After ignoeing this error the installtion was completed, then came up that there is a configuration tools error.
    1, Net8 Configuration Asistant (failed)
    2, oracle Database configuration Asistant (failed)
    3, Making Database Startup asistant (failed).
    Can somebody please help me out with this thing. Thanks. After all this try to start on the SQL*PLUS bufer i could'nt login there was an error again this time it was
    ORA- 12538- TNS:no such protocol adapta.

    Hey I am having the same problem wiht windows ME installation. If some nows how to fix it please email me. [email protected]

  • Oracle 8.1.7 on linux. plslq block not compiled

    I created table test
    create test (a varchar2(100),b varchar2(100));
    I send query:
    delete from test
    where (a, b) in (('Z','V'),('X', 'C'),('S', 'P'),('D', 'Y'));
    All ok;
    I send pl/sql block:
    begin
    delete from test
    where (a, b) in (('Z','V'),('X','C'),('S', 'P'),('D', 'Y'));
    end;
    Server proccess associated with my session using 100% of CPU and 10 min later
    my client receive error ORA-04031:
    begin
    ERROR at line 1:
    ORA-04031: unable to allocate 1024 bytes of shared memory ("shared pool","begin
    delete from test
    w...","PL/SQL DIANA","PAR.C:parchk:page")
    When I send:
    begin
    delete from test
    where (a, b) in (('Z','V'),('X','C'),('S', 'P'));
    end;
    all ok
    What is the reason?
    null

    I think that the problem is not in size of shared_pool. I changed this parameters but it is not help me. I tested this pl/sql block on such computer with such parameters of kernel and oracle but version of oracle was 8.1.6 - all ok.
    I solved this problem by using another pl/sql block:
    begin
    delete from test
    where (a, b) in (('Z','V'),('X','C'),('S', 'P'));
    delete from test
    where (a, b) in (('D', 'Y'));
    end;
    And that is why I have a question: Is it Oracle(8.1.7 on Linux) bag or not?
    null

  • Oracle 11g and PRO*C :  pre-compile errors only with 11g !

    Hi !
    I didn't find a forum specific to pro*c, so here i am.
    I've downloaded Oracle 11g and recompiled our applications using pro*c
    We currently precompiling without any problem our sources against Oracle 7, 8, 9, 10.
    With Oracle 11g, it doesn't work !
    every EXEC SQL followed by a command works.
    every EXEC SQL followed by a query generates the same error.
    Example :
    char *oracle_date_courante()
         static char buf[SIZE_ORADATE+1];
         EXEC SQL SELECT sysdate into :buf from DUAL;
         if(ORA_SQLERROR())
              oracle_error("sélection date courante");
              buf[0]=0;
         return buf;
    PRO*C output :
    Erreur Ó la ligne 105, colonne 2 dans le fichier src\oracle.pc
    EXEC SQL
    .1
    PLS-S-00000, SQL Statement ignored
    erreur sÚmantique Ó la ligne 105, colonne 2, fichier src\oracle.pc:
    EXEC SQL
    .1
    PCC-S-02346, PL/SQL a trouvÚ des erreurs sÚmantiques
    So, we investigated... And found that thoses errors come when we use the option sqlcheck=semantics.
    If we use an inferiour check level, it works but because we use PL/SQL keywords, pro*c prints errors and wants us to provide the 'semantics' sqlcheck level !
    So, it's a vicious circle !
    Any ideas ?
    Thanks...
    Vincent

    Adding the option common_parser=yes removes the errors !
    But brings errors linked to the PL/SQL parser such like
    CSF-S-00000, ORA-06544: PL/SQL : erreur interne, arguments : [55916], [], [], []
    1>, [], [], [], []
    1>ORA-06553: PLS-801: erreur interne [55916]
    Really vicious..and still not precompiling !
    By the way : Server is 10.2.0.1... and i guess thoses errors are normal since the common parser is not available in this version...
    So bye bye option common_parser and i'm back to my orignals errors.
    Message was edited by:
    Vicenzo

  • [Oracle BPM 6.0.2 - formerly ALBPM 6.0.2] Error using BAM Updater Service

    Hi All -
    I'm getting a similar error to the one below (posted byFabricio Soares) when the BAM updates service is working. We are using ALBPM 6.0.2 alongwith Oracle OID / LDAP (integrated using a custom FDI plugin).
    Any idea what could cause this problem? I've verified the BAM configuration - and the database tables exist (though are empty...).
    Thanks in advance -
    Deepak Natarajan
    From: Fabricio Soares [mailto:[email protected]]
    Sent: 17. december 2008 14:10
    To: /USER bpmblazers
    Subject: problem when I try to update the BAM
    Importance: High
    Hi Folks,
    I'm having the following problem when I try to update the BAM.
    If anyone knows about this problem I appreciate.
    In attachment have the complete logs files.
    Thanks and Regards,
    Stack trace:
    <S> 17/12/08 10:08:29]
    java.lang.NullPointerException:
    at fuego.analyzer.OrganizationMetadata.getDWInForOU(OrganizationMetadata.java:92)
    at fuego.analyzer.OrganizationMetadata.synchronizeParticipants(OrganizationMetadata.java:422)
    at fuego.analyzer.OrganizationMetadata.synchronize(OrganizationMetadata.java:135)
    at fuego.analyzer.UpdaterRunner.synchronizeMetadata(UpdaterRunner.java:467)
    at fuego.analyzer.UpdaterRunner.run(UpdaterRunner.java:280)
    at fuego.analyzer.UpdaterRunner.runUpdater(UpdaterRunner.java:183)
    at fuego.analyzer.service.BAMUpdaterRunnerService.run(BAMUpdaterRunnerService.java:135)
    at fuego.analyzer.service.WarehouseService$WarehouseServiceThread.runItem(WarehouseService.java:421)
    at fuego.analyzer.service.WarehouseService$WarehouseServiceThread.run(WarehouseService.java:354)
    [<S> 17/12/08 10:08:29] Updater runtime exception.
    Caused by:
    fuego.analyzer.UpdaterRuntimeException: Updater runtime exception.
    at fuego.analyzer.UpdaterRuntimeException.wrapException(UpdaterRuntimeException.java:87)
    at fuego.analyzer.UpdaterRunner.synchronizeMetadata(UpdaterRunner.java:518)
    at fuego.analyzer.UpdaterRunner.run(UpdaterRunner.java:280)
    at fuego.analyzer.UpdaterRunner.runUpdater(UpdaterRunner.java:183)
    at fuego.analyzer.service.BAMUpdaterRunnerService.run(BAMUpdaterRunnerService.java:135)
    at fuego.analyzer.service.WarehouseService$WarehouseServiceThread.runItem(WarehouseService.java:421)
    at fuego.analyzer.service.WarehouseService$WarehouseServiceThread.run(WarehouseService.java:354)
    Caused by: java.lang.NullPointerException:
    at fuego.analyzer.OrganizationMetadata.getDWInForOU(OrganizationMetadata.java:92)
    at fuego.analyzer.OrganizationMetadata.synchronizeParticipants(OrganizationMetadata.java:422)
    at fuego.analyzer.OrganizationMetadata.synchronize(OrganizationMetadata.java:135)
    at fuego.analyzer.UpdaterRunner.synchronizeMetadata(UpdaterRunner.java:467)
    ... 5 more

    I've received a reply from the support guys at BEA:
    I just got notified from several other engineers , here at the labs , that there’s an issue on the installer itself . The BUG report has been already filed .
    In the meantime the only alternative is to install ALBPM Studio 6.02 from scratch , with the following considerations :
    - Uninstall
    - Make sure that the directory had been fully erased
    - Reboot the machine
    - Install ALBPM 6.02
    - Apply the latest Hotfix

Maybe you are looking for

  • How do I delete unnecessary files

    Mac OS X, V 10.6.8, processor; 2.66 GHz Intel Core 2 Duo; Memory 2 GB 1067 MHz DDR3 I would like to clean up my computer of unnecessary files and backups, i.e. email, printers, logs, caches.

  • JSP & HTML

    how can i populate a combo box/list box at run time in JSP and HTML?

  • How do i custumize video to look best?

    I have some video that has been taken in 460i /60 and i can see the pixels in some places and it does not look to good. I want to know how can i make my video look the best and how to use the i think ( Softfocus ) so that i could make the main speake

  • I lost my foto after upgrading to IOS 8.1

    Please help!!!!... My Ipod crashed when installing IOS 8.1. After restoring my Ipod using ITunes, I lost all my 6000++ fotos!!! Please help me how to retrieve it...

  • Where does Spotlight store the info when it catalogs a Hard Drive?

    Before I realized it, Spotlight was cataloging 6 hard drive (partitions) that I use for BackUp. Now I'm sure this is taking up some hard drive space, and I'd like to find out where these files are stored so I can trash them. Does anyone know where th