| View previous topic :: View next topic |
| Author |
Message |
Dan Desch New member

Joined: 12 Aug 2002 Posts: 2
|
Posted: Mon Aug 12, 2002 4:52 pm Post subject: LiveConnect |
|
|
Greetings, I'm new to this forum.
Does anybody use LiveConnect?
Can LiveConnect be used to reference a custom class that resides on a remote server? |
|
| Back to top |
|
 |
mgm Site Admin

Joined: 13 Jul 2002 Posts: 304 Location: Salt Lake City, UT
|
Posted: Tue Aug 13, 2002 10:48 pm Post subject: |
|
|
Are you talking about LiveConnect as in JavaScript interfacing with Java? Netscape has used the term to mean a couple of other unrelated things.
I'm afraid I can't be of any help there, I haven't used it much except to confirm that it works. (And I'm not sure if it works on the latest IE versions at all. Microsoft isn't the biggest fan of Java or JavaScript.) _________________ Michael Moncur
Owner and Moderator, The JavaScript Workshop
Read the guidelines before posting: http://www.jsworkshop.com/posting.html |
|
| Back to top |
|
 |
Dan Desch New member

Joined: 12 Aug 2002 Posts: 2
|
Posted: Wed Aug 14, 2002 5:07 am Post subject: |
|
|
Yes, the term LiveConnect has been bandied about alot, but the feature I am referring to is specifically the ability in JavaScript to reference Java native and custom classes. With LiveConnect, you can write such things as:
var mydate = new java.util.Date();
which references the Java Date class.
You can also in theory reference a custom class
var myCustomVar = new Packages.com.me.CustomClass();
My question is this really: can my custom class be referenced somehow from a remote server (as can be done with an applet class) or does it have to reside in the class path on the client machine? |
|
| Back to top |
|
 |
|