Re: Struts related problem..!

2006-04-21 Thread Manu George
Hi Santosh, The errors you are getting like Element type plug-in must be declared. mean that that version does not support these tags. So probably you areusing a newer version in weblogic not an older version. Regards Manu

RE: Struts related problem..!

2006-04-21 Thread Santosh Koti
Well thanks , Manu , I have tried putting a new version jars , what all jars are required , onlu struts.jar file or even those common-* set of jar files also? Thanks, Santosh. Don't talk about yourself; it will be done when you leave. -Original Message- From: Manu

Exist ClassCastException

2006-04-21 Thread Finian O'Boyle
Has anyone successfully deployed Exist to Geronimo? I get a java.lang.ClassCastExcption when I attempt an Xquery against Exist with the message Can't find/access AST Node typeorg.exist.xquery.parser.XQuesryAST which sounds like a problem with the classpath within Geronimo. The same Xquery works

Re: Exist ClassCastException

2006-04-21 Thread Aaron Mulder
I assume Exist is in your WEB-INF/lib. You might try changing the filter to just org.exist and see if that helps. Otherwise, are there any XML processing libraries that Exist depends on that Geronimo might have a copy of? What else is in your WEB-INF/lib? Thanks, Aaron On 4/21/06, Finian

RE: Exist ClassCastException

2006-04-21 Thread Finian O'Boyle
Thank you for responding so quickly, Aaron. Unfortunately, putting org.exist in hidden-classes doesn't work. WEB-INF/lib contains the standard Exist jars. They are: antlr.jar avalon-framework-api-4.1.5.jar avalon-framework-impl-4.1.5.jar axis-ant.jar axis-schema.jar axis.jar

Re: JSF support in Apache Geronimo

2006-04-21 Thread Paul McMahan
I was able to install and run the samples from http://myfaces.apache.org/ in the tomcat version of geronimo 1.0. I didn't try with the jetty version but I expect it should work. I had to make one minor adjustment to the samples' web.xml before deploying, which was to remove the description

Re: Exist ClassCastException

2006-04-21 Thread David Jencks
I think the stack trace for the exception might provide a clue about what is going on. thanks david jencks On Apr 21, 2006, at 6:21 AM, Finian O'Boyle wrote: Thank you for responding so quickly, Aaron. Unfortunately, putting org.exist in hidden-classes doesn't work. WEB-INF/lib contains

RE: Exist ClassCastException

2006-04-21 Thread Finian O'Boyle
Hi David, I'm afraid all I get in the Geronimo console is: Can't find/access AST Node typeorg.exist.xquery.parser.XQueryAST java.lang.ClassCastException and all that comes up in Oxygen, which I'm using to execute the XQuery is E java.lang.ClassCastException Finian

RE: Exist ClassCastException

2006-04-21 Thread Cristian Roldan
Hi All, If there are several ClassLoaders and they do not share all their classes. Classes loaded with separate loaders cannot see Class objects from each other and reload binaries. This is usally the case when you are using applications servers and you have several applications that interact