moongeegee said:
Thomas said:
1. Neither programming language, including ECMAScript implementations
like JavaScript, is restricted to the client or the server.
2. If the Java program is an applet, LiveConnect/XPConnect can be used
to access it from JavaScript.
3. If the Java program is a servlet, a HTTP request can trigger it.
HTTP requests can be initiated with JavaScript using an
external API (e.g., DOM or XHR).
[snipped quoted signature]
would you please give me some example how to execute the myjava.class
via javascript.
That depends on where it runs and what the type of program it is.
I have tried so many differnt, it doesn't seem working.
You are welcome.
PointedEars
--
var bugRiddenCrashPronePieceOfJunk = (
navigator.userAgent.indexOf('MSIE 5') != -1
&& navigator.userAgent.indexOf('Mac') != -1
) // Plone, register_function.js:16
If he's executing the program via the java command, then it's actually
some sort of either desktop or headless application, and neither a
servlet nor an applet. The other question remains "Where does this
application lie?". Is it on the server or the client?
If it's on the client, then I know of no way to execute a java
application via javascript. For you gurus out there who want to chime
in, it would be just like running any other application installed on
the client pc....
If the java application is on the server, then you will have to write
a servlet that executes the java application, and have the javascript
call the servlet to ask it to do so.