Installing Sun jre 1.4.2_08 on Websphere6.0

Hi everyBody,
I have the follogin problem:
1.I trying to setup my Websphere 6.0 star-up with Sun jre 1.4.2_08, configuring the java_home pinted to Sun jre. The server can�t bring-up with the Sun jre, so How can I do it?
it�s possible to do that?
Thank very much.
Message was edited by:
juanjo.garcia

I've posted this a couple oif other places today as well, but essentially it may help
I had the 'Error occured ..., VM' problem after installing 1.4.2_01 on Linux under slackware9.1.
I found the resolution by running 'java -verbose' as root and as a user and comparing the output, as java ran fine for root.
Turns out that for the user 'java -version' stopped after loading a couple of jars, and as root it didn't.
These jars in the JAVA_HOME/jre/lib directory only had root read/write permissions. After changing these permissions to all read and root write it worked fine for the user (so far)
The above may be of some help, but comparing the differences (especially permissions) in running it as root and user with -verbose may help.
John

Similar Messages

  • Applet Not loading in IE 6 & JRE 1.4.2_08

    Hi
    I am trying to run the applets in the demo folder of the JRE folder. The Applets are not running. I can see a blank rectangle scree instead of the applet. I have reinstalled the JRE, IE 6.0 and configured the browser to pick up the Java plugin. I have also configured the Java plugin in the control panel. I have also modified the PATH and CLASSPATH variables, so that they are pointing to correct JRE version. Still I am NOT able to run the applet in the browser. Can somebody throw some light on this asap ??
    Regards

    Clemens
    Thats the problem. Even when I clicked on the Sun Java Console in the IE Tools options, the console is NOT opening up. I am new to this ATI Card and FSAA nomiclature. Pl let me know what are they and how can I get them to install on my machine. I have tried installing the MS JVM, reinstalling the IE, reinstalling the JRE 1.4.2_08. But, NO LUCK !!!
    Regards

  • Discoverer 4i not working with Sun JRE plugin

    Hi All,
    Recently i replaced jinitiator with Sun JRE plugin, after the deployment of the plugins the discoverer is not launching from the form based responsibility.
    Its displaying on window as
    Applet oracle.disco.DiscoApplet notinited
    But i see the document 290807.1 for deployment of Sun JRE its no where mentioned that 4i will not Support Sun JRE plugins.
    Any inputs are appreciated
    Thanks in advance.

    Hi,
    You can upgrade to Discoverer 10g (10.1.2.3).
    Note: 313418.1 - Using Discoverer 10.1.2 with Oracle E-Business Suite 11i
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=313418.1
    Note: 459344.1 - What JRE Client Works With Discoverer 10.1.2 and e-Business Suite 11.5.10.2?
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=459344.1
    Note: 367389.1 - Recommended Patch for Discoverer 10g (10.1.2.1 / 10.1.2.0.2) Plus Known Issues
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=367389.1
    If you are not planning to use Oracle AS 10g features (like Discoverer Connection Management, Discoverer Portlet Provider, and Oracle Single Sign On, ..etc), you can choose to install Oracle Business Intelligence Server 10g Release 2. Oracle Business Intelligence Server 10g Release 2 is available on a separate standalone CD and includes Discoverer Server 10g, Discoverer Plus 10g, and Discoverer Viewer 10g.
    Regards,
    Hussein

  • How can I install a jre on client machines with no Internet Access

    Hi
    I have a lot of client machines located throughout the country which are connected to a central network (Oracle) application server. The client machines do not have internet access. The application now uses an applet which is accessible from the network. I would like to use the <jsp:plugin> tag to automatically download and install a jre on the client browsers that don't have a jre installed, when they access the jsp page. Unfortunately, even using iepluginurl="http://server-address/jinstall-1_4_2-windows-i586.cab, the client machines still need to access the internet to install the JRE as the cab file needs to access files at the Sun site.
    Is there any online jre installer, that can be used on a network where the client machines do not have internet access? Or do I need to install the JRE manually on each machine? The browsers are all Microsoft Internet Explorer.
    Thanks
    David

    Thanks for your reply ChuckBing.
    Unfortunately I had already copied the instructions I found in the Sun documentaion to the letter and it still needed access to the internet. In the end I solved the problem by pointing the iepluginurl to a non existent file and putting a URL, pointing to an offline JRE executable on the server, as the message that appears when the applet cannot be loaded. The clients then have the choice of downloading the JRE or installing it online by clicking on the URL.
    Thanks anyway.
    David

  • Oracle Forms loading slower with Sun JRE in Oracle E-Business Suite 11i

    Hi,
    After Deploying Sun JRE (Native Plug-in) for Windows Clients in Oracle E-Business Suite 11i (Note 290807.1) we find that Oracle Forms are loading slower than using Jinitiator.
    Also the PDF reports are opening in a minimized fashion. Meaning the PDF reports are opening correctly in new browser window (as expected) but is minimized.
    Customer is not willing to go live with Sun JRE due to these issues.
    Plz advice is there is any additional configuration I need to do.
    Rgds,
    Thiru

    When the JRE was installed/configured on the workstations was the jar cache placed on a LAN drive instead of the local drive? We have experienced poor performance with both the JRE and Jinitiator when the Workstation Sysadmins configured the jar cache to be located on a LAN drive. Also is the size of the jar cache on the workstation sufficient to hold all of your required jar files. It could be downloading the jar files all the time.
    Overall our performance with the JRE is comparible to the Jinitiator.
    Sorry I have not experienced the problem that you are having with you pdf reports so I can't provide any comments on it.

  • Logo not displayed in MS JVM to Sun JRE conversion

    Hi,
    We have a small MS JVM version of application which we converted to Sun JRE. It has only one applet (we made it to <Object>). Applet code tries to load a logo using following code
    URL url = getMainApplet().getCodeBase();
    String protocol = url.getProtocol();
    String host = url.getHost();
    String file = url.getFile();
    file = file.concat("images\\weblogo.gif");
    URL imageURL = new URL(protocol,host,file);
    Image weblogoImage = Toolkit.getDefaultToolkit().getImage(imageURL);
    imagePanel = new ImagePanel(weblogoImage);
    //imagePanel.setBounds(7,2,101,47);
    imagePanel.setBounds(4,1,101,47);
    add(imagePanel);
    Some how it works fine with MS JVM but when we use sun jre..logo doent come..no error shown on console...
    Any one has any idea...
    thanks in advance..
    Anand
    Message was edited by:
    anand8030

    I also have same problem with my WinXP-SP1 and I also had removed MSJVM through the Microsoft utility. Since then I am having problems using Java based sites. To solve this problem I upgraded my JRE from 1.4.1_xx to 1.4.2_04, now the problem is completly different. I am prompted to download Java Virtual Machine which opens a page from Microsoft web site saying that you need MSJVM but then that site works fine, I can use Java applets in that site. If I refuse to download the Java Virtual Machine (which just opens the Microsoft page) then it does not work. Only problem is I am prompted to download Java Virtual Machine and I have to click on Download button.
    I have done everything to solve this problem unistalled JRE..restart..installing JRE...restart..and then checked http://www.java.com/en/download/help/testvm.jsp but problem is still same.
    I am highly frusteated with this. I think there are thousands of users who have same problem and Sun should have taken some initiative to solve this problem for Microsoft is not going to do anything in this regard. I seach Google and various forums and found tens of same problem with unresolved queries. Or Sun has taken any initiative in this regard.
    JRE is working fine in my Firefox browser.
    Thanks

  • Update JRE 1.4.2_08  to JDK 1.5.0_11 get "Time Out 61" Error on MI Client

    Hi,
    we have updated our System to SPS 14 (MW+BE) to make our clients vista ready. I have create a new setup package and updated the Java version of the client to jdk 1.5.0_11. After Starting the client I get the "Time Out 61 Error". The Startup Output seems to be good, all variables are set. And I dont know what to do.
    Her is the Output from the Startup.bat
    If anyone have a clou that can help me, makes me very glad.
    C:\Program Files\SAP\MobileInfrastructure>startup.bat
    C:\Program Files\SAP\MobileInfrastructure>SET JAVA_HOME=1
    C:\Program Files\SAP\MobileInfrastructure>REM SET JAVA_HOME=
    C:\Program Files\SAP\MobileInfrastructure>REM SET ME_HOME=
    C:\Program Files\SAP\MobileInfrastructure>REM SET JAVA_EXE=
    C:\Program Files\SAP\MobileInfrastructure>REM SET JAVA_OPTIONS=-mx256m
    C:\Program Files\SAP\MobileInfrastructure>SET _OLDCP=
    C:\Program Files\SAP\MobileInfrastructure>set _MEJARS=
    C:\Program Files\SAP\MobileInfrastructure>copy /b "C:\Program Files\SAP\MobileIn
    frastructure\SetMejar.txt" + "C:\Program Files\SAP\MobileInfrastructure\listOfJa
    rs.txt" "C:\Program Files\SAP\MobileInfrastructure\setMeJar.bat"
    C:\Program Files\SAP\MobileInfrastructure\SetMejar.txt
    C:\Program Files\SAP\MobileInfrastructure\listOfJars.txt
            1 file(s) copied.
    C:\Program Files\SAP\MobileInfrastructure>call "C:\Program Files\SAP\MobileInfra
    structure\setMeJar.bat"
    C:\Program Files\SAP\MobileInfrastructure>SET _MEJARS=C:\Program Files\SAP\Mobil
    eInfrastructure\lib\db2ejdbc.jar;C:\Program Files\SAP\MobileInfrastructure\lib\c
    rimson.jar;C:\Program Files\SAP\MobileInfrastructure\lib\jasper.jar;C:\Program F
    iles\SAP\MobileInfrastructure\lib\jaxp.jar;C:\Program Files\SAP\MobileInfrastruc
    ture\lib\MEg.jar;C:\Program Files\SAP\MobileInfrastructure\lib\pinstall.jar;C:\P
    rogram Files\SAP\MobileInfrastructure\lib\servlet.jar;C:\Program Files\SAP\Mobil
    eInfrastructure\lib\system\jdk13\iaik_javax_crypto.jar;C:\Program Files\SAP\Mobi
    leInfrastructure\lib\system\jdk13\iaik_jce.jar;C:\Program Files\SAP\MobileInfras
    tructure\lib\system\jdk14\iaik_jce.jar;C:\Program Files\SAP\MobileInfrastructure
    \lib\system\xalan.jar;C:\Program Files\SAP\MobileInfrastructure\lib\webserver.ja
    r;
    C:\Program Files\SAP\MobileInfrastructure>set _SSLJARS=
    C:\Program Files\SAP\MobileInfrastructure>if exist "C:\Program Files\SAP\MobileI
    nfrastructure\lib\jsse.jar" set _SSLJARS=C:\Program Files\SAP\MobileInfrastructu
    re\lib\jsse.jar
    C:\Program Files\SAP\MobileInfrastructure>if exist "C:\Program Files\SAP\MobileI
    nfrastructure\lib\jcert.jar" set _SSLJARS=;C:\Program Files\SAP\MobileInfrastruc
    ture\lib\jcert.jar
    C:\Program Files\SAP\MobileInfrastructure>if exist "C:\Program Files\SAP\MobileI
    nfrastructure\lib\jnet.jar" set _SSLJARS=;C:\Program Files\SAP\MobileInfrastruct
    ure\lib\jnet.jar
    C:\Program Files\SAP\MobileInfrastructure>set _IAKJARS=
    C:\Program Files\SAP\MobileInfrastructure>if exist "C:\Program Files\SAP\MobileI
    nfrastructure\lib\system\jdk13\iaik_jce.jar" set _IAKJARS=C:\Program Files\SAP\M
    obileInfrastructure\lib\system\jdk13\iaik_jce.jar
    C:\Program Files\SAP\MobileInfrastructure>if exist "C:\Program Files\SAP\MobileI
    nfrastructure\lib\system\jdk13\iaik_javax_crypto.jar" set _IAKJARS=C:\Program Fi
    les\SAP\MobileInfrastructure\lib\system\jdk13\iaik_jce.jar;C:\Program Files\SAP\
    MobileInfrastructure\lib\system\jdk13\iaik_javax_crypto.jar
    C:\Program Files\SAP\MobileInfrastructure>set CLASSPATH=C:\Program Files\SAP\Mob
    ileInfrastructure\lib\db2ejdbc.jar;C:\Program Files\SAP\MobileInfrastructure\lib
    \crimson.jar;C:\Program Files\SAP\MobileInfrastructure\lib\jasper.jar;C:\Program
    Files\SAP\MobileInfrastructure\lib\jaxp.jar;C:\Program Files\SAP\MobileInfrastr
    ucture\lib\MEg.jar;C:\Program Files\SAP\MobileInfrastructure\lib\pinstall.jar;C:
    \Program Files\SAP\MobileInfrastructure\lib\servlet.jar;C:\Program Files\SAP\Mob
    ileInfrastructure\lib\system\jdk13\iaik_javax_crypto.jar;C:\Program Files\SAP\Mo
    bileInfrastructure\lib\system\jdk13\iaik_jce.jar;C:\Program Files\SAP\MobileInfr
    astructure\lib\system\jdk14\iaik_jce.jar;C:\Program Files\SAP\MobileInfrastructu
    re\lib\system\xalan.jar;C:\Program Files\SAP\MobileInfrastructure\lib\webserver.
    jar;;;;C:\Program Files\SAP\MobileInfrastructure\lib\system\jdk13\iaik_jce.jar;C
    :\Program Files\SAP\MobileInfrastructure\lib\system\jdk13\iaik_javax_crypto.jar;
    1\lib\tools.jar
    C:\Program Files\SAP\MobileInfrastructure>echo Using CLASSPATH: C:\Program Files
    \SAP\MobileInfrastructure\lib\db2ejdbc.jar;C:\Program Files\SAP\MobileInfrastruc
    ture\lib\crimson.jar;C:\Program Files\SAP\MobileInfrastructure\lib\jasper.jar;C:
    \Program Files\SAP\MobileInfrastructure\lib\jaxp.jar;C:\Program Files\SAP\Mobile
    Infrastructure\lib\MEg.jar;C:\Program Files\SAP\MobileInfrastructure\lib\pinstal
    l.jar;C:\Program Files\SAP\MobileInfrastructure\lib\servlet.jar;C:\Program Files
    \SAP\MobileInfrastructure\lib\system\jdk13\iaik_javax_crypto.jar;C:\Program File
    s\SAP\MobileInfrastructure\lib\system\jdk13\iaik_jce.jar;C:\Program Files\SAP\Mo
    bileInfrastructure\lib\system\jdk14\iaik_jce.jar;C:\Program Files\SAP\MobileInfr
    astructure\lib\system\xalan.jar;C:\Program Files\SAP\MobileInfrastructure\lib\we
    bserver.jar;;;;C:\Program Files\SAP\MobileInfrastructure\lib\system\jdk13\iaik_j
    ce.jar;C:\Program Files\SAP\MobileInfrastructure\lib\system\jdk13\iaik_javax_cry
    pto.jar;1\lib\tools.jar
    Using CLASSPATH: C:\Program Files\SAP\MobileInfrastructure\lib\db2ejdbc.jar;C:\P
    rogram Files\SAP\MobileInfrastructure\lib\crimson.jar;C:\Program Files\SAP\Mobil
    eInfrastructure\lib\jasper.jar;C:\Program Files\SAP\MobileInfrastructure\lib\jax
    p.jar;C:\Program Files\SAP\MobileInfrastructure\lib\MEg.jar;C:\Program Files\SAP
    \MobileInfrastructure\lib\pinstall.jar;C:\Program Files\SAP\MobileInfrastructure
    \lib\servlet.jar;C:\Program Files\SAP\MobileInfrastructure\lib\system\jdk13\iaik
    javaxcrypto.jar;C:\Program Files\SAP\MobileInfrastructure\lib\system\jdk13\iai
    k_jce.jar;C:\Program Files\SAP\MobileInfrastructure\lib\system\jdk14\iaik_jce.ja
    r;C:\Program Files\SAP\MobileInfrastructure\lib\system\xalan.jar;C:\Program File
    s\SAP\MobileInfrastructure\lib\webserver.jar;;;;C:\Program Files\SAP\MobileInfra
    structure\lib\system\jdk13\iaik_jce.jar;C:\Program Files\SAP\MobileInfrastructur
    e\lib\system\jdk13\iaik_javax_crypto.jar;1\lib\tools.jar
    C:\Program Files\SAP\MobileInfrastructure>SET PATH=C:\WINDOWS\system32;C:\WINDOW
    S;C:\WINDOWS\System32\Wbem;c:\Program Files\IBM\Client Access\Emulator\;c:\Progr
    am Files\IBM\Client Access\Shared\;c:\Program Files\IBM\Client Access\;C:\Progra
    m Files\Windows Imaging\;C:\Program Files\Java\jdk1.5.0_11\bin;C:\Program Files\
    SAP\MobileInfrastructure/bin/DB2e/
    C:\Program Files\SAP\MobileInfrastructure>"C:\Program Files\Java\1.5.0_11\bin\ja
    va.exe"  -DSERVER_IMPL="com.sap.tc.webdynpro.serverimpl.me.MEServerImplementatio
    n" -Duse.repository=noDB com.sap.ip.me.core.Startup "-home:C:\Program Files\SAP\
    MobileInfrastructure"
    The system cannot find the path specified.
    C:\Program Files\SAP\MobileInfrastructure>SET CLASSPATH=
    C:\Program Files\SAP\MobileInfrastructure>

    Hi,
    Note 1086971
    To install and launch MI Client on Windows Vista OS, install SUN JDK/JRE 1.5 Update 11 and higher.  This is because only this version of SUN J2SE supports Windows Vista OS.  For details please refer to http://java.sun.com/j2se/1.5.0/system-configurations.html.
    I think I have to install this version of Java.
    Regards Maik

  • Acrobat v9 and the bundling of an OLDER SUN JRE that is vulnerable to exploitation!

    C:\Program Files\Adobe\Acrobat 9.0\Designer 8.2\jre\bin\java.exe
    "This installation of Sun Java JRE 1.5.x / 5.x is insecure and potentially exposes your
    system to security threats!
    The detected version installed on your system is 5.0.110.3, however, the latest secure
    version released by the vendor, fixing one or more vulnerabilities, is 5.0.160.2.
    Update Instructions:
    Update to 5.0 Update 16 or later."
    Reference:
    http://secunia.com/advisories/31010/
    OK. How can I mitigate this vulnerability ?
    Dave
    http://www.claymania.com/removal-trojan-adware.html
    Multi-AV - http://www.pctipp.ch/downloads/dl/35905.asp

    From: <[email protected]><br /><br />| C:\Program Files\Adobe\Acrobat 9.0\Designer 8.2\jre\bin\java.exe<br /><br />| "This installation of Sun Java JRE 1.5.x / 5.x is insecure and potentially exposes your<br />| system to security threats!<br /><br />| The detected version installed on your system is 5.0.110.3, however, the latest secure<br />| version released by the vendor, fixing one or more vulnerabilities, is 5.0.160.2.<br /><br />| Update Instructions:<br />| Update to 5.0 Update 16 or later."<br /><br />| Reference:<br />| http://secunia.com/advisories/31010/<br /><br />| OK.  How can I mitigate this vulnerability ?<br /><br />BTW:<br /><br />I have Sun JRE v6 update 7.<br /><br />Can Can Adobe Designer be re-directed to use this version and NOT use a bundled version ?<br /><br /><br />-- <br />Dave<br />http://www.claymania.com/removal-trojan-adware.html<br />Multi-AV - http://www.pctipp.ch/downloads/dl/35905.asp

  • SUN jre 1.6.0_04 under Forms 10.1.2.3 and IE7

    Hello,
    I get nuts about the SUN jre configuration in relation with IE7 (client side) and running under the Application Server 10.1.2.3 (server side).
    My problem is that I want to use JRE 1.6.0_04 on IE7 for Oracle Forms at the client side. On the test client is also installed: JRE 1.6.0_05 and JRE 1.6.0_07.
    Here is my formsweb.cfg configuration to it:
    [testapp]
    width=1024
    height=768
    separateFrame=True
    lookandfeel=Generic
    form=test.fmx
    otherparams=term=X:\as1012\forms\fmrpcwebd.res
    WebUtilArchive=/forms/webutil/frmwebutil.jar,/forms/webutil/webutil.jar,/forms/webutil/jacob.jar
    WebUtilLogging=off
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    WebUtilDispatchMonitorInterval=5
    WebUtilTrustInternal=true
    WebUtilMaxTransferSize=16384
    baseHTMLjinitiator=X:\as1012\forms\webutil\server\webutiljpi.htm
    baseHTMLjpi=X:\as1012\forms\webutil\server\webutiljpi.htm
    baseHTML=X:\as1012\forms\webutil\server\webutilbase.htm
    archive_jini=frmall_jinit.jar
    archive=frmall.jar,jacob.jar,webutil.jar
    lookAndFeel=oracle
    jpi_download_page=http://java.sun.com
    jpi_classid=clsid:CAFEEFAC-0016-0000-0004-ABCDEFFEDCBA
    jpi_codebase=http://server:7777/forms/webutil/jre-6u4-windows-i586-p.exe
    jpi_mimetype=application/x-java-applet;jpi-version=1.6.0_04
    jpi_download_page=http://server:7777/forms/webutil/jre-6u4-windows-i586-p.exe
    IE=native
    I tried it under Firefox 3.0 where the version JRE 1.6.0_07 is installed. With the upper showed configuration it didn't worked. Only if I change this entry jpi_mimetype=application/x-java-applet;jpi-version=1.6.0_07.
    Result: Firefox works correct.
    But the IE always starts the application with the SUN client: JRE 1.6.0_07
    I don't know what to do? I also changed the registry entry:
    [HKEY_CURRENT_USER\Software\JavaSoft\Java Update\Policy]
    and put this value in:
    "EnableSecureStaticVersioning"=dword:00000000
    Maybe somebody else knows what to do?
    Thanks ahead
    tarnhold

    What I noticed earlier this year was
    you can force Forms to use JRE 1.5 even though you have JRE 1.6 installed, but it will always pick the newest patch installed.
    So, if you want to use JRE 1.5 and have JRE 1.5.06 and 1.5.12 installed, the only way to use 1.5.06 is to uninstall 1.5.12
    But, if you read note 14 on the vertification matrix, newer patches of a certified major version, are also supported :)
    http://www.oracle.com/technology/products/forms/htdocs/10gR2/clientsod_forms10gR2.html
    Max

  • Using the Sun JRE

    Hi.  We currently force the use for Java 6, version 22 by placing this code in the formsweb.cfg file:
    [code]
    ### Define the default SUN JRE
    ### Java Plug-in 6 22
    jpi_download_page=http://java.sun.com/javase/downloads/
    ### Parameter related to the version of the Java Plugin
    jpi_classid=clsid:CAFEEFAC-0016-0000-0022-ABCDEFFEDCBA
    ### Parameter related to the version of the Java Plugin
    jpi_codebase=http://java.sun.com/update/1.6.0/jinstall-6u22-windows-i586.cab#Version=1,6,0,22
    ### Parameter related to the version of the Java Plugin
    jpi_mimetype=application/x-java-applet;jpi-version=1.6.0_22
    [code]
    If I want to change this confirguration so that users always use the latest version of the Sun JRE, how would I modify this code?
    Any help would be greatly appreciated.  Thanks.

    sharpe wrote:
    Hi.  Thank you so much!
    Is there a reason I would want to let users use any version of Java 1.6, but not Java 1.7?  Is it not possible to use the same logic, but to allow the users to use any version of Java 1.7?  Or is it unwise for some reason?
    I'm just curious because sometimes my users are automatically prompted to install the latest version of Java, which is version 7, update 45 (I believe).  And when they do that installation then our Web Form applications start to prompt them that they need to install the correct version of the plug-in.  So I uninstall version 7, update 45 and Web Forms is fine again.  Any thoughts on the best way to be handling the Java plug-ins?
    Hello Sharpe,
    Good Day. From your post we don't know what is your application server version. guess 10.x.x.x.x as you are talking about JRE 1.6.
    JRE 1.7 is not compatible with AS 10.x.x.x.
    So, if your user wish to install JRE 1.7, make sure JRE 1.6 also installed in the same pc. Now what can you do ? Yes. you can restrict a web browser to run only selected Java plugins not other one. You can manage this from Add-Ons manage settings.
    This restrict user, use specific browser for you application.
    Hope this helps
    Hamid

  • MSJVM: plugin seems to be overridden by Sun JRE?

    We have 1.5.0_06 installed and for old applications sometimes 1.4.2_10 is deployed (securestaticversioning disabled). On production environments it appears that the MSJVM can't be detected when 1.4.2_10 or 1.5.0_06 is installed. Disabling it in IE6 does the trick (where the MSJVM already was enabled).
    How come?! As far as I know and googled, applications or sites only can request one version of the Sun JRE (through classid), but is there no way to specifically call on the MSJVM?
    If the Sun JRE's are removed, the applications work alright. Has anyone an idea on how it is decided to which JRE/MSJVM will handle the request?
    On our testing machines with the same software all websites work fine, but if we remove the MSJVM (removal tool from the MS site, clear the specific registry hives) it appears we get errors that the JVM can't be detected?!
    Does IE6 first try to adress the MSJVM, and if other JRE's are detected then tries those?

    The MS JVM was last updated in 2003 and has some rather well-known exploits. It is a major security hole waiting to be exploited. Find a way to remove it from all your machines. Note that if you merely disable it using policies, it may interfere with the function of the Sun Java plug-in.

  • There is a copy/paste problem with SUN JRE in the application.

    Hi All,
    The application is desinged and developed in Lotus Notes and contains a Rich Text field , its a web based application and loads with SUN JRE for the applet to gets load in the application. Whenever i tries to do copy/paste from Microsoft word document to rich text field in the application i get a text which is parsed with html tags which doesn't come while i loads MS JVM on the browser.
    I tried with SUN JRE 1.5 and 1.6 version , i got the parsingproblem ie text mixed with html and xml tags.
    Any help is appreciated!!.
    Thanks
    Muktesh.

    Hi,
    When we right-click a word that is marked with red or blue underline, it will pop up the suggested corrections context menu. It can give you other options, such as adding the word to your custom dictionary depending on the Microsoft Office program that you
    are using.
    If you want to copy such words, you can use Ctrl + C and Ctrl + V to achieve the goal. Or, we can right-click the word and then select
    Ignore All or Add to Dictionary, and then you can copy the word by right-clicking it. 
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Installing Sun Studio 11 on Gentoo linux?

    I have been having problems attempting to install Sun Studio 11 on Gentoo. I emerge'd "alien", with the hope that I could trick the installation program into using it, but that doesn't work. I get all kinds of java errors (I am using sun-jre-bin 1.5 update 3).
    Is there a way to actually get these various and sundry .rpm packages on the system? There seem to be an awful lot of them.
    Thanks!

    hi guys, i posted in another topic, i m sorry for that.
    I followed your advice, bhut nothing helped.
    Now, it still does not work: Failed installation
    Here s the log:
    Installing Sun Studio Software
            Log file: /var/opt/sun/install/logs/Sun_Studio_Software_install.B10241137
    Installed: /var/prod/com.sun.studio_11/uninstall_Sun_Studio_Software.class
    Uninstaller is at: /var/prod/com.sun.studio_11/uninstall_Sun_Studio_Software.class
    Standalone Tools: Building Software
    Installing RPM: sun-dmake-11.0-1
    error: Failed dependencies:
            /opt/sun/sunstudio11/bin is needed by sun-dmake-11.0-1.i386
            /opt/sun/sunstudio11/inventory/v15n1 is needed by sun-dmake-11.0-1.i386
            /opt/sun/sunstudio11/lib is needed by sun-dmake-11.0-1.i386
            /opt/sun/sunstudio11 is needed by sun-dmake-11.0-1.i386
    Error: RPM sun-dmake-11.0-1 install failed}.
    Install complete. Package: sun-dmake-11.0-1
    rpm: Skipping rpm remove of sun-mrdmk-locale-zh-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-mrdmk-locale-ja-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-mrdmk-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-dmake-locale-zh-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-dmake-locale-ja-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-dmake-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-updck-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-pnsn-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-prfgn-locale-zh-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-prfgn-locale-ja-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-prfgn-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-mrpgn-locale-zh-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-mrpgn-locale-ja-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-mrpgn-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-mrdwf-locale-zh-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-mrdwf-locale-ja-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-mrdwf-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-dwrfb-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-mrpan-locale-zh-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-mrpan-locale-ja-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-mrpan-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-prflx-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-prflb-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-prfax-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-prfan-locale-zh-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-prfan-locale-ja-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-prfan-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-updck-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-pnsn-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-mrdbx-locale-zh-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-mrdbx-locale-ja-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-mrdbx-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-jdbxx-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-jdbx-locale-zh-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-jdbx-locale-ja-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-jdbx-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-dbxx-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-dbx-locale-zh-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-dbx-locale-ja-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-dbx-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-dbxx-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-dbx-locale-zh-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-dbx-locale-ja-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-dbx-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-mrxm-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-xmsrc-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-xmshr-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-xmbin-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-gvim-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-mrxd-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-fdxd-11.0-1, not installed.
    rpm: Skipping rpm remove of openmotif-2.1.31-3_IST, not installed.
    rpm: Skipping rpm remove of sun-exted-locale-zh-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-exted-locale-ja-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-exted-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-nbcpp-locale-zh-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-nbcpp-locale-ja-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-nbcpp-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-nbide-locale-zh-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-nbide-locale-ja-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-nbide-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-mrlnx-locale-zh-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-mrlnx-locale-ja-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-mrlnx-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-mride-locale-zh-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-mride-locale-ja-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-mride-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-nbreg-locale-zh-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-nbreg-locale-ja-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-nbreg-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-idext-locale-zh-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-idext-locale-ja-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-idext-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-xdplg-locale-zh-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-xdplg-locale-ja-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-xdplg-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-svc-locale-zh-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-svc-locale-ja-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-svc-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-dbxui-locale-zh-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-dbxui-locale-ja-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-dbxui-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-tdemo-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-mrdmk-locale-zh-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-mrdmk-locale-ja-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-mrdmk-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-dmake-locale-zh-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-dmake-locale-ja-11.0-1, not installed.
    rpm: Skipping rpm remove of sun-dmake-11.0-1, not installed.

  • SUN JRE 1.5.0 update. messagebox poppup trubble

    After the installation of SUN JRE 1.5.0 a message popped-up from system tray saying an update is available for download.
    How can i disable the messagebox / autoupdate function?
    My company can not have this popup on every 5000 pc. Our helpdesk is going to be overloaded with questions what to do with the popup.
    just following this example below doesn't help because the poppup message still shows every time you visit a site using java JRE.
    http://java.com/en/download/help/5000020700.xml#auto_update
    I have recognize that it only shows if you have local administrator rights. don't know if that make any difference to the problem.
    please help me out on this. I have tried deleting registry keys and changing values but it keeps popping up

    We have found that after install of JRE 1.5.0, this registry value is prompting a popup question if you are local administrator on the machine.
    "PromptAutoUpdateCheck"=dword:00000001
    to get rid of the popup, this whole value should be removed!
    that's what happens if you chose to answer no in the popup question
    case closed! :)

  • Why is Acorbat v9 bundled with Sun JRE v5 update 11 ?

    Why is Acorbat v9 bundled with Sun JRE v5 update 11 ?
    V5 update 16 is the latest in that family and v5 update 11 has several vulnerablities that
    can be exploited. So why is that version bundled with a NEW product like Acrobat
    Professional v9 and how can the vulnerabilities be mitigtaed.
    This is NOT good for a entterprise environemnt that has to comply with Information
    Assurance (IA) compliance.
    Dave

    From: <[email protected]><br /><br />| This is a USER TO USER forum, not Adobe support, so you will need to contact Adobe or<br />| Sun to find out why one product is bundled with the other<br /><br />| In the US - Adobe General support 800-833-6687<br />| In the US - Adobe Install Problems 800-642-3623<br /><br />| I don't have any #'s for Sun<br /><br />Done.  I called them and the technician was surprised at the information that was provided <br />and Adobe issued me a Case Number.<br /><br />BTW:  Anyone can verify this vulnerability concept by opening a Command Prompt and <br />entering...<br /><br />"C:\Program Files\Adobe\Acrobat 9.0\Designer 8.2\jre\bin\java.exe" -version<br /><br />And then reading the Secunia bulletin.<br />http://secunia.com/advisories/31010/<br /><br />-- <br />Dave

Maybe you are looking for