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

Reply via email to