-2
votes
2answers
39 views

NoClassDefFoundError while embedding applet on HTML

I'm trying some easy things with jsp and applets. It's just some really easy applet package pack1; import java.applet.Applet; import java.awt.Graphics; public class test2 extends Applet { ...
0
votes
0answers
38 views

Applet could not be loaded every time

I have developed a website using jsp. In that i have used some applet to update the time and manipulate the database. I have successfully load the applet in some browser for first time but the next ...
0
votes
1answer
53 views

declaring log4j.properties in a web deployed applet

I have an applet which is deployed using the applet tag in a jsp. I sign all the libraries to be used and add them to the classpath by including them in the "archive" property of the applet tag ...
0
votes
1answer
46 views

How can I prevent embedded applet from reloading after I reload jsp page?

I have applet embedded with jsp page.my problem is every time I refresh jsp page, applet also gets reloaded so Is there any way to prevent applet from reloading after I reload jsp page. I know there ...
0
votes
0answers
35 views

tomcat/jsp/bean offer serial imprinted java applet for download

(i have searches stack and google for hours... nothing) What I want to do: have a jsp/bean + tomcat based server through webaccess a client can login and download a custom serialnumber imprinted ...
0
votes
1answer
88 views

calling second applet once first applet is loaded in JSP/JSF/HTML

I am working on a JSP/ JSF page where two applets are embeded using tag. Problem is the first applet is having some information that will be updated on the page and the second applet must use that ...
0
votes
0answers
72 views

Java Applet Issue with referencing the .CLASS file

I am trying to show a JAVA Applet from my .JSP Page. I would like to render my applet within this folder structure. JSP Page which is showing the applet is within the root, but the class file is as ...
0
votes
0answers
53 views

JSuggestField in Applet error

I wrote an applet that executing very well. I used JSuggestField for autocomplete. Then I wanted to use this applet in a JSP project. When I run the web project , applet did not execute on the browser ...
0
votes
0answers
50 views

Using ajax to communicate between javascript and JSP

I need to establish communication between two applets running in two different client machines. The applets are embedded in 2 separate JSP pages. So, what I'm trying to do is to get the msg from ...
0
votes
0answers
37 views

Communication between applets running on two different client machines

How can I achieve communication between two applets that are embedded in two different JSP pages? I'm using Apache tomcat. Can I achieve it by accessing the applets methods using Javascript? ...
0
votes
1answer
298 views

Java Applet Folder Chooser AccessControlException

I have simple folder chooser in java applet. The applet opens successfully and it shows AccessControlException. Im trying to set the default path ${user.home}, and then the user can select any flder ...
0
votes
0answers
45 views

Offering same instance of a jsp page to 2 clients

I have a jsp page in Tomcat 7.0\webapps\Test folder named TTT.jsp. This page displays an applet which is in the same folder. This applet code is a 2-player tic-tac-toe game. So, what I want is to give ...
0
votes
1answer
82 views

Referencing urls of specific resources in eclipse java web application

Can anyone show me how to specify urls of specific resources using java servlets? I am using eclipse. The code below produces a servlet whose main page can be viewed at the url: ...
0
votes
0answers
76 views

Internet Explorer 8 bar chart being displayed only in half the screen

My application is using Java EE to display a chart in a browser. The chart is being displayed in all browsers including IE7 but not in IE8. The code that I can see in view source is: * ...
0
votes
1answer
185 views

How to integrate a Frame (jframe) into a jsp

Iam New to Awt,Jframe. I have to integrate a Frame window (containg code to display a whiteboard) into a jsp page. can you please helpout in this regard to integrate an applet iam using <applet ...
0
votes
2answers
618 views

Applet class not found

I new with applets, and I'm trying to display the applet in my html. (I have installed the plug-in and I'm using Chrome, and i have tried it on IE) as you can see the applet class is in the source ...
0
votes
1answer
168 views

How do I embed an applet in my JSP?

