Re: Cannot load applet on web browser

2007-01-16 Thread Teh Noranis Mohd Aris
Thank you for the reply. I already created the LoginApplet.html and embed the 
LoginApplet.class. Where should I put the files in the tomcat directory? Where 
should I put the JSP files? How about the WEB-INF file? Please help me! I'm 
really short of time! Thank you so much.
   
  Yours Sincerely,
  TEH NORANIS

Zack Grafton [EMAIL PROTECTED] wrote:
  I totally agree with Vacuum Joe on his point at getting familiar with 
Tomcat. As well, I believe the applet tag is considered deprecated with 
most of the newer versions of Java. There is a program in the bin 
folder under your Java installation directory called HtmlConverter. 
This program will help you replace the applet tag with the appropriate 
object tags.

Good Luck!

Zack

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



 
-
Don't pick lemons.
See all the new 2007 cars at Yahoo! Autos.

Re: Cannot load applet on web browser

2007-01-16 Thread Teh Noranis Mohd Aris
Yes, you are correct Mr. David Smith, I was just about to tell this matter. I 
did not put the LoginApplet.class in the WEB-INF. I choose to use html in the 
servlet because I would like to upgrade the previous system that was written in 
cgi. For the moment, I plan to use servlet and will upgrade to JSP later. I'm 
really stressed developing programs using Tomcat because I'm running out of 
time! I very much hope that tomcat users can help me out. Thank you so much, 
David. I will try out your suggestion tomorrow because I'm having a headache 
now. I will inform you tomorrow. Thank you also to all who contributed.
   
  Yours Sincerely,
  TEH NORANIS  

David Smith [EMAIL PROTECTED] wrote:
  I reread the original post and I don't think you are all that far off in
your setup. I'll recap a little here just to be sure I'm reading it right:

Servlet is located at WEB-INF/classes/AppletLogin.class (I would
recommend this be in an official package)
Applet is located at myapp/applets/LoginApplet.class (note for all that
are following this thread, this is not in the WEB-INF dir)


Here's the result of your servlet code:




Welcome! Please login


  name=LoginApplet
codebase=/applets
code=LoginApplet






I notice straight off there is no closing head tag or opening body tag. 
These are big html errors and your lucky the browser is even attempting
to display it as well as it has. Additionally, I believe your applet
params are incorrect resulting in your browser not being able to
retreive the applet. Consider composing the code and codebase attribute as:

out.println( code=\LoginApplet.class\ ) ;
out.println( codebase=\ + req.getContextPath() + /applets ) ;

--David

Teh Noranis Mohd Aris wrote:

Thank you for the reply. I already created the LoginApplet.html and embed the 
LoginApplet.class. Where should I put the files in the tomcat directory? Where 
should I put the JSP files? How about the WEB-INF file? Please help me! I'm 
really short of time! Thank you so much.
 
 Yours Sincerely,
 TEH NORANIS

Zack Grafton wrote:
 I totally agree with Vacuum Joe on his point at getting familiar with 
Tomcat. As well, I believe the applet tag is considered deprecated with 
most of the newer versions of Java. There is a program in the bin 
folder under your Java installation directory called HtmlConverter. 
This program will help you replace the applet tag with the appropriate 
object tags.

Good Luck!

Zack

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



 
-
Don't pick lemons.
See all the new 2007 cars at Yahoo! Autos.
 



-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



 
-
Finding fabulous fares is fun.
Let Yahoo! FareChase search your favorite travel sites to find flight and hotel 
bargains.

Re: Cannot load applet on web browser

2007-01-15 Thread Vacuum Joe
Oh my.  Ok, you need to get some basic familiarity with Tomcat before you leap 
into that.

First, your applet.class file should not be in WEB-INF.

Second, don't do this as a servlet.  Make a simple static HTML page work, with 
the applet, first.  Disregard WEB-INF entirely.  Getting an applet to work in a 
static HTML page in Tomcat is just the same as getting it to work in a static 
page in Apache Httpd for example.

After you have done that, try out some JSPs.  You shouldn't usually generate 
HTML by hand in a Servlet these days.  Even JSP is sort of on its way out, 
being replaced by JSF / Facelets.




 

Get your own web address.  
Have a HUGE year through Yahoo! Small Business.
http://smallbusiness.yahoo.com/domains/?p=BESTDEAL

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]