Well, while you are absolutely right that Java does not care about the case
of an identifier, JavaBeans does.  If you do not follow the naming
conventions, you will not be able to access your classes as beans.  The
"symbol" that could not be resolved may be a misnamed bean property.
    (*Chris*)

----- Original Message -----
From: "c2yh" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, July 11, 2001 8:43 PM
Subject: Re: [JSP-INTEREST] cannot resolve symbol


Actually Java does not care how you name your classes!
As long as you call the java class with its EXACT name.

so, if you name it "DefaultXYDataSource", you must use it as
"DefaultXYDataSource".
The "DefaultXYDataSource.class" must be put in your CLASSPATH folder.

There are 2 main reasons for "cannot resolve symbol" error:

1. the "DefaultXYDataSource.class" is not in your CLASSPATH folder.

2. You name it as "DefaultXYDataSource" but you call the class by some
other names in your script.


c2yh


On 7/11/2001 at 11:10 AM C�dric Favier wrote:

>Hello
>
>I use Java 2 SDK v 1.3
>When I use java file with upper case  in the file name, I get this
>message : "cannot resolve symbol" "symbol : class DefaultXYDataSource"
>I need you help, Thanks a lot..

=========================
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=P
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=rvlets


_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


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