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> […]

XML Bursting in Oracle Apps

XML Bursting XML Bursting can be used to split one XML File into multiple XML Blocks. These individual xml blocks can then be used to generate reports and even use different layouts. You can also deliver the reports to multiple destinations based on a XML Element. The steps involved are listed below for your understanding: […]