Here is my solution:
<!-- WSS4J -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-ws-security</artifactId>
<version>${cxf.version}</version>
</dependency>
I also need to plugin xalan as well.
-------------------------------
yulinxp wrote:
>
> I need to add in CXF to webwork project. webwork has integrate with
> Spring. I use maven-2.0.7.
> After deploying to JBoss, I try to access the service. But I got the
> following error.
> What did I miss?
>
> <soap:Envelope>
> <soap:Body>
> <soap:Fault>
> <faultcode>soap:Server</faultcode>
> <faultstring>No such operation: </faultstring>
> </soap:Fault>
> </soap:Body>
> </soap:Envelope>
>
> Below is my pom.xml
>
> <repositories>
> <repository>
> <id>apache.incubating.releases</id>
> <name>
> Apache Incubating Release Distribution Repository
> </name>
> <url>
> http://people.apache.org/repo/m2-incubating-repository
> </url>
> </repository>
>
> </repositories>
>
> <properties>
> <cxf.version>2.0.3-incubator</cxf.version>
> </properties>
>
> <dependency>
> <groupId>org.apache.cxf</groupId>
> <artifactId>cxf-rt-core</artifactId>
> <version>${cxf.version}</version>
> </dependency>
> <dependency>
> <groupId>org.apache.cxf</groupId>
> <artifactId>cxf-rt-frontend-jaxws</artifactId>
> <version>${cxf.version}</version>
> </dependency>
> <dependency>
> <groupId>org.apache.cxf</groupId>
> <artifactId>cxf-rt-transports-http</artifactId>
> <version>${cxf.version}</version>
> </dependency>
>
--
View this message in context:
http://www.nabble.com/maven-build-problem-tp14760998p14763592.html
Sent from the cxf-user mailing list archive at Nabble.com.