JRE incompatability errors ???

hi. I was using Java J2SE 1.4.2_01 to compile and run my Java code. Recently, I installed a version of IBM's voice toolkit to run VXML. When i installed the VXML toolkit, it said that i needed to install Java JRE 1.3. So i did. Ever since then, I have been getting error messages when i try to execute my Class files. I tried to fix this by downloading version 1.4.2_04, but this did not help.
this is the error I am getting:
A:\>java myApp
Registry key 'Software\JavaSoft\Java Runtime Environment\CurrentVersion'
has value '1.4', but '1.3' is required.
Error: could not find java.dll
Error: could not find Java 2 Runtime Environment.
Any Help would be great...
Thanks.

hey that's very easy to solve that..
Only thing you have to do is
type regedit to start system registery
then in that left pane browse by
Click on
HKEY_LOCAL_MACHINE --> SOftware--->JavaSoft--->
Click on
Java Runtime Environment
Now on the right hand side pane you see Current version as 1.4 if you have installed previously JSDK1.4...
Now you have to change it to 1.3 by clicking on it on right hand pane
then your JRE start working as 1.3
This problem is because you have later version installed first .
This should surely work
any other thing you would like to know can mail me at
[email protected]

Similar Messages

  • Data incompatibility error when working with objets

    Hi
    I am passing an object to the procedure inside package.
    when i am using for loop it's working fine
    the code is below
    create or replace type emp_obj as
    object(empno number(10),
    ename varchar2(10),
    sal number(10,3));
    create or replace type emp_tab is table of emp_obj;
    CREATE OR REPLACE PACKAGE emp_obj_pkg
    AS
    PROCEDURE emp_ins_proc(p_emp_tab IN emp_tab);
    END emp_obj_pkg;
    CREATE OR REPLACE PACKAGE BODY emp_obj_pkg
    AS
    PROCEDURE emp_ins_proc(p_emp_tab IN emp_tab)
    IS
    BEGIN
         FOR i IN 1..p_emp_tab.count
         LOOP
    INSERT INTO emp VALUES( p_emp_tab(i).empno,p_emp_tab(i).ename,p_emp_tab(i).sal);
         END LOOP;
    END emp_ins_proc;
    END emp_obj_pkg;
    declare
    v_emp_tab emp_tab;
    begin
    select emp_obj(empno,ename,sal) bulk collect into v_emp_tab from emp;
    emp_obj_pkg.emp_ins_proc(v_emp_tab);
    end;
    when i am trying to use the forall in the package it throwing the error data incompatibility error
    the procedure code for the package is
    CREATE OR REPLACE PACKAGE BODY emp_obj_pkg
    AS
    PROCEDURE emp_ins_proc(p_emp_tab IN emp_tab)
    IS
    BEGIN
         FORALL i IN 1..p_emp_tab.count
    INSERT INTO emp VALUES p_emp_tab(i);
    END emp_ins_proc;
    END emp_obj_pkg;
    i got below errors
    ERROR
    PL/SQL: SQL Statement ignored
    PL/SQL: ORA-00932: inconsistent datatypes: expected - got -
    pls help me how to do this with for all
    Thanks & Regards
    Bala Sake

    954925 wrote:
    when i am trying to use the forall in the package it throwing the error data incompatibility errorThe structure following the VALUE clause need to match the structure of the table being inserted into.
    Basic examples of using record structures for inserting data, for object and normal tables.
    SQL> create or replace type TEmployee is object(
      2          emp_id  number,
      3          emp_name varchar2(10),
      4          dept_id number
      5  );
      6  /
    Type created.
    SQL>
    SQL> create or replace type TEmployeeTable is table of TEmployee;
      2  /
    Type created.
    SQL>
    SQL> create table employees of TEmployee(
      2          constraint pk_employees primary key( emp_id )
      3  ) organization index;
    Table created.
    SQL>
    SQL> create or replace procedure EmpInsert( empTable TEmployeeTable ) is
      2  begin
      3          forall i in 1..empTable.Count
      4                  insert into employees values empTable(i);
      5  end;
      6  /
    Procedure created.
    SQL>
    SQL> declare
      2          empArray        TEmployeeTable;
      3  begin
      4          select
      5                  TEmployee( empno, ename, deptno )
      6          bulk collect into
      7                  empArray
      8          from    emp;
      9 
    10          EmpInsert( empArray );
    11  end;
    12  /
    PL/SQL procedure successfully completed.
    SQL> create table employees(
      2          emp_id  number primary key,
      3          emp_name varchar2(10),
      4          dept_id number
      5  ) organization index;
    Table created.
    SQL>
    SQL> declare
      2          cursor c is select  empno, ename, deptno from emp;
      3          type TCursorBuffer is table of c%RowType;
      4          buffer TCursorBuffer;
      5  begin
      6          open c;
      7          loop
      8                  fetch c bulk collect into buffer limit 100;
      9 
    10                  forall i in 1..buffer.Count
    11                          insert into employees values buffer(i);
    12 
    13                  exit when c%NotFound;
    14          end loop;
    15          close c;
    16  end;
    17  /
    PL/SQL procedure successfully completed.
    SQL> Of course, these example do not show how one should code when moving data from one table to another (using native SQL only is by far faster and more scalable).
    However it does show the basics of inserting a structure via the INSERT call in PL/SQL (as oppose to individual variables) - and this is an important consideration as the resulting code is more robust and requires less keystrokes.

  • (HP Share to Web)/(java 1.5 JRE) incompatibility problem?

    A Java application developed with JDK 1.3, and which used JRE 1.3, ran fine, but upon migrating from Java 1.3 to Java 1.5 (i.e. compiled with JDK 1.5 and using JRE 1.5), the application started having problems running on a given machine, which would give the fatal error, "javaw.exe has generated errors and will be closed by windows." This error would occur after the application would start and when the user would start to interact with application. The problem was traced to the application HP Share-to-Web, which was running on the machine in question. This problem would happen on machines running Win2K and Win98, and the aforementioned application, HP Share-to-Web, but would not happen on XP. When the application, HP Share-to-Web, was uninstalled, the Java 1.5 application would work fine. The following log file concerning this error was written on the Win98 machine. Hey..if anyone has any idea what be a happening, or if someone has experienced this same problem, any response would be appreciated.
    JAVAW caused an invalid page fault in
    module AWT.DLL at 0167:6d0ea81e.
    Registers:
    EAX=00000000 CS=0167 EIP=6d0ea81e EFLGS=00010246
    EBX=00000000 SS=016f ESP=0b76fa34 EBP=817858a0
    ECX=00000001 DS=016f ESI=006f84c0 FS=120f
    EDX=81780e9c ES=016f EDI=00000000 GS=0000
    Bytes at CS:EIP:
    8b 07 57 ff 50 58 ff 76 18 8b 07 57 ff 50 58 ff
    Stack dump:
    006c1b80 006f8500 006f84c0 6d0ea7d1 00000000 6d0ea924 00000001 0042f5d0
    7ff38b7d 006f8500 0042f5d4 0042f5d8 00000000 7ff387cf 7ff380f8 00000002

    AWT strongly suggests gui to me.
    That often means video software or hardware problems which can also include fonts.
    Does the particular software package grap the screen? And is it certified to work on the OS with the particular video hardware and software (including versions)?

  • WinXPHomeEdition -JRE autoinstall error -1.4.2_05

    hai,
    We are using the following code to download the JRE automatically.
    ============
    <HTML>
    <BODY>
    Downloading Java WebStart...
    <OBJECT CODEBASE="http://java.sun.com/update/1.4.2/jinstall-1_4_2_05-windows-i586.cab"
    CLASSID="clsid:5852F5ED-8BF4-11D4-A245-0080C6F74284" HEIGHT=0 WIDTH=0>
    <!-- Alternate HTML for browsers which cannot instantiate the object -->
    <A HREF="http://java.sun.com/j2se/1.4.2/download.html">
    Download Java Web Start</A>
    </OBJECT>
    </BODY>
    </HTML>============
    This code works with WinXP Professional Edition.
    But,an error appears if tried on WinXP HomeEdition SP1 .
    Internal Error 2755.1624http://java.sun.com/webapps/download/GetFile/1.4.2_05-b04/windows-i586/Java 2 Runtime Environment,SE v1.4.2_05.msi
    Doesn't this work with WinXP Home Edition SP1 anymore?[                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    I removed all the other JREs and tried the autoinstall procedure.Now the JRE is downloaded and installed without problem.
    But , during installation few other errors surfaced, but installing the JRE again was successful.
    I could not find the real problem and probable solution for this!
    I hope, you folks have the answer!
    regards

  • Forms 10.1.2.3 + Webutil + Sun plug-in (JRE) configuration error

    I am trying to configure webutil, my forms version is 10.1.2.3, with IE-8 and I am using Sun plug-in (JRE),
    I went through all the configuration steps in detail and checked several time but when i run webutel_demo form i get the bean not found error,
    oracle.forms.webutil.clientInfo.GetClientInfo bean not found. WEBUTIL_CLIENTINFO.
    GET_SYSTEM_PROPERTY will not work
    Seeks help,
    Thanks in advance.
    Abbas

    First, are you configuring Forms Builder to use WebUtil when you run a form from the builder or are you configuring your Application Server (AS)? The steps are the same, but it helps to know. :)
    It sounds like you either missed the step where you configure the default.env to include the full path to the frmwebutil.jar or you missed the step where you setup the [webutil] section of the formsweb.cfg. If you have completed these configuration steps, I have also seen (and experienced) where webutil couldn't find the .jar's until I added frmwebutil.jar to the [default] archive= variable. The other cause I've seen is not including the *?config=webutil* tag in your application url to instruct your AS/OC4J to use the webutil config section.
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • I keep getting jre application error when launching a online live class

    Need help with fixing this problem.

    Refer to the JDK Installation Instructions. The error is discussed at the end. (The JRE Installation Instructions says refer to the JDK instructions for troubleshooting.)

  • JRE version error

    Hi, i tried to deploy my webservice and got this error
    This class was compiled for a newer version of the JRE. Expected version 48.0, found 49.0.
    I've tried downgrading my JRE to 1.4.2 and then upgrade it back to 1.5.0 but it still display the same message.
    Any solutions?

    I'm using Standalone OC4J 10g 10.1.3
    This is the full Error:
    Operation failed with error:
    Error compiling :C:\Documents and Settings\041389c\Desktop\jdevstudio1013\j2ee\home\applications\MySecureWSApp-SecureWS-WS\WebServices: Error instantiating compiler: webservice artifact generation failed :oracle.classloader.util.AnnotatedClassFormatError : com/maxwell/secure/MyWebService1 (Unsupported major.minor version 49.0)
         Invalid class: com.maxwell.secure.MyWebService1
         Loader: MySecureWSApp-SecureWS-WS.web.WebServices:0.0.0
         Code-Source: /C:/Documents and Settings/041389c/Desktop/jdevstudio1013/j2ee/home/applications/MySecureWSApp-SecureWS-WS/WebServices/WEB-INF/classes/
         Configuration: WEB-INF/classes/ in C:\Documents and Settings\041389c\Desktop\jdevstudio1013\j2ee\home\applications\MySecureWSApp-SecureWS-WS\WebServices\WEB-INF\classes
         Dependent class: oracle.j2ee.ws.common.processor.modeler.wsdl.WSDLModeler
         Loader: oracle.ws.client:10.1.3
         Code-Source: /C:/Documents and Settings/041389c/Desktop/jdevstudio1013/webservices/lib/wsclient.jar
         Configuration: <code-source> (ignore manifest Class-Path) in META-INF/boot.xml in C:\Documents and Settings\041389c\Desktop\jdevstudio1013\j2ee\home\oc4j.jar
         This class was compiled for a newer version of the JRE. Expected version 48.0, found 49.0.
    Deployment failed

  • JRE Installation Error

    I'm attempting to install Nortel's Symposium Call Center Server Client. When the installation gets to the point where it attempts to install the Java Runtime Environment ver 1.1 it gives an error stating" Jre.exe has generated errors and will be closed by Windows. You will need to restart the program. An error is being created." I'm running on Windows 2000 Pro SP2. Help.

    I got the same error message with Windows 2000 on Pentium 4. It was while trying to run a report writer which used a jre.exe version 1.1.7.
    This was working fine in Window NT. I seem to have had success (although not throughly tested) by replacing the jre.exe with a renamed version of java.exe from jdk1.3.

  • Possible runtime incompatibility error

    Hi Everybody,
    i´m trying to run a midlet on a device emulator with windows mobile 6, i am using Vista Businnes 32-bits.
    When i try to run the midlet, i get this error message:
    Starting emulator in execution mode
    *** Error ***
    Failed to connect to device 12!
    Reason:
    Failed to initialize connection with device 12! (possible runtime incompatibility)
    profiler.check:
    open-profiler:
    run:
    BUILD SUCCESSFUL (total time: 7 seconds)
    Can somebody tell me what could be wrong ?
    Thanx.

    I could fix my problem, i had to do two things:
    1. Add a loopback adapter to my host computer and configure the ip address to the same subnet as the device emulated too.
    2. Update the Device Emulator to version 3.
    After i did that, everything worked fine.
    Thank all the people who saw my post.

  • Eclipse JRE/JDK error

    Well, I've seen that many people have had this problem. Unfortunately, I believe most of the advice was for shells (w/ Linux). I'm using Windows Vista Ultimate (64-bit) (if this makes any difference).
    I downloaded eclipse and extracted to desktop. When I open up "eclipse" however, it gives me this error message:
    A Java Runtime Environment(JRE) or Java Development Kit(JDK) must be available in order to run Eclipse. No Java virtual machine was found after searching the following locations: E:\UserName\Programs\eclipse\jre\bin\javaw.exe javaw.exe in your current PATH
    I have no idea how to fix this. I have JDK and JRE in a Java folder in C:\. I have gotten JCreator to work easily, but eclipse won't even open. Any help would be appreciated.

    New here too. I downloaded a music site, Limewise.com Pro and it gives me the same message. I can't even open it. I've got the Java JRE installed, I have the Limewise installed, but the two won't connect. Is it a firewall thing? How do I fix it? I paid for a music site I can't even open! HELP! I've spent hours and can't figure it out. I'm a non-techie. If you can tell me, please?
    Lanie

  • JRE.exe error in Oracle Forms 6i

    Anyone who encountered this error before and managed to solved the problem please assist me.
    I'm using Oracle Forms 6i Release XP taken from OTN download page installed in a Pentium 4 computer with Windows XP as an OS.
    Thank you

    Raymond,
    not sure if anybody has tested the Forms6i base release on XP, certification came with patch 13. maybe thats the origin of your problem.
    Frank

  • Firefox won't open . I get a "XUL runner incompatable" error. I'm running Zone Alarm security . How do I clear this error ?

    Error platform version '1.9.2.13' is not compatable with
    minVersion >=1.9.2.14
    maxVersion<=1.9.2.14
    I've tried deleting Firefox and reloading it. Still this error message appears. So what can I do ?

    Adware may be installed.
    If you have another browser:
         Use  free  AdwareMedic by clicking “Download ” from here
         http://www.adwaremedic.com/index.php
         Install , open,  and run it by clicking “Scan for Adware” button   to remove adware.
         Once done, quit AdwareMedic by clicking AdwareMedic in the menu bar and selecting
        “Quit AdwareMedic”.
                   or
    If you don’t have another browser:
         Use another Mac or an iPad.
         Open the article,either print it or  email the  contents to yourself.
         Remove adware  manually  by following the “HowTo” from Apple.
        “Remove Genieo, also known as InstallMac”
        http://support.apple.com/en-us/HT203987
          Safari > Preferences > Extensions
        Turn those off and relaunch Safari to test.
        Turn those on one by one and test.
    Note: You can get another web browser from Mac App store to download information posted above, if you wish.

  • Type incompatibility error using remove method of ArrayList class

    This method:
    public int removeFromQueue ( int iIndex )
    return queueFeed.remove( new Integer(iIndex) ) ;
    returns a type error after remove saying its found a boolean but is looking for an int. I want to remove the int value in the ArrayList and use it elsewhere.
    Confused.

    if you are trying to remove an element at the particular index say 5
    i.e., is int value = 5 then you get the return as Object that has been removed. Since ArrayList hols all obejcts and not any primitive data types.
    if you are trying to remove the Object say Integer(5) then you get the return as boolean specifying whether it has been sucessfull or not.
    so you can use either of the following as....
    // To remove Integer Object from Queue
    public boolean removeFromQueue ( int iIndex )
    return queueFeed.remove( new Integer(iIndex) ) ;
    // To remove Object from Queue at specific position
    public Integer removeFromQueue ( int iIndex )
    return (Integer)queueFeed.remove( iIndex ) ;
    }

  • **Urgent**: GO_ITEM to pop-up CANVAS with IMAGE in Sun JRE gives error

    Our Forms 10g Environment is this: Forms [32 Bit] Version 10.1.2.0.2 (Production) using Sun JRE i.e. Java Plug-in 1.6.0_06
    Problem is that when we try to navigate to a canvas (from a Button) which has an IMAGE ITEM the form is exited. This happens in every form which has a canvas with an image.
    i.e. In Button, we have code: Go_Item('block123.button1'). Button1 is also in that pop-up canvas.
    Even GO_BLOCK gives the same result.
    If the image is in the same canvas as the button which has GO_ITEM code, then it works.
    Of course this whole things works fine in JInit. But we need to run in Sun JRE.
    Is this a Bug?? Any help would be greatly appreciated.

    christian erlinger wrote:
    Well, as you are on 10.1.2.0.2 I strongly suggest that you apply the latest Patchset (10.1.2.3) the latest CPU Patches and the latest merge Patches. A lot of focus related things are fixed in those patches.
    cheersI will do this and let u know thans.

  • Version incompatibility error in OWB while login to Design Center

    Hi,
    I have created a Warehouse Builder repository on database(Version 11.1.0.7) server and installed Standalone OWB 11.2 on the client machine. However while connection from client pc it is throughing error like:
    API5036: client version 11.1.0.6.0 is not compatible with repository version 11.1.0.7.
    Please help me on this issue.
    Thanks.
    vinod
    Edited by: Vinod Ranjan on 27 Dec, 2011 11:32 PM

    You need to access the repository version with a compatible client.
    Which OWB version are you trying to use?
    There is a section below on using the standalone install which will let you use OWB 11gR2 for example with a 10gR2, 11gR1 or 11gR2 database.
    http://docs.oracle.com/cd/E11882_01/owb.112/e17130/setup_windows.htm#CHDGDCGD
    Cheers
    David

