Where to download netscape.javascript.JSObject?

I have this statement in my Java program
import netscape.javascript.JSObject , and when i cannot compile. May I know where I can download this package?

Hi,
Check out below links, i hope it will help you.
http://docs.iplanet.com/docs/manuals/js/server/jsref/lcjsobj.htm
http://www.netscape.com/eng/mozilla/3.0/handbook/javascript/packages.htm#1007459
http://www.mozilla.org/oji/MRJPlugin.html
http://developer.netscape.com/docs/technote/javascript/liveconnect/liveconnect_rh.html
http://www.innovation.ch/java/HTTPClient/disp_html.html
Thanks,
Dakshin.

Similar Messages

  • Where i can find the package "netscape.javascript.JSObject;" ??urgent

    where i can find the package "netscape.javascript.JSObject;" ??urgent
    please

    The Java Plug-in 1.3 ships netscape.javascript in a JAR file called JAWS.JAR. To compile an applet which uses JSObject, just add JAWS.JAR in the CLASSPATH before compilation.
    If you don't have the Plug-in, but do have a Netscape browser installed, you can add the java40.jar file that comes with Communicator to the end of your CLASSPATH (or extract the netscape.* classes from there).

  • Cannot Resolve Symbol  netscape.javascript.JSObject

    I am trying to communicate fom an applet to a javascript. I am usinjg jdk1.3.1 and did an import netscape.javascript.JSObject; in my applet class.
    When I compile I get cannot resolve symbol JSObject. The import does not seem to work.
    Do I have to download the package from somewhere and put it in the jdk1.3.1 dir in some place?
    Thanks

    Ive netscape 7.1 and the JSDK 1.4.2. The Java40.Jar doesnt seem to be present in my netscape folder anywhere so I assume that it isnt included in the newest version of netscape.
    I tried using the javaws.jar that came with my JSDK but it didnt work. I opened it up and searched it and saw no mention of a JSObject file.
    Im a little confused at this point. Where can I look up the location of the JSObject?

  • MyApplet.java:2: Class netscape.javascript.JSObject not found in import.

    Hi,
    Im getting: MyApplet.java:2: Class netscape.javascript.JSObject not found in import.
    import netscape.javascript.JSObject;
    Where can i get this package. Someone said jaws.jar, but its not to be found. Im new on this project and I dont know how the old people compiled this applet.
    JDK version is:
    Solaris VM (build Solaris_JDK_1.2.2_10, native threads, sunwjit)
    Thanks

    Thanks man!
    I installed the jdk1.4 on my workstation. I then compiled the program via JDeveloper and pumped the class over to my server.
    Thanks again.

  • Appletviewer: java.lang.NoClassDefFoundError: netscape/javascript/JSObject

    When I run the appletviewer: in trying to dedebug what the Java plugin fails to load I get this error:
    C:\Program Files\Java\jdk1.5.0_01\bin>appletviewer.exe http://www.java.com/en/
    java.lang.NoClassDefFoundError: netscape/javascript/JSObject
    at JavaCallJS.init(JavaCallJS.java:21)
    at sun.applet.AppletPanel.run(AppletPanel.java:373)
    at java.lang.Thread.run(Thread.java:595)
    Thanks!
    John

    Hi,
    Can you elaborate on your problem ? Also if you are using the netlet, please provide complete java console output
    Thanks!
    Satish

  • Ava.lang.ClassNotFoundException: netscape.javascript.JSObject

    Im not using netscape, why this error!!!!
    Help!
    java.lang.ClassNotFoundException: netscape.javascript.JSObject
         at com/ms/vm/loader/URLClassLoader.loadClass
         at java/lang/ClassLoader.loadClassInternal
         at com/sco/tta/client/portal/Mediator.init
         at com/ms/applet/AppletPanel.securedCall0
         at com/ms/applet/AppletPanel.securedCall
         at com/ms/applet/AppletPanel.processSentEvent
         at com/ms/applet/AppletPanel.processSentEvent
         at com/ms/applet/AppletPanel.run
         at java/lang/Thread.run

    Hi,
    Can you elaborate on your problem ? Also if you are using the netlet, please provide complete java console output
    Thanks!
    Satish

  • Import netscape.javascript.JSObject;

    import netscape.javascript.JSObject;
    This library is deprecated? In this case. Can I replace it with another solution?
    Thanks.

    Not sure. First, I am not sure why you think JSObject is deprecated. After all the link I gave you is for Java 6.
    DOM seems to be more official and the way to go in the future, but they say only IE and Mozilla seem to support it.

  • Where to find "netscape.javascript.*" package to download.

    Hi all anyone got idea where to download the "netcape.javascript.*" package for applet to communicate with Javascript.Thanks in advance.

    Support is shipped in the plugin. I believe depending on the version
    in jaws.jar or javaplugin.jar.

  • Netscape.javascript.JSObject

    hi all
    where do i download the package
    netscape.javascript
    which extends java.lang.Object
    regards
    Pradheep

    You have two options
    1. domwload the rhino.jar from http://www.mozilla.org/rhino/download/
    or set your classpath to use the jre library 1.3 version or later, beacuse the jaws.jar insede the virtual machine contains the javascript object
    i hpoe helps to you
    [email protected]

  • Netscape.javascript.JSObject without applets - Urgent!

    Hi,
    I need to evaluate some Javascript expressions inside my java code... BUT my code is not inside an Applet class. Does anyone know how to do it?
    I chose to use the netscape.javascript package, it work well inside an applet.. but my application doesn't run inside an applet. When I try to run it inside a standalone application it fails (even if the application extends from the Applet class).
    Here is part of the code:
    public class Applet1 extends Applet {
    public void init() {
    try {
    String out;
    JSObject win = JSObject.getWindow(this);
    out=win.eval("2+3;").toString();
    jLabel1.setText(out);
    System.out.print(out);
    public static void main(String[] args){
    Applet1 app=new Applet1();
    app.init();
    The code runs perfect inside Internet explorer, but it crashes when running in standalone mode.
    Thanks.

    I need to evaluate some Javascript expressions inside
    my java code... BUT my code is not inside an Applet
    class. Does anyone know how to do it?Haven't actually used it, but Mozilla has the Rhino JavaScript interpreter:
    http://www.mozilla.org/rhino/
    Also you could Google for FESI, which is an ECMAScript interpreter (basicly an early version of JavaScript that went through the standards process).

  • Netscape.javascript.JSObject outside an applet class

    Hi,
    I need to evaluate some Javascript expressions inside my java code... BUT my code is not inside an Applet class. Does anyone know how to do it?
    I chose to use the netscape.javascript package, it work well inside an applet.. but my application doesn't run inside an applet. When I try to run it inside a standalone application it fails (even if the application extends from the Applet class).
    Here is part of the code:
    public class Applet1 extends Applet {
    public void init() {
    try {
    String out;
    JSObject win = JSObject.getWindow(this);
    out=win.eval("2+3;").toString();
    jLabel1.setText(out);
    System.out.print(out);
    public static void main(String[] args){
    Applet1 app=new Applet1();
    app.init();
    The code runs perfect inside Internet explorer, but it crashes when running in standalone mode.
    Thanks.

    You can also use Rhino to execute JavaScript
    http://www.mozilla.org/rhino/

  • Netscape.javascript.JSObject for mac

    I have the latest NetBeans version for mac os 10.5.
    What do I need to do to get access to the netscape.javascript package.
    I am trying to read cookies written using php into an applet. I am also open to solutions that do not need netscape.javascript.
    I am a beginner to the mac os so I am unable to translate the many solutions that appear to be for windows users. Apparently all I need to do is add Plugins.jar to my classpath, but I cannot find Plugins.jar, (or java40.jar or JAWS.JAR which apparently contained these packages in various releases), none of which I can find on my mac or available for download.
    I am sure this is very simple but I am running out of hair to pull out.

    I believe that for Mac, the required jar can be called plugin.jar or netscape.jar.
    Its location is somewhere around */System/Library/Frameworks/JavaVM.framework/Versions/<your version>/Home/lib*
    I don't have a Mac so I can't verify this , sorry.
    Good luck.

  • Where is download Netscape Mozilla - required by installer of Evrsoft First Page 2006?

    During installation of Evrsoft First Page 2006 Version: 3.00 the following requirement was raised: " '''If you plan to use Mozilla to preview web pages, you must download and install Netscape Mozilla".'''
    I can't find place to download Netscape Mozilla.
    Regards
    Oskar Kula

    Kind of weird cause Netscape isn't used much. Try this http://www.softpedia.com/get/Internet/Browsers/Netscape-Browser.shtml

  • Where to download "netscape directory server 4.11 or later"

    Hi, there,
    I just want to test some ldap functions on windows 2000. I find some guys said Netscape Directory Server 4.11 is a good choice. Where can I download a evaluation version? I can't find it on Netscape.
    Thanks.

    Just go to www.iplanet.com

  • Linux Version of netscape.javascript.JSObject(jaws.jar)

    Whats the linux for java version of jaws.jar and where does this reside under jdk installation for linux?
    We need to include it in classpath before compiling our app in linux.
    Thanks

    http://developer.java.sun.com/developer/JDCTechTips/2002/tt0219.html
    Look for javaplugin.jar instead.

Maybe you are looking for