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.
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.