Maybe you are looking for

  • How can I permit all traffic from inside-dmz-outside on asa5505

    Scenario : Servers are in DMZ, Internal LAN Users should access ports Specified (5000 & 2048). Router 2801 is facing Leased line; from there it’s connected to firewall. Router LAN IP: 83.111.X.X - 255.255.255.X ASA Version 7.2(4) hostname ciscoasa do

  • Problem in downloading a xml file

    hi, i have a requirement that, in a page for example test.html a button is provided. on clicking that button one a request is send to an application which is running at a remote location, which i dont know. just i have the url of that perticular appl

  • Cannot figure out why my bullet lists aren't correctly aligned

    Hello, I hope someone can help me on this because I'm totally lost. I've spend hours trying to figure out where the problem comes from, reading posts on-line, searching documentation, etc. and I'm getting nowhere. I'm struggling with bulleted lists w

  • It's all gone pear shaped - no HD log & transfer or ws export to Apple TV

    Hi I have tried everything but admit to being stumped now. Problems are as follows: About 3 months ago I saved a large number of .MTS files from my Panasonic HDC-SD1 high def camcorder. They loaded into FCE4 fine and I could log and transfer them all

  • Talk Back

    I'm using Logic 9, an apogee ensemble and a headphone amp. Is there a way to set up talk back with the built in mic on my imac? or any other ways?