JAX-WS was not picked up because Weblogic12c classloader did not read "META-INF/services/javax.xml.ws.spi.Provider". It helped to define "META-INF/services/javax.xml.ws.spi.Provider" in <prefer-application-resources>, as it was described here: http://avskor.blogspot.cz/2012/04/apache-cxf-client-on-weblogic-12c.html?showComment=1346917552107#c7965340267464771542
<?xml version="1.0" encoding="UTF-8"?> <weblogic-web-app xmlns="http://xmlns.oracle.com/weblogic/weblogic-web-app"> <container-descriptor> <prefer-web-inf-classes>false</prefer-web-inf-classes> <prefer-application-resources> <resource-name>META-INF/services/javax.xml.ws.spi.Provider</resource-name> </prefer-application-resources> <prefer-application-packages> <package-name>org.python.core.*</package-name> </prefer-application-packages> </container-descriptor> </weblogic-web-app> Miloslav On Mon, Apr 23, 2012 at 7:49 PM, Daniel Kulp <[email protected]> wrote: > > You are definitely not picking up CXF here. This is the sun reference > implementation of JAX-WS that is being picked up. "com.sun.xml.ws" > > Dan >
