Could somebody to help me
I have two little problems :
I use ServletExec for jsp pages
When I use a jsp page with a bean tag and if I make changes to my
bean class I have to restart the computer if I want that the jsp file
take changes. What can I do to avoid that ? (I try to stop my web server and
restart but that change anything)
The second problem is when I want to test a jsp file that I have
created with a bean tag (see source below) I receive a white page
in my browser. Why ? (My classpath is c:\inetpub\ServletExec
ISAPI\Examples\newatlanta\bean\oli.class) and c:\inetpub\ServletExec
ISAPI\Examples)
Thanks a lot
olivier
SOURCE FOR BEAN CLASS
package newatlanta.bean;
import javax.servlet.http.*;
public class oli {
String nom = "lllll";
public String getNom(){
return nom;
}
}
SOURCE FOR JSP FILE
<HTML>
<HEAD>
<TITLE> type_Document_Title_here </TITLE>
</HEAD>
<BODY>
<BEAN name="oli" type="newatlanta.bean.oli" scope="request" beanName="oli"
create="yes">
</BEAN>
Your name is <%= oli.getNom() %>
</BODY>
</HTML>
______________________________________________________
Get Your Private, Free Email at http://www.hotmail.com
===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST". For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".