JRE FOR J2SDK1.3.1_02

HELLO,
This is for technical personnel. When I able to update Path and Classpath variable and also check it in MS-Dos mode. Next time when I open my computer it is only displaying MS-DOS mode only with an error difficulty opening WIN.COM
I am writing this message from my friend's computer. I think this version and specially JRE has some error.

Make sure that the Windows system directories are in your path. For Windows 95, 98, and Me these are C:\WINDOWS and C:\WINDOWS\COMMAND. For Windows NT and 2000 these are C:\WINNT and C:\WINNT\System32. I'm not sure about Windows XP.

Similar Messages

  • Installing j2sdk1.3.1_02 on Solaris2.7

    Hi, friends,
    I installed j2sdk1.3.1_02 on Solaris2.7. But when I run JVM, I got the following error:
    Error: failed /usr/j2se/jre/lib/sparc/client/libjvm.so,
    because ld.so.1: /usr/bin/ ../java/bin/../bin/sparc/native_threads/java: fatal: libCrun.so.1: open failed: No such file or directory
    I couldn't figure out why? Any information is highly appreciated.
    Frank

    Is ld.so.1 in your $PATH ?

  • Which JRE for Windows XP?

    I have to choose the JRE version which will installed as the default JRE on thousands of XP sp2 pc's. This JRE will also be the default JRE for Internet Explorer - the one called when the APPLET tag is used.
    Up until now we have used the Microsoft JVM as the default for Internet Explorer and a SUN JRE version 1.4.1_02 as the default JRE on our NT machines.
    Can anyone recommend a very stable, reliable JRE for Windows XP sp2? Once installed it will probably be used for years as the default JRE although other JRE's will be installed on the system also.

    Its a bad idea to use a platform like java for several years, I would at least upgrade every 1-2 years. Java provides a silent installation mode for this, so no interaction of the user is required at all.
    as I sugested I would use the latest 1.4.2_latest if you need something rock-solid or 1.5.0_latest if you want the latest features. However I know many people having problems with 1.5.0+applets, starting with crashing browsers to long load-times because sun's cup animation eats up the whole CPU which is needed for class-loading!
    lg Clemens

  • Dynamically adding JRE for IE, Java Security Warnings, & Next Gen Plugin.

    I wrote an portal application to control the environment for a third party application, the portal uses a JRE version that I supply with it, this was to ensure that users are using the same JRE so any issues can be limited to one version of Java. The only piece of the application that I could not specify the JRE version and path was for Internet Explorer. Please keep in mind that I do not control when the system JRE is updated or not, this is pushed to our systems and the latest JRE would be enabled automatically. I wanted to be able to dynamically add and enable the version of the JRE that Microsoft Internet Explorer uses for applets. So I was digging around recently and if I have the next-generation plugin enabled I could programmatically update the deployment.properties file prior to launching Internet Explorer(assuming I have closed all prior instances of IE that were running) to add and enable a version of the JRE which I choose to use. When I launch IE and run an applet I see that it is using the JRE I had dynamically supplied. However everytime I run the applet a Java security warning comes up saying "The application requires an earlier version of Java", I wanted to suppress this message but after research I tried adding 'deployment.security.mixcode=HIDE_RUN' to the deployment.properties, that did not work. I tried disabling the Next Generation Plugin, that worked to suppress the message however internet explorer was no longer using my dynamically supplied JRE for applets in IE, so that was not going to work for my purposes. My questions are:
    1. Is there a reliable way(not using ssvagent) to programmatically enable and disable Java's Next Generation Plugin option? (I want to make sure it is enabled when launching third party application from the portal)
    2. Is there a programmatic way to suppress the Java Security Warning "The application requires an earlier version of Java", without disabling Java's Next Generation Plugin option?
    deployment.properties entries after addition of my jre entry:
    #deployment.properties
    #Fri Sep 28 14:09:24 PDT 2012
    deployment.javapi.lifecycle.exception=true
    deployment.trace=true
    deployment.javaws.viewer.bounds=323,144,720,360
    deployment.javaws.autodownload=NEVER
    deployment.version=6.0
    deployment.browser.path=C\:\\Program Files (x86)\\Internet Explorer\\iexplore.exe
    deployment.security.mixcode=HIDE_RUN
    deployment.log=true
    deployment.console.startup.mode=SHOW
    deployment.capture.mime.types=true
    #Java Deployment jre's
    #Fri Sep 28 14:09:24 PDT 2012
    deployment.javaws.jre.0.registered=true
    deployment.javaws.jre.0.platform=1.6
    deployment.javaws.jre.0.osname=Windows
    deployment.javaws.jre.0.path=C\:\\Program Files (x86)\\Java\\jre6\\bin\\javaw.exe
    deployment.javaws.jre.0.product=1.6.0_33
    deployment.javaws.jre.0.osarch=x86
    deployment.javaws.jre.0.location=http\://java.sun.com/products/autodl/j2se
    deployment.javaws.jre.0.enabled=false
    deployment.javaws.jre.0.args=
    deployment.javaws.jre.1.enabled=true
    deployment.javaws.jre.1.registered=true
    deployment.javaws.jre.1.osname=Windows
    deployment.javaws.jre.1.location=http\\\://java.sun.com/products/autodl/j2se
    deployment.javaws.jre.1.osarch=x86
    deployment.javaws.jre.1.path=C\:\\Portal\\dist\\java\\jre6\\bin\\javaw.exe
    deployment.javaws.jre.1.platform=1.6
    deployment.javaws.jre.1.product=1.6.0_29
    Note: The reason not to use most recent version of Java is the necessity to test the third party application prior to deployment of a new Java version and since I do not control when a new version of Java is deployed and enabled to our machines, I am required to find an transparent solution. I understand the security issues by doing so, but the time between testing and acceptance of a new Java version for our application is within an acceptable timeframe. On exiting the application, I would restore the JRE settings and restore previous settings, to minimize the exposure of a potential security risk. Also any manual configurations are trying to be avoided as to maintain transparency to the user.

    I'm having a similar problem and I think it is related with this.
    If, after a Java--->Javascript call, a Javascript--->Java call isn't made soon after the first, it works. But, if the Java--->Javascript call triggers a Javascript--->Java call, any Java--->Javascript call that is made after that doesn't reach Javascript :/
    I have a method that handles the Java--->Javascript calls and goes something like this:
    System.out.println("Calling Javascript...");
    JSObject win = JSObject.getWindow(this);
    win.call(jsEventHandler, new Object[] { json.toString() });
    System.out.println("Done.");I further found out that, after looking at the Java debug console in the scenario where a Java--->Javascript call triggers a Javascript--->Java call, only after this last method returns is the "Done" message printed, even though the respective Javascript call was already invoked.
    Could you explain in more detail the queue based solution you found? Any other ideas?
    Regards,
    André Tavares.

  • Open letter to SUN to produce a  JRE for Pocket PC

    To any SUN Employee dealing with Personal Java.
    We realise you are currently under resourced in the development of J2ME but we implore you to release a commercially viable JRE for ARM Pocket PC - even just that age old Personal Java 2001 variant in a finalized commerical build.
    We cannot use your Personal Java beta implementation in a commericial environment (so says your license) and the it is serverely stunting the growth of Java in this area.
    Due to lack of adequate Java support for ARM Pocket PC a large number of developers are losing faith in this technology on this platform and moving to rival technologies. Do you really want this to happen and for an already monopolistic rival to get a good foot hold in an area in which Java should flurish?
    Anybody who reads this and feels as strongly about the lack of JRE please sign this and add a comment - maybe we can get the SUN to sit up and take notice.
    ****

    Well its on Slashdot now and in a newsgroup. If anyone has suggestions how we can get the attention of the people that make the decisions please tell me!
    This is an email I sent to the personaljava support email ([email protected]):
    Please see this post - its going to get bigger now this article is on it (Slashdot):
    http://developers.slashdot.org/article.pl?sid=03/06/09/1158232
    The forum itself:
    http://forum.java.sun.com/thread.jsp?forum=56&thread=408223
    Its also in comp.lang.java.programmer
    Slashdot and a new JRE for PocketPC
    We need a free finalised J2ME or PersonalJava JRE for PocketPC - Microsoft has the ability to runaway on an expanding market with no competition - posts here should prove that developers are already moving in droves to .NET. Isn't this Java's forte, mobile devices?
    If you have any sway with the higher ups in Sun who can dedicate resources (or indeed yourself) please pass on this email. This is one market where Java really should get a good hold - inheriting by design.
    Thank you,
    Benjamin (brownb2, Ben)
    -----------------------

  • Right JRE for forms 10gR2(10.1.2.0.2) on Windows 7 64bit

    Hi All,
    What is the right JRE for windows 7 64bit OS and our forms app server is 10.1.2.0.2. Any one's help is much appreciated.
    Regards

    Thanks Carlos,
    We are using some custom java beans and image jar files along with the frmall_jinit.jar,frmwebutil.jar,,jacob.jar,ojdbc14.jar. After using Java Plug-in 1.6.0_45. I am hitting this error
    Exception in thread "AWT-EventQueue-2" java.lang.NoClassDefFoundError: oracle/bali/share/sort/StringComparator
    and
    Caused by: java.lang.ClassNotFoundException: oracle.bali.share.sort.StringComparator
    Do you suggest to apply the patch 10.1.2.3. I have noticed few people still have some issues after applying this patch.
    Please suggest.
    Regards.

  • Is there a JRE for windows mobile 6.1 ?

    Hi everyone,
    I need to install a Java Virtual Machine on my Intermec CK3 device which runs on Windows Mobile 6.1.
    Can anyone advice where to download the JRE ?
    Is there a JRE for windows mobile ?
    Thanks in advance,
    Best Regards

    I don't believe that that IS a legal download.
    This here is a more legal option:
    http://www.makeuseof.com/tag/install-java-windows-mobile/

  • JRE for Different Operating Systems

    Hi,
    Will the installed JRE be different for each Operating System? or will it be same for every OS?
    Means Can i use the same installed binaries for every OS?(Windows , Mac.....)
    Thanks,
    Raja

    G'Day Raja,
    I have had to load different JREs for my Mac vs my PC. I assume they have different native code components.

  • Any one can show me where to find the JRE for MAC?

    I am trying to develop an application to run on PC and MAC. For PC, I can easily get the JRE to run it. But for MAC, what can I found is only MRJ 2.2.5. If I not wrong, I found that I can only run the applet(unable to support the SWING) but not the application. Anyone know where can I get the JRE for MAC which can run the application (same as the JRE1.3 for PC )
    There are a few MAC which has different OS. All of these MAC are too old to upgrade with latest OS so I cannot have the latest JAVA 2 technology support which is integrated in the latest OS. The MAC are running with OS 7 and OS 9 so anyone can tell me where to get the JRE that able to run the application that develop by using the JAVA 2?

    You probably already looked at
    http://devworld.apple.com/java/classic.html
    It doesn't look like they have one for Java 2 unless youupgrade to Mac OS X.

  • Jre for solaris x86

    hi,
    I know that there is a separate JRE for Solaris X86. But my problem is that i have Solaris x86 installed an amd 64 bit machine and also on an Intel 64 bit machine.
    I would like to know if it is possible to use the same jre for both the machines.
    Edited by: Diganth.A on Feb 4, 2009 11:16 AM

    Diganth.A wrote:
    hi,
    I know that there is a separate JRE for Solaris X86. But my problem is that i have Solaris x86 installed an amd 64 bit machine and also on an Intel 64 bit machine.
    I would like to know if it is possible to use the same jre for both the machines.
    Edited by: Diganth.A on Feb 4, 2009 11:16 AMThis all depends on the operating system your are using and the type of 64 bit hardware architecture type.
    Can you please provide more specific details about the architecture and operating systems you are trying to install your JRE on?
    Typically you will want to download a pre-configured JRE for your OS platform and hardware architecture.

  • Default jre for applets?

    hi,
    how can i set jre1.4.2 or jre1.5 as default jre for applets in my webbrowser(IE).
    i have jre 1.4.2, jre1.5 and jre1.6 installed.
    everytime when i start to run an applet jre 1.6 will be started.
    i'am working in an windows environment.
    can anybody give me a hint.
    best regards
    guido

    yos1 wrote:
    Though it seems odd, registry changes can be applied more easily ..So, given the choice
    change the HTML on the server, once for each applet, or
    change the Windows registry database on the client PCs, once for each client PC
    you would go for changing the Windows registry database on every client PC.
    Interesting.
    What about client PCs that have a different operating system?
    Do you know which registry changes have to be applied ?I do not know for sure there is a way to do what you want,
    it would not be the option I would go for.
    I am not in the habit of advising people to make arbitrary changes to the Windows registry database,
    maybe you can find someone who will investigate this for you on a microsoft support forum
    or on rentacoder or some such site.

  • JRE for Safari?

    Hello all,
    I'm trying to find the JRE for Safari. Some of the webpages that I've visited require that a JRE
    be installed for them to work correctly. Any suggestions?
    My system is using Safari Version 5.0.2 (6533.18.5). And all recent updates have been installed.
    Java for Mac OS X 10.6 Update 2 version 1.0
    Thanks.

    Carolyn,
    Well, I gave that a try, and it still complains.
    Unfortunately, I can't pass page address along. It belongs to a Baseboard Management Controller (BMC) from American Megatrends, that allows for remote access, that is located on an network, that is not connected to the Internet. And it's the Console Redirection pieces that's not working. I've verified that it does support OS X.
    the message that I'm getting is: "Please install Java Runtime Environment before you choose the view."

  • Installing JRE for J2SE application on fanless linux mini pc.

    Good afteroon.
    I want install a JRE for J2SE application on mini pc fanless .It is possible?
    What about hardware settings,performance of this mini pc?
    Bye.

    Was wondering this myself. Cannot find a class path on ubuntu. if there is one at all.

  • JVM or JRE for thin client

    Hello, i'm wondering if there is any special jvm or jre for thin client pc, coz the usual jvm didn't work on my thin client using windows ce.net, please advise

    There are many offerings in the small device space. Try posting on the CLDC or CDC forum.

  • JRE for Linux ARM architecture plus browser plugin

    Hello,
    is there a port of JRE for Linux ARM architecture?
    I was only able to find Blackdown's JRE 1.3. Unfortunatelly this one does not contain a plugin for Mozilla browser.
    Thank you for help
    Kalle

    Hi There
    Are you using Mozilla Firefox to access the console or Internet explorer ?
    If its INternet explorer then please follow this :- +
    Installing TightVNC for Non-Linux Users
    After Oracle VM Manager is installed, install the TightVNC-Java applet for non-Linux users to access virtual machines. Download the latest version from: http://oss.oracle.com/oraclevm/manager/RPMS/.
    To set up the TightVNC-Java applet:
    Install it using the command:
    # rpm -ivh tightvnc-java-version.noarch.rpm
    version refers to the version of the TightVNC-Java applet. For example:
    # rpm -ivh tightvnc-java-1.3.9-3.noarch.rpm
    This should work out for you, try it in INternet explorer first, then you will know if it worked.
    Make sure u restart after installation of the RPM
    cheers
    let moi know how u get on

Maybe you are looking for

  • How i can upload my photo in SDN Business card ?

    How i can upload my photo in SDN Business card ? its asking htttp... there is no option for browse my system , and select and upload photo pls advice

  • BANK Branch

    Hi Gurus, Is it possible to haveĀ  bank branches in ECC 5.0?? We have a bank with 5 branches and we need the basic data for all of them (title, name, street, region, fax, email etc). Thanks,

  • Burned DVDs not working on MacBookPro

    Hello - I have authored and burned discs in DVD SP, and they all play fine on my DVD player on my TV set, but are not playing on my MacBook Pro. I put the disc in after Disk Utility shows it's been burned successfully, and after a few 'tries', it pop

  • Will there ever be an 8th generation nano?

    Will there ever be an 8th generation nano?

  • Printing What I Want

    An elementary question, I'm sure, but if there some way I can print what I want of the document? In my image, you can see in the print preview the pink box that shows what will be printed. Any way I can move that pink box over a little to the right b