Object X is not a component error

2002-01-29 Thread Ivan Rubin Ayma
2002 18:05 Para: [EMAIL PROTECTED] Asunto: Object X is not a component error I wrote the simplest component I could and at sitemap-compilation cocoon keeps on giving me: Error in sitemap configuration : Object Zeus.core.cocoon.JSessionLogin is not a Component Why? The component: public class

RE: Object X is not a component error

2002-01-29 Thread Vadim Gritsenko
Message- From: Ivan Rubin Ayma [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 29, 2002 9:06 AM To: [EMAIL PROTECTED] Subject: Object X is not a component error I tried to put the component in the package org.apache.cocoon.acting wondering what IllegalAccessException could be, but nothing

Re: Object X is not a component error

2002-01-29 Thread Berin Loritsch
Ivan Rubin Ayma wrote: Vadim, So the problem should be my environment, which is not the best, but is simple. I'm using JBuilder to run Tomcat and Cocoon with jars. I've included on the project all the tomcat jars and the web-apps/cocoon/WEB-INF/lib/*.jar, where the avalon framework is

RE: Object X is not a component error

2002-01-29 Thread Vadim Gritsenko
:16 Para: [EMAIL PROTECTED] Asunto: RE: Object X is not a component error This exception is thrown when your object does not implement Component interface: if (!(jSessionLogin instanceof Component)) throw IllegalAccessException(); Usually this happens when your component does