Has anyone implemente
Hi
Had the exact same problem in oracle app server. But did a couple of things.
first I upgraded to latest xfire libraries. Did also consider moving to CXF but skipped it, due to risk wasting time on incompatibilities.
In a pom.xml the xfire-dependencies to 1.2.6 are given as
<dependency>
<groupId>org.codehaus.xfire</groupId>
<artifactId>xfire-jaxb2</artifactId>
<version>1.2.6</version>
</dependency>
<dependency>
<groupId>org.codehaus.xfire</groupId>
<artifactId>xfire-spring</artifactId>
<version>1.2.6</version>
</dependency>
<dependency>
<groupId>org.codehaus.xfire</groupId>
<artifactId>xfire-java5</artifactId>
<version>1.2.6</version>
</dependency>
But most important. in the container-specific deployment descriptor, (orion-web.xml) I set
<web-app-class-loader search-local-classes-first="true" />
In the corresponding weblogic.xml there is an element
The <prefer-web-inf-classes> element, if set to true, will cause classes located in the WEB-INF directory of a Web application to be loaded in preference to classes loaded in the application or system classloader. The default value is false. A value specified in the console will take precedence over a value set manually.
Try setting this to true