Where is java40.jar

I checked the forum and one of the messages said to download netscape the to get it out of there. I downloaded netscape about two weeks ago and couldn't find any java40.jar in its directory structure. Does anyone know where I can download this. Or even better, does anyone know a good way to do applet to javascript communication. I've looked at the LiveConnect and that will work, but I am open to different options if anyone has any, thanks
silastad

Answer to my own question:
I had to download an old version of Netscape and it here is where it was located:
..\Netscape\Communicator\Program\java\classes\java40.jar

Similar Messages

  • Can't find 'java40.jar'

    I am currently experiencing difficulties trying to get Java applets working on Netscape 4.7 running on a Solaris 2.4. Each time I visit a web page which has Java applets within it I am given a message which reads: Unable to start a java applet: Cant find 'java40.jar' in your CLASSPATH. Read the release notes and install 'java40.jar' properly before restarting.
    I have managerd to locate the java40.jar file within the /opt/netscape/java/classes directory, hence I set the CLASSPATH variable to /opt/netscape/java/classes/java40.jar within the .profile file. Unfortunately this still displays the message mentioned above and does not execute Java applets. My feeling is that CLASSPATH is set in some other configuration file and unless it is set on this file (which I dont know about) it cannot be overridden.
    Please advise me.
    Thanks

    Try setting the env variable MOZILLA_HOME to the directory where you have installed the Netscape Communicator binaries on.
    Also, do not forget to include the full path of the java40.jar file into the CLASSPATH env settings.
    That should do the trick.

  • Where is the jar for me to import?

    import javax.servlet.http.*; <--- showing error
    import kr.pe.okjsp.util.*;
    import com.oreilly.servlet.MultipartRequest;
    public class WriteServlet extends HttpServlet {  <--- showing error
    long long time ago, there was
    server.jar
    but in java 5.0, where is the jar for me to import?
    It would be really appreciated. Do I have to download j2ee for this?
    My memory is fuzzy...
    Thanks -

    Yes, it is part of EE not SE. Or you can get it/them from your application server's lib dir (which may or may not be a better choice).

  • Where is the jar file contain this package

    Dear Everybody
    Could you tell me where is the .jar file that contain this package
    oracle.security.idm
    Thanks for your help

    Hi,
    check jdeveloper_home\jdeveloper_10133_<version>\jlib\identitystore.jar
    Frank

  • Where is the .jar file that contain this package oracle.security.idm

    Dear Everybody
    Could you tell me where is the .jar file that contain this package
    oracle.security.idm
    Thanks for your help

    Hi,
    check jdeveloper_home\jdeveloper_10133_<version>\jlib\identitystore.jar
    Frank

  • JSSE in J2SDK 1.4..2: wher is jcert.jar?

    I upgraded to JDK 1.4 and there it says that JSSE is now integrated in the JDK (http://java.sun.com/j2se/1.4.1/docs/guide/security/jsse/JSSERefGuide.html#WhatsNew). but where is jcert.jar? the jdk 1.4 directory only has jce.jar and jsse.jar. and if i just add these two jars in my classpath, my formerly working code now throws this exception:
    java.security.NoSuchAlgorithmException: Algorithm Blowfish not available
         at javax.crypto.SunJCE_b.a(DashoA6275)
         at javax.crypto.KeyGenerator.getInstance(DashoA6275)if i add jcert.jar from the separate (old) JSSE package, it works. so, jcert.jar is missing in the new JDK 1.4?

    The Ciphers are in the jce.jar (which you found). Blowfish is available, at least in my installation of 1.4.2. Here's the list of Stuff the JCE provides out of the box:Provider 4 : SunJCE SunJCE Provider (implements DES, Triple DES, AES, Blowfish, PBE, Diffie-Hellman, HMAC-MD5, HMAC-SHA1) :
    Alg.Alias.AlgorithmParameterGenerator.DH: DiffieHellman
    Alg.Alias.AlgorithmParameters.DH: DiffieHellman
    Alg.Alias.AlgorithmParameters.PBEWithMD5AndDES: PBE
    Alg.Alias.AlgorithmParameters.PBEWithMD5AndTripleDES: PBE
    Alg.Alias.AlgorithmParameters.Rijndael: AES
    Alg.Alias.AlgorithmParameters.TripleDES: DESede
    Alg.Alias.Cipher.Rijndael: AES
    Alg.Alias.Cipher.TripleDES: DESede
    Alg.Alias.KeyAgreement.DH: DiffieHellman
    Alg.Alias.KeyFactory.DH: DiffieHellman
    Alg.Alias.KeyGenerator.Rijndael: AES
    Alg.Alias.KeyGenerator.TripleDES: DESede
    Alg.Alias.KeyPairGenerator.DH: DiffieHellman
    Alg.Alias.SecretKeyFactory.PBEWithMD5AndTripleDES: PBEWithMD5AndDES
    Alg.Alias.SecretKeyFactory.TripleDES: DESede
    AlgorithmParameterGenerator.DiffieHellman: com.sun.crypto.provider.DHParameterGenerator
    AlgorithmParameters.AES: com.sun.crypto.provider.AESParameters
    AlgorithmParameters.Blowfish: com.sun.crypto.provider.BlowfishParameters
    AlgorithmParameters.DES: com.sun.crypto.provider.DESParameters
    AlgorithmParameters.DESede: com.sun.crypto.provider.DESedeParameters
    AlgorithmParameters.DiffieHellman: com.sun.crypto.provider.DHParameters
    AlgorithmParameters.PBE: com.sun.crypto.provider.PBEParameters
    Cipher.AES: com.sun.crypto.provider.AESCipher
    Cipher.Blowfish: com.sun.crypto.provider.BlowfishCipher
    Cipher.DES: com.sun.crypto.provider.DESCipher
    Cipher.DESede: com.sun.crypto.provider.DESedeCipher
    Cipher.PBEWithMD5AndDES: com.sun.crypto.provider.PBEWithMD5AndDESCipher
    Cipher.PBEWithMD5AndTripleDES: com.sun.crypto.provider.PBEWithMD5AndTripleDESCipher
    KeyAgreement.DiffieHellman: com.sun.crypto.provider.DHKeyAgreement
    KeyFactory.DiffieHellman: com.sun.crypto.provider.DHKeyFactory
    KeyGenerator.AES: com.sun.crypto.provider.AESKeyGenerator
    KeyGenerator.Blowfish: com.sun.crypto.provider.BlowfishKeyGenerator
    KeyGenerator.DES: com.sun.crypto.provider.DESKeyGenerator
    KeyGenerator.DESede: com.sun.crypto.provider.DESedeKeyGenerator
    KeyGenerator.HmacMD5: com.sun.crypto.provider.HmacMD5KeyGenerator
    KeyGenerator.HmacSHA1: com.sun.crypto.provider.HmacSHA1KeyGenerator
    KeyPairGenerator.DiffieHellman: com.sun.crypto.provider.DHKeyPairGenerator
    KeyStore.JCEKS: com.sun.crypto.provider.JceKeyStore
    Mac.HmacMD5: com.sun.crypto.provider.HmacMD5
    Mac.HmacSHA1: com.sun.crypto.provider.HmacSHA1
    SecretKeyFactory.DES: com.sun.crypto.provider.DESKeyFactory
    SecretKeyFactory.DESede: com.sun.crypto.provider.DESedeKeyFactory
    SecretKeyFactory.PBEWithMD5AndDES: com.sun.crypto.provider.PBEKeyFactoryI'm confused about why you think you need to add those jars to your CLASSPATH. They should get picked up automagically, by virtue of where they live relative to where java lives.
    Grant

  • Org.apache.catalina.servlets.DefaultServlet??!! Where is the jar?

    Hello,
    My server keeps doing errors like,
    HTTP Status 404 - Servlet default is not available
    type Status report
    message Servlet default is not available
    description The requested resource (Servlet default is not available) is not available.
    Apache Tomcat/5.5.9
    Would you let me know what wrong with Defaultservlet. I set it up with
    <servlet>
    <servlet-name>default</servlet-name>
    <servlet-class>org.apache.catalina.servlets.DefaultServlet</servlet-class>
    <init-param>
    <param-name>debug</param-name>
    <param-value>0</param-value>
    </init-param>
    <init-param>
    <param-name>listings</param-name>
    <param-value>true</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>
    But it doesnt work. Pls help me. Where is the jar with Defaultservlet.
    Thanks,
    Tony

    Thanks!
    Would you let me know how to set it up. I know it should be working by default. However, I tried times with reinstallation. Still nothing comes out. This is my servlet mapping within web.xml
    <servlet>
    <servlet-name>default</servlet-name>
    <servlet-class>org.apache.catalina.servlets.DefaultServlet</servlet-class>
    <init-param>
    <param-name>debug</param-name>
    <param-value>0</param-value>
    </init-param>
    <init-param>
    <param-name>listings</param-name>
    <param-value>true</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>default</servlet-name>
    <url-pattern>/</url-pattern>
    </servlet-mapping>
    Tony

  • Where is servlet.jar?

    Dear Forum,
    I try to develop custom tag library under JDeveloper 9.0.3.2 (build 1145). When I create tld file and try to add a tag by clicking the right mouse button no popup window apears.
    When i try to compile my old custom tag java classes classes from package javax.servlet.jsp.tagext can not be accesses though JSP Runtime and Servlet Runtime libraries are included in project's classpath.
    The Servlet Runtime libraray has servlet.jar entry in [JDevHome]\j2ee\home\lib directory though no servjet.jar file can be not even in that library but also in all subdirectories of [JDevHome]
    Where is servlet.jar?
    Oh please, make it apear :)
    Than You in advance.
    Justinas

    Look under common/lib in the %CATALINA_HOME% (%TOMCAT_HOME%).
    Also the servlet classes can be in the j2ee.jar file.

  • Where is jdpa.jar?

    On
    http://java.sun.com/products/jpda/faq.html#QG0B
    it says "JPDA is integrated in in J2SE SDK 1.3 - the source of the entire J2SE SDK 1.3 (including JPDA),"
    I have downloaded both sdk 1.3 and sdk 1.4 - but there is no jdpa.jar there. (Or activation.jar for that matter; both are needed to run jdi (java debug interface))
    So, where are these jar files?
    Furthermore, jdi needs/is packages com.sun.jdi, com.sun.jdi.connect, com.sun.jdi.event and (at least?) com.sun.jdi.request but when browsing the javadoc for the sdks I can NOT find those packages there!
    This is EXTREMELY confusing - why indicate that jdpa is included in sdk when needed packages are not there? Can anyone out there explain this?
    Anyone knows?

    On
    http://java.sun.com/products/jpda/faq.html#QG0B
    it says "JPDA is integrated in in J2SE SDK 1.3 - the
    source of the entire J2SE SDK 1.3 (including JPDA),"
    I have downloaded both sdk 1.3 and sdk 1.4 - but there
    is no jdpa.jar there.
    So, where are these jar files?
    Furthermore, jdi needs/is packages com.sun.jdi,
    com.sun.jdi.connect, com.sun.jdi.event and (at least?)
    com.sun.jdi.request(I think you mean "jpda.jar"...)
    In 1.3.x and 1.4.x, all of the classes that
    were formerly in jpda.jar were moved to tools.jar.
    When running your JDI client, make sure $JAVA_HOME/lib/tools.jar
    is on your classpath.
    but when browsing the javadoc for
    the sdks I can NOT find those packages there!For more information on JPDA, refer to:
    JavaTM Platform Debugger Architecture Documentation
    http://java.sun.com/products/jpda/doc/
    In 1.4.x, look here for javadoc on the JDI APIs:
    http://java.sun.com/j2se/1.4.1/docs/guide/jpda/jdi/index.html
    (Or activation.jar for that
    matter; both are needed to run jdi (java debug
    interface))activation.jar is not used by JDI. Is there some other part of
    your client app that is using it? (For example, the JavaMailTM API
    requires the Activation Framework):
    JavaMailTM API
    http://java.sun.com/products/javamail/
    If so, look here for the latest release:
    JAVABEANSTM ACTIVATION FRAMEWORK (JAF)
    http://java.sun.com/products/javabeans/glasgow/jaf.html

  • Where are the jar files downloaded.

    When I run a javafx sample, the first time, it downloads so many jarfiles to a particular place on my box. When I run another sample, it downloads some other jar files, and I can bet some of the jar files downloaded by the previous sample are also downloaded by this sample, I am just thinking, if there is a central place where all downloads go to, then can we have an app check in that folder to see if a jar file is present before downloading it again??
    sa

    trinisoftinc wrote:
    When I run a javafx sample, the first time, it downloads so many jarfiles to a particular place on my box. When I run another sample, it downloads some other jar files, and I can bet some of the jar files downloaded by the previous sample are also downloaded by this sample, I am just thinking, if there is a central place where all downloads go to, then can we have an app check in that folder to see if a jar file is present before downloading it again??
    saHey trinisoftinc - I recommend you go investigate java webstart (jnlp). This behavior should not unique to JavaFX applications packed into jnlp but Java as well. I believe it's quite complex and I think Sun have done the right thing here. Duplication is better than potential inconsistencies between supposedly 'identical' jar's. Also, who really sign's jar's anyway.... not many... if any ;)

  • Where are the jar files located in the server in which the MS SQL Server is installed?

    Hello All,
    Please tell me the place where jar files are located in the system in which the MS SQL Server is installed.
    Please help me as early as possible.
    Thanks in advance.
    Thanks and Regards, Readers please vote for my posts if the questions i asked are helpful.

    Check BOL page: Using the JDBC Driver
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Design & Programming
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • Where are the jar files added to a project listed?

    Hi Guys and Gals,
    This should be an easy one, and yes, I have searched google and the forums.
    My Master application/project uses task flows from other projects. These projects have been deployed to jar files, which are then added to my Resource Palette under the File System. From there, I may use these task flows in my Master project by clicking on their corresponding .jar file and selecting "Add to Project". However, where in the world are they listed?
    I would think they would be in Project Properties->Libraries and Classpath, but they are not.
    Using JDev 11.1.2.1.0.
    Befuddled,
    Will

    All ADFLibs are put into a lib named ADFLibrary. If you ADFLibs are dependent on other libs or jars you may see a lib 'ADF Dependend Libraries' which contain all secondary jars.
    Timo

  • Where does the jar for a custom tag libary need to go?

    I am having trouble getting a custom tag library's classes found. These are located
    in a jar file called blazix.jar.
    I have the following GetName.jsp:
    <%@ taglib prefix="blx" uri="/blx.tld" %>
    <jsp:directive.page import="com.company.project.ejb.UserData"/>
    <jsp:useBean id="user" class="UserData" scope="session"/>
    <HTML>
         <BODY>
              <blx:getProperty name="user" property="*">
              <FORM METHOD=POST ACTION="SaveName.jsp">
                   What's your name? <INPUT TYPE=TEXT NAME=username SIZE=20><BR>
                   What's your e-mail address? <INPUT TYPE=TEXT NAME=email SIZE=20><BR>
                   What's your age? <INPUT TYPE=TEXT NAME=age SIZE=4>
                   <P><INPUT TYPE=SUBMIT>
              </FORM>
              </blx:getProperty>
         </BODY>
    </HTML>
    When I run this, I get the following:
    Parsing of JSP File '/GetName.jsp' failed:
    /GetName.jsp(1): Error in using tag library uri='/blx.tld' prefix='blx': cannot
    find tag class: 'desisoft.jsp.tagext.SetProp'
    probably occurred due to an error in /GetName.jsp line 1:
    <%@ taglib prefix="blx" uri="/blx.tld" %>
    The jar does contain the needed class (desisoft.jsp.tagext.SetProp), but how can
    I tell WebLogic where to find it?
    In other words, what directory does the blazix.jar need to go under? I tried
    adding it to my classpath but that did not help.
    Thanks!

    I got it. Just needed to add my own lib directory under WEB-INF and copy the jar
    to it.
    Question though, why wouldn't this get generated for me? Would think it would
    be a common thing to need.
    "Darrin" <[email protected]> wrote:
    >
    BTW,
    I placed the blx.tld file under the WEB-INF directory. It seems to find
    it OK
    there at least.
    "Darrin" <[email protected]> wrote:
    I am having trouble getting a custom tag library's classes found. These
    are located
    in a jar file called blazix.jar.
    I have the following GetName.jsp:
    <%@ taglib prefix="blx" uri="/blx.tld" %>
    <jsp:directive.page import="com.company.project.ejb.UserData"/>
    <jsp:useBean id="user" class="UserData" scope="session"/>
    <HTML>
         <BODY>
              <blx:getProperty name="user" property="*">
              <FORM METHOD=POST ACTION="SaveName.jsp">
                   What's your name? <INPUT TYPE=TEXT NAME=username SIZE=20><BR>
                   What's your e-mail address? <INPUT TYPE=TEXT NAME=email SIZE=20><BR>
                   What's your age? <INPUT TYPE=TEXT NAME=age SIZE=4>
                   <P><INPUT TYPE=SUBMIT>
              </FORM>
              </blx:getProperty>
         </BODY>
    </HTML>
    When I run this, I get the following:
    Parsing of JSP File '/GetName.jsp' failed:
    /GetName.jsp(1): Error in using tag library uri='/blx.tld' prefix='blx':
    cannot
    find tag class: 'desisoft.jsp.tagext.SetProp'
    probably occurred due to an error in /GetName.jsp line 1:
    <%@ taglib prefix="blx" uri="/blx.tld" %>
    The jar does contain the needed class (desisoft.jsp.tagext.SetProp),
    but how can
    I tell WebLogic where to find it?
    In other words, what directory does the blazix.jar need to go under?
    I tried
    adding it to my classpath but that did not help.
    Thanks!

  • Where is the jar file includes ejb3.0 interface

    I just start using ejb 3.0, when i create a stateless session bean, i can not find the Stateless interface when import javax.ejb.Stateless. Appreciated if someone can let me which jar file includes those interface (like javax.ejb.Remove, javax.ejb.Stateful, etc.) and where to download?

    Hi,
    check jdeveloper_home\jdeveloper_10133_<version>\jlib\identitystore.jar
    Frank

  • Where is the JAR file?

    Dear sir/madam,
    I am now using the J2ME version 2.0 (beta) in that when I build the program I can't see the JAR file.
    May I know where will be the Jar file for the application?
    How t orun that using the Run-OTA option in this?
    Thanks

    The jar file is not found in the bin folder after running the program once.

Maybe you are looking for