|
A web application uses a Java applet that stores a password, submitted by the user, in a private property and uses this property in several public methods.
I wonder if it is possible for another Java applet loaded from the same or different web site to...
Started by Alla on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
A signed applet can have, with the client's permission, access my (malicious) applet signed? Would I be able to acquire some user data, by concocting the poor user can use AppletContext to get a reference from....
I think your answer is here.
|
|
This question may look familliar but I've discovered some rather more pertinent information and tried some other things (which are detailed below) so to avoid confusion I've created another question.
Here's the JavaScript (on an aspx page):
function CallApplet...
Answer Snippets (Read the full thread at stackoverflow):
I'm sending big PDF as base64 data to my applet and it seems to work only for files with 3.5MB max.
|
|
Does Java SE (Standard Edition) offer a way to make its programs work online beside the Applets? Or is the applet the only way to do that?
Started by MAK on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
And then there is WebStart , which launches JavaYou could use Webstart to allow users to launch your Java application from a website and have application rather than deploy a standalone....
If that is not just an applet under the hood, though.
|
Ask your Facebook Friends
|
What is the equivalent of a Java applet in .NET? Is it Silverlight? Is Java applet still widely in use?
Started by msvcyc on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
In my experience, Java applets in use more....
You'll see appletsSilverlight is analagous to Java applets, but not really equivalent.
Java applet will work only if a JVM is installed on the client machine.
Sites).
|
|
Is it possible to run Java applets in the Android WebKit Browser? If not does anyone know when java applets will be supported?
Started by John Cooper on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Android does not have a full Java VM, and therefore does not currently support Applets its not possible to run java applets in the Android Webkit Browser..
|
|
What is the most user- and standard friendly way to embed a Java applet in a HTML page?
Is there something similar to Flash's swfobject that will gracefully degrade if Java is not installed on the user's machine and give the user the alternative to install...
Started by Applet Guy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can use the applet tag
From http://java.sun.com/j2se/1.5.0/docs/guide/plugin/developer_guide/using_tags.html#applet
<applet code=Applet1.class width="200" height="200"> Your browser does will be shown if the applet....
|
|
I have a Java applet that is meant to run only on Windows. (It uses a 3rd party COM object; it is not cross-platform.)
Is there a way to run a Java applet as a stand-alone application on Windows?
Started by Judah Himango on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
One starts with an init method flags}} set JARFILE={{location....
How it runs as an applet.
If by "applet" you mean a stand-alone command shell Java program, a simple batch file should between how Java runs as an application vs.
|
|
The default 64 MB max heap memory can be small for a large Java application. Are there any applet parameter to increment this for a signed applet?
For a Java program this is a simple command line parameter but how this work for an applet in the browser...
Started by Horcrux7 on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Use the JavaConsole -> Java -> Java Applet Runtime settings to define, starting....
From the Java plug-in control panel, but that's something the user has to do before starting your applet discussion on the topic.
|
|
Hi, 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.
Started by Mohammad Alinia on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
May....
Sun: java to javascript communication
From within your java applet
// object to allow applet to invoke Javascript methods as usual.
You could use the JSObject.
A java applet can call javascript functions.
|
|
Does anyone know if it is possible to interact with a java applet via .net?
Edit: I was able to use the UI Automation framework to locate the java applet, and from there use OCR to read data and simulate mouse/keyboard input into the applet.
Started by BDekker on
, 6 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I'll need to go through a number of "screens" in... .
I need to access data from a website that launches a java applet.
Solution; i.e., "interacting with a Java applet via .NET"? There may well be a much better path to take...
|