hi all,
        i am pretty new to the world of JSP.
i am using jswdk-1.0.1
i wrote a jsp page with a form
in the bean that the jsp uses i wrote all the set methods for all the
parameters supplied
whenever one of the variables(sorry, maybe i should say property) is set, i
want to print its content
the problem is that i cannot print the content of that variable in
System.out and i cannot understand why!!!
the same code works fine with jswdk-1.0-ea

the code is

<%@ page ....
<jsp:useBean id="mybean" class="mypackage.mybean" scope="session" />.......
<jsp:setProperty name="mybean" property="*" />


and in the bean

setName(String thename) {
   name =  thename;
   System.out.println("the name supplied is " + name);


i cannot see that line printed in system.out


ANYONE CAN HELP ME??
REGARDS
        MARCO

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to