[jboss-user] [JBoss/Spring Integration] - Re: IllegalArgumentException when trying to deploy an ear

2009-04-16 Thread Grexe
The only thing that helped was to replace the Spring-JARs that come with JBoss-WS/CXF (spring-beans, -context and -core) with pristine JARs from a clean Spring distribution. The ones that come with JBoss-WS seem to be borked somehow. View the original post :

[jboss-user] [JBoss/Spring Integration] - Re: IllegalArgumentException when trying to deploy an ear

2009-04-09 Thread Grexe
Unfortunately I stumble across the same issue but the proposed solution did not help, double-checked my classpath and tried different Spring-versions, even replacing spring-jars in jbossws.sar, but still get the same error, using JBoss 4.2.3.GA + jbossws-cxf-3.1.0.GA on Windows Vista, JDK

[jboss-user] [JBoss/Spring Integration] - Re: IllegalArgumentException when trying to deploy an ear

2009-04-09 Thread alesj
Perhaps some duplicated jar/class? e.g. one in JBossAS, 2nd in your web app As web CL is always a 'funny' thing to tackle. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4224793#4224793 Reply to the post :

[jboss-user] [JBoss/Spring Integration] - Re: IllegalArgumentException when trying to deploy an ear

2006-12-26 Thread aegana
Yes, it was a class loading issue. I was told that the problem was that the Isolated class loader was enabled. I turned it off by setting the properties Isolated and CallByValue to 'false' in the '${..}/deploy/ear-deployer.xml' file. I still don't know why this worked but I'm happy ... Thanks

[jboss-user] [JBoss/Spring Integration] - Re: IllegalArgumentException when trying to deploy an ear

2006-12-26 Thread alesj
aegana wrote : Yes, it was a class loading issue. I was told that the problem was that the Isolated class loader was enabled. I turned it off by setting the properties Isolated and CallByValue to 'false' in the '${..}/deploy/ear-deployer.xml' file. | Ah yes, the isolation. We/I should do

[jboss-user] [JBoss/Spring Integration] - Re: IllegalArgumentException when trying to deploy an ear

2006-12-24 Thread alesj
anonymous wrote : | Caused by: java.lang.IllegalArgumentException: Class [org.springframework.beans.factory.xml.SimplePropertyNamespaceHandler] does not implement the NamespaceHandler interface Where do you have Spring lib jars?