is it violation of spec?

    according to the .92 spec the boolean propetry of the bean
could be specified by declaring
               public boolean isXYZ();
      the returned value will automatically converted into the String.
  but while using JRun2.3 i am not getting the behaviour
  what i am getting is...

i am getting the output "Inside getLI..."
 ################using this####################
      public String getLI(){
            System.out.println("Inside getLI.."+loggedIn);
             return "true";
      }
###################################################
but the same is not working if i declare it using Beans pattern it returns
null all the time.

      public boolean isLI(){
            System.out.println("Inside getLI.."+loggedIn);
             return loggedIn;
      }
#####################################################
 i could post my Bean Source if required
any Information over this is greatly helpful
--Nitesh kumar Neema

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

Reply via email to