Author: Roshan Thomas

  • SOAP web service using Apache CXF and Spring

    In this article I will explain how to expose SOAP web service using Apache CXF and Spring framework. If you are using maven, add this to your maven pom file to download the required dependencies. [code language=”xml”] <properties> <cxf.version>3.0.4</cxf.version> <spring.version>4.0.5.RELEASE</spring.version> </properties> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>${spring.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>…