> import com.fis.Controller.*;
should read:
import com.fis.controller.*;
> in Composer.java,
> package com.fis.Controller;
should read:
package com.fis.controller;
EVERYthing needs to be case-sensitive.
cheers
fillup
On 5/3/02 2:52 PM, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
> I've put a class struecture into Tomcat4_home/webapps/jds/WEB-INFO/classes
>
> the structure is:
>
> --classes (file: Find.class)
> --com
> --fis
> --controller (Controller.class, Composer.class)
>
> in Find.java:
> import com.fis.Controller.*;
> ...
> protected Controller controller =null;
> ...
> controller = new Controller(...);
>
>
> in Composer.java,
> package com.fis.Controller;
> Hi,
> I can't figure it out what is happening. please help.
>
> in Controller.java:
> package com.fis.Controller;
>
> private com.fis.Controller.Composer _composer = null;
> //Controller constructor:
> {
> _composer = new com.fis.Controller.Composer(..., ...); # ERROR LINE
> (line 104)
> ..
> }
>
> java.lang.NoClassDefFoundError: org/apache/xerces/dom/DOMExceptionImpl at
> com.fis.Controller.Controller.(Controller.java:104) at
> Find.init(Find.java:54)
> ...
>
>
>
> My Qestion is :
> Why the NoClassDefFoundError? the Controller.class and Composer.class is in
> the same package!
>
>
> Thank you very much.
>
>
--
To unsubscribe: <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>