OK so I have the following structure: Web Pages > Administrator > test.jsp In this JSP I have the following code: <jsp:plugin type="applet" code="appletexample/AppletExample.class"width="400" ...
0
votes
1answer
144 views

Embedding Applet in JSP

So I'm learning how to embed an applet into a jsp page. But the thing is, when I run the index.jsp, there's always an error. The error says that the class for the applet is missing, and I don't know ...
-1
votes
3answers
2k views

Java on iPhone or iPad [closed]

They say Java is not supported in iPhone or iPad. Does that mean websites with JSP as its server-side scripting language would not function properly on those devices? Or just do they only mean to ...
0
votes
0answers
78 views

Java Applet in Chrome is cut off

I have an applet with Swing components. It renders correctly in IE. However, in Chrome, on some machines, the applet's UI is cut off on the right. I uninstalled and re-installed Chrome on those ...
2
votes
0answers
68 views

lock workstation using applet from jsp

I want to lock my workstation from a jsp. For that I have written an applet which uses JNA APIs and it is embeded in a JSP. When I invoke the applet as a standalone applet it is working and my ...
1
vote
1answer
105 views

Calling Java Ojects in Javascript to Applet

I am looking for a way to to return a Javaobjects, which is saved in a Http Session, to an Applet.I am using JSP, so i am able to return Objects in the Session by ...
0
votes
2answers
200 views

Embedded applet in jsp

I have embedded applet in jsp with applet tag and this not the way to integrate applet in jsp ,So I replaced my applet tag with jsp:plugin but I dont get any image in applet.Below is the code snippet ...
1
vote
1answer
155 views

Encrypting text field on form via Java applet; browser is caching encrypted text; how to cache plaintext?

I have a Java Applet which encrypts text entered on a form text field, just before the submission of the form. It works well but the browser -- Google Chrome, in particular -- is caching the text ...
0
votes
0answers
205 views

Need help configuring debugging Java Applet in Eclipse; jsp page is on remote intranet server

I need some help configuring debugging Java Applets in Eclipse; the jsp page which the applet depends on is located on a remote intranet server. I'm running Java Standard Edition 1.7, but the applet ...
-1
votes
2answers
58 views

I need to count all urls on page [duplicate]

Possible Duplicate: How to use regular expressions to parse HTML in Java? I need to count all url on page with Java. I'm beginer in Java. I need advice in what technology I should use to ...
0
votes
1answer
254 views

Run java code on client machine

I want to run a java code which uses JNA to find out whether the client machine is idle or not. This code must run on the client side JVM instead of server's JVM hence I can't put the code inside ...
-2
votes
1answer
649 views

How to call JFrame from JSP?

I wanna know that how to call JFrame from jsp. When I click button on the browser, I want to call frame. But I do not know how to do. If you don't mine, please explain me. Here is some code! ...
1
vote
2answers
346 views

Communication between Signed Applet and server side Controller

I have created a signed applet for uploading a file to server. Code is running fine but I want to send that file from applet to server side controller where the code has placed to save that file to ...
1
vote
4answers
883 views

Integrating a java applet in a page

I am trying to integrate a processing applet in a jsp, with the following code added in the jsp: <!--<applet code="Test1.class" archive="C:\Users\user\Desktop\MyApplet.jar" width="600" ...
0
votes
1answer
318 views

How to return file from applet to jsp

I have developed an signed applet that is used to upload a file in encrypted form. This applet I am calling from jsp which is working fine, but my issue is : Can I call that applet from jsp in such ...
2
votes
1answer
97 views

printer interfacing with JSP

Am working on a hotel management web application. My problem is regarding the bill printing. I have used window.print() for printing the bill. But it causes alignment problems in multiple page ...
1
vote
1answer
263 views

unable to invoke applet from jsp

applet tag in jsp : <%--<applet code ="applets/applet_1" height="500" width="500"/>--%> <jsp:plugin type="applet" code="applet_1.class" codebase="web/WEB-INF/classes/applets"/> ...
1
vote
1answer
147 views

why don't i see a new jsp page when i click the fire button in the applet?

I am trying to communicate with a servlet and jsp via an applet. When the button in the applet is clicked request is fired to the servlet and then i try to forward from that servlet to a jsp page. ...
0
votes
0answers
191 views

JSP & applet got java.lang.reflect.InvocationTargetException

An applet included in a JSP file works fine in the client PC. When I use this PC as a server to run the application I get an error java.lang.reflect.InvocationTargetException. The PC O/S is Windows 7. ...
0
votes
3answers
616 views

chat application in jsp with node.js OR applets

Last some days i am investigating the better way to implement the chatting on web technology. I did research and i found that node.js also have some problems like as follows Cross Browser support ...
1
vote
2answers
3k views

Where is JSESSIONID stored? (JavaEE)

I have two applications - A Java EE web application and a Java SE applet. I want to authenticate a user in the applet by means of a JSESSIONID (which is created by the web application). So there is ...
2
votes
1answer
1k views

Class not found Exception when launching Applet using JNLP

I've run into a problem when trying to launch a jar file using JNLP. We've previously launched the applet without JNLP without any problems. We want to launch three different jars who are kept in the ...
0
votes
0answers
196 views

I have a java Applet and want it to communicate with a servlet on my server securely

This link and this link were helpful, and I am looking for something similar. I am having difficulty understanding a few things that I hope can get cleared up. Here is what I am having difficulty ...
0
votes
0answers
451 views

Calling an Applet method from Javascript in a JSP Page

I have been trying to embed an applet within a JSP page to call some needed methods. The applet is initialized correctly but the method call does not work. With HTML, a similar example was working ...
0
votes
1answer
414 views

launch applet from web page

is it possible to launch an applet using webpage by clicking on link/button. I mean onclick of link/button, i want to launch an applet, which shouldn't be embedded with the webpage. It should launch ...
0
votes
1answer
403 views

retrieve database value into applet

since last two days, i was trying to embed an applet into my webpage, applet will retrieve the database values and show it into combo box. But, i got AccessControlException exception, when i'm ...
0
votes
1answer
184 views

AccessControlException when i'm trying to run applet on jsp

I'm getting exception when i'm running my jsp page, in which i've embedded the applet my jsp file code <html> <head> <meta http-equiv="Content-Type" content="text/html; ...
1
vote
2answers
506 views

database values are not showing in applet when embedding on jsp

My applet is running well and showing all the data from the database, which i required. But, the problem is when i embed the created jar file on jsp. it didn't show the data from the database. ...
0
votes
1answer
253 views

Java applet on GlassFish 3.0.1 server

I have developed an applet and I am using a JSP to upload it. I have worked it using Netbeans 6.9. The applet works fine without JSP. When I run JSP on Glassfish server, applet does not run. My ...
0
votes
1answer
167 views

Java applet trying to fetch more than in archive list

I browse to a JSP on my server (running JBoss 4.0.4). That jsp contains the code: <jsp:plugin type="applet" archive="a.jar,b.jar,c.jar" ... </jsp:plugin> When I look at my ...
2
votes
3answers
560 views

How to load large applet

I need some advice on how to load a big applet. I need to make an instance of JWord text editor to work as an applet, but the editor is about 4 mb. I'm aware of the java web start solution, but my ...
2
votes
1answer
409 views

How to save content of applet in jsp to database using servlet programming

I am developing a jsp which contains a applet which captures the image from webcam and shows in same applet.What my need is to save captured image in database through jsp form submit with some other ...
0
votes
2answers
2k views

How to embed an Applet into a JSP page?

I'm trying the following code in JSP to embed an Applet into a JSP page but it can't display it. The JSP code snippet goes below. <%@page contentType="text/html" pageEncoding="UTF-8"%> ...
0
votes
3answers
582 views

Getting value at JSP Page from applet

I don't know how to get value of applet at JSP. A value is set by user (in the applet). I want to display this value on some different JSP. Can anybody give some guidance on this?

1 2