Connecting Tech Pros Worldwide Forums | Help | Site Map

Java script java class

prashan.buddhika@gmail.com
Guest
 
Posts: n/a
#1: Jul 28 '08
Hello,

I need to access java class in a jar file using a javascript. Is there
any way to do this other than using a java applet ? Please help ..

Prashan

Erwin Moller
Guest
 
Posts: n/a
#2: Jul 28 '08

re: Java script java class


prashan.buddhika@gmail.com schreef:
Quote:
Hello,
>
I need to access java class in a jar file using a javascript. Is there
any way to do this other than using a java applet ? Please help ..
>
Prashan
You didn't specify where this class in the JAR is.

The problem is simple: JavaScript is executed in the browser.
Java is not, unless you make an applet.
If you do that, you can let them communicate.
The easiest way to let JavaScript and Java communicate IN THE BROWSER is
using this:
http://java.sun.com/products/plugin/.../jsobject.html


If you need to use a class that is on the server, you cannot access it
directly, but maybe this helps: You could create an Ajaxoid-call to a
JSP page (or PHP, or whatever suits your needs AND can access java) that
calls the appropriate function in the JAR for you on the server.

If you need more help, be more clear on what you try to achieve.

Regards,
Erwin Moller
Thomas 'PointedEars' Lahn
Guest
 
Posts: n/a
#3: Jul 28 '08

re: Java script java class


prashan.buddhika@gmail.com wrote:
Quote:
I need to access java class in a jar file using a javascript. Is there
any way to do this
STFW for "LiveConnect OR XPConnect". "Java JavaScript" would also do.
Quote:
other than using a java applet ?
Obviously, you cannot use a *Java* applet to access a Java class with
*JavaScript* (or any other ECMAScript implementation).


PointedEars
--
Prototype.js was written by people who don't know javascript for people
who don't know javascript. People who don't know javascript are not
the best source of advice on designing systems that use javascript.
-- Richard Cornford, cljs, <f806at$ail$1$8300dec7@news.demon.co.uk>
Closed Thread