----- Original Message ----- From: "Wellie W. Chao" <[EMAIL PROTECTED]> > I'm having problems passing DynaBean and DynaClass objects as arguments, > whether to static class methods within another class or to EJB objects. I > get the following error: > > java.lang.LinkageError: Class org/apache/commons/beanutils/DynaClass > violates loader constraints
This usually signifies a ClassLoader problem. Maybe commons-beanutils.jar is on the System classpath and also inside a WEB-INF/lib or something like that? > Is it possible to pass DynaBean and DynaClass objects as arguments, either > to normal methods Sure, they are regular java objects. > or (potentially) across the network to EJB objects? Right now I don't think DynaBean / DynaClass are Serializable so they can't be used as arguments to EJBs - that should probably be fixed I guess. James _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
