Re: useBean class name problem

2000-08-18 Thread Joseph B. Ottinger
This is accurate to the spec. jsp:useBean / doesn't use imported packages. Some JSP engines (GnuJSP, notably) ignore this. On Fri, 18 Aug 2000, Dave Lin wrote: dear Sir, I got a problem when I use the jsp:useBean/ tag, I have a bean in package com.xxx.yyy.zzz, when I write the code: %@

useBean class name problem

2000-08-17 Thread Dave Lin
dear Sir, I got a problem when I use the jsp:useBean/ tag, I have a bean in package com.xxx.yyy.zzz, when I write the code: %@ import="com.xxx.yyy.zzz.*"% jsp:useBean id="bb" class="bean" scope="request" it doesn't work!!! but when I use %@ import="com.xxx.yyy.zzz.*"% jsp:useBean id="bb"

Fw: useBean class name problem

2000-08-17 Thread Dave Lin
- Original Message - From: "Dave Lin" [EMAIL PROTECTED] To: "A mailing list about Java Server Pages specification and reference" [EMAIL PROTECTED] Sent: Friday, August 18, 2000 12:06 PM Subject: useBean class name problem dear Sir, I got a problem when I use

Re: useBean class name problem

2000-08-17 Thread Yasir Feroze Minhas
Hi there, You have to specify fully qualified path for a bean class in jsp:useBean tag y - Original Message - From: Dave Lin [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August 18, 2000 9:06 AM Subject: useBean class name problem dear Sir, I got a problem when I use