Servlet - Applet

A

alberto v

Hi,
i got a problem with a Servlet.
I made a servlet that create a html page with an applet by insert the code:
<HTML>
..
..
..
<APPLET code="AppletName.class"> Parameters parametri
</APPLET>
..
..
..
</HTML>
but when i open the servlet i can't see the applet.
The exception is: ClassNotFoundException: AppletName.class
It seems that it can't see the applet class

Somewhere i have found some documentation that say:
When trying to use an applet inside a servlet using the applet tag:

out.println("<applet code=appletname>" + "</applet>")
Two things must be kept in mind:

1.You must include the codebase in the <applet> otherwise the applet class
will not be located. So use something like out.println("<applet
code=appletname" + "codebase='/'>" + "</applet>")for the home directory.
2.You must place the applet class along with the HTML documents. GIF and JPG
problems occur when you keep the applet class in the directory, where the
other java classes are usually kept, or with the servlet classes-then the
client's browser is not able to locate the applet class.

I tried to add codebase='/' but nothing is change.
help me please. BYE

P.S: The applet is in the same directory of the servlet.
 
D

Dave Miller

Hi,
i got a problem with a Servlet.
I made a servlet that create a html page with an applet by insert the code:
<HTML>
.
.
.
<APPLET code="AppletName.class"> Parameters parametri
</APPLET>
.
.
.
</HTML>
but when i open the servlet i can't see the applet.
The exception is: ClassNotFoundException: AppletName.class
It seems that it can't see the applet class

Somewhere i have found some documentation that say:
When trying to use an applet inside a servlet using the applet tag:

out.println("<applet code=appletname>" + "</applet>")
Two things must be kept in mind:

1.You must include the codebase in the <applet> otherwise the applet class
will not be located. So use something like out.println("<applet
code=appletname" + "codebase='/'>" + "</applet>")for the home directory.
2.You must place the applet class along with the HTML documents. GIF and JPG
problems occur when you keep the applet class in the directory, where the
other java classes are usually kept, or with the servlet classes-then the
client's browser is not able to locate the applet class.

I tried to add codebase='/' but nothing is change.
help me please. BYE

P.S: The applet is in the same directory of the servlet.

Is there some reason why you are not using a jsp?
 
A

alberto v

It's my school final project! :D
and my teacher is able to program with this platform.
So i have resolved the problem!!! (after 3 days)
 
R

Roedy Green

but when i open the servlet i can't see the applet.
The exception is: ClassNotFoundException: AppletName.class
It seems that it can't see the applet class

We have to figure out is the Servlet generating the correct HTML.

What exactly arrives at the browser? Use View Source to find out.

See http://mindprod.com/jgloss/applet.html to figure out what it
SHOULD look like.

If you are not using a jar for your applet, do that. It solves all
sorts of classpath havoc.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,416
Messages
2,571,560
Members
48,797
Latest member
shadowoftheunknown

Latest Threads

Top