Hi,
I was wondering: Is is possible to invoke a RMI method with javascript?
Can anybody direct me to a link on how it is done?
Thanks
/Thomas
Gerhard Häring - 19 Jun 2007 17:19 GMT
> Hi,
>
> I was wondering: Is is possible to invoke a RMI method with javascript? [...]
If you mean JavaScript as in HTML in the browser: no.
You'd want to use something like http://oss.metaparadigm.com/jsonrpc/
then. (*)
-- Gerhard
(*) Instead of XMLRPC or even SOAP.
Arne Vajhøj - 04 Jul 2007 04:51 GMT
> I was wondering: Is is possible to invoke a RMI method with javascript?
>
> Can anybody direct me to a link on how it is done?
RMI is Java-Java only.
But you could:
JavaScript--Java Applet----(RMI)----Java server app
if you really want to.
Arne