• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Calling CORBA object from javascript

 
Ranch Hand
Posts: 54
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How can i call a CORBA object from JavaScript? Can i call it for applet also...if Yes..pls let me know HOW ???

Tx
Anukampa
 
Ranch Hand
Posts: 388
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi,
i dont think you call CORBA from JavaScript.
JavaScript is running in your browser and cannot directly communicate with other software (you can request urls and transfer values via parameters/forms)

karl
 
Ranch Hand
Posts: 527
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi..
Just curious to know how to mix JavaScript's code with Java code...Any clue...
Anil
 
karl koch
Ranch Hand
Posts: 388
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi,
javascript is embedded in html page and executed by browsers. Java is executed by JavaVirtualMachine. in fact javascript had another name before. it got renamed to sound more like java for marketing reasons (thats what i heard). you can invoke java applets method from javascript (and i think vice versa trough the Applet context). check out the javascript forum for more info.
karl
 
Ranch Hand
Posts: 147
Android Java Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This off of the topic, but JavaScript was originally called "LiveScript".
The Java/LiveScript glue was (in fact is still) called "LiveConnect".
Netscape's server-side JavaScript product is called "LiveWire".
Generically, Netscape referred to browser-side objects (plugins, applets) as "Live Objects".
(info written by Paul Bennett)
So, look for info on "LiveConnect" to connect JavaScript to Java.
Here's a start.
[This message has been edited by Glen Tanner (edited July 30, 2001).]
 
If I had asked people what they wanted, they would have said faster horses - Ford. Tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic