Tagged Questions

LiveConnect allows ECMAscript code running Mozilla's Rhino interpreter to access Java code in a transparent way.

learn more… | top users | synonyms

10
votes
10answers
9k views

access denied (java.net.SocketPermission 127.0.0.1:8080 connect,resolve)

I have a Java Applet inserted on a simple HTML page located at http://localhost:8080/index.html: <applet id="applet" code="SomeCode.class" archive="lib.jar" Width="1" Height="1"></applet> ...
3
votes
2answers
2k views

Problem with Java Applet <--> Javascript communication

I'm having trouble getting a Java Applet to communicate with the Javascript code on the page the applet is hosted on. It works sometimes, but othertimes it throws an obscure exception, that googling ...
3
votes
5answers
659 views

Is it possible to create arbitrary Java objects from JavaScript in ie?

LiveConnect is a Mozilla technology that bridges Java and JavaScript. Amazingly, they've started maintaining it again for recent versions of Firefox. In Firefox I can write e.g. var d = new ...
2
votes
3answers
448 views

Can a java applet manipulate the HTML page containing it?

I wanted to know if I can write something on the HTML page containing my Java applet from within the applet. More generally, what interactions are possible between these two? Thanks.
1
vote
2answers
97 views

How can an Applet call a method in a different frame (from the same web site)?

Given an Applet in one frame in a multi-frame web application where all frames are loaded from the same web server, how can that Applet invoke JavaScript methods in other frames? I tried something ...
1
vote
1answer
154 views

How can I decouple java to javascript calls? Applet is waiting on itself!

I am having trouble avoiding a sporadic crash in my applet that appears to be caused by a thread waiting on itself. Strangely, this only seems to happen in google chrome. 30-second read: ...
1
vote
2answers
322 views

Passing binary data from Javascript into a Java applet via LiveConnect

I'm working on an application with a javascript front end that can receive a bunch of octets from the server (for the time being I'm using php's chr() to simulate some data). Trying to pass the data ...
0
votes
0answers
20 views

Firefox Extension including a applet. access applet method using JavaScript

I need to know how to include a applet with the extension and access applet method using JavaScript any idea how to do this specially how to attach a applet in the extension
0
votes
0answers
46 views

Live Connect Rest API: Signing user in?

I am working on a poc using the Live Connect Rest API. (Documentation here: http://msdn.microsoft.com/en-us/windowslive/default) Using the example from the link below I am able to login a user and ...
0
votes
0answers
40 views

Titanium Desktop with Java Integration

I plan to use Titanium Desktop to create an HTML based UI for one of my Java based desktop projects. Only UI shall be developed with Titanium Desktop, and the rest of the application, Business Logic ...
0
votes
0answers
77 views

Efficiently streaming audio samples retrieved from a java object in Gecko (firefox extension)

I am writing a firefox extension which needs to play a certain PCM stream. The samples are retrieved from a java module over LiveConnect: Java code: public class Synthesizer { ... public ...
0
votes
0answers
223 views

Liveconnect on Safari throws Java into infinite loop of checking security policy

I am having a strange problem with safari (win) and applets using liveconnect. Java goes into an infinite loop doing something, but the applet is still usable, albeit very unresponsively. This is the ...
0
votes
1answer
119 views

liveconnect on ubuntu/firefox

This works on chrome canary/firefox 4 etc on windows: getAppletContext().showDocument(new URL("javascript:alert('hello');")); but on firefox 4 ubuntu it does nothing but throw ...
0
votes
0answers
192 views

How to pass JavaScript typed arrays to Java applet through LiveConnect?

I'm trying to pass ArrayBuffer to Java applet, but cannot guess how to do it. It's pretty easy to handle standard JS arrays and they work fine for Sun's plugin (not for IcedTea). I can pass ...
0
votes
0answers
98 views

Firefox 4, broke plugin liveconnect

I had a working plugin for firefox 3.6 updated and now I'm having some problems. I import a javascript module into an object but whenever I try to run any of that modules methods it fails. ...
0
votes
1answer
313 views

How do I actually run Rhino?

I've read through the docs here: Mozilla's 'Scripting Java' These examples don't answer my question either: Rhino Liveconnect example How do my javascript files know where to find "java.lang" for ...
0
votes
2answers
91 views

javascript and live connect

i wrote a simple html file that prints 10 random numbers using javascript. javascript object in turn uses java.util.Random class (live connect) to output the result! but i am not getting exact output ...
0
votes
3answers
325 views

Javascript to Java communication using LiveConnect not working

I've been working on a project that requires communication both directions between Java and JavaScript. I have successfully managed to get it working under all browsers in OS X, but I'm now faced with ...
0
votes
1answer
273 views

Java to javascript type conversion

Can somebody explain what does this mean? Boxing objects for Java numeric values (the java.lang classes Byte, Character, Short, Int, Long, Float, and Double) are unboxed and converted to ...
0
votes
3answers
2k views

Mac OS X: java.lang.ClassNotFoundException: com.sun.java.browser.plugin2.DOM

I am trying to use the new LiveConnect features introduced in Java 6 Update 10. Code looks like this (copied from the applet tutorial): Class<?> c = ...
0
votes
2answers
440 views

Java applet DOM manipulation example?

I am looking to write my first Java applet (with a difference). I want to write an applet that manipulates the DOM of the page in which the applet is placed. A suitable example would show how: an ...
0
votes
1answer
1k views

Access is Denied Exception when calling JavaScript function from Java in IE

I am getting Access Denied exception when I am calling a Java Script Function from Java Applet only in IE. ( modified my original question with updated information.) Here is my HTML code <script ...
0
votes
1answer
227 views

Using LiveConnect, calling a function doesn't pass the strings properly

I've got a little problem with calling javascript functions via liveconnect on java. It's not calling the function with the proper items, as the Safari console just classes the objects as ...