Hello everybody !

Could someone help me for the error message triggered on this test page ? It
only instanciates a Java Bean :-(
http://www.webappcabaret.com/francis/test.jsp

The error message is the following :
Error: 500
Location: /francis/test.jsp
TotoBean

Here are the source code for this, thanks !

// TEST.JSP (in francis/)
<jsp:useBean id="toto" class="TotoBean"/>

// TotoBean.class (in francis/WEB-INF/classes)
public class TotoBean
{
        public int toto;

        public TotoBean()
        {
        }

        public void Hello()
        {
                this.toto = 20;
        }
}

The files are in the right folders on the distant server and right compiled,
I've got the same error message on my personnel server and I don't know why.
Thank you again for your help !

Florian

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to