It depends where you are looking for the output.  System.out will output to
the command window that stays open after launching jswdk, vs. out.println
which will print to the jsp page.  So, if you are looking for your output on
the JSP page, try looking in the command window instead.

-----Original Message-----
From: Mistroni Marco [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 08, 2000 9:45 AM
To: [EMAIL PROTECTED]
Subject: HELP!!


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

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