Java and WSDL-Based Integration Example
When wiring any two service components (or a service component with a binding component), each end of the wire has an interface defined. With XML, those interfaces must have the same WSDL definition, and are defined with interface.wsdl
in the composite.xml
file.
From the JAX-WS point of view, when wiring a Java interface (which is defined by interface.java
) to a WSDL interface, it is assumed that the two interfaces are compatible. This is typically enforced and automated by Oracle JDeveloper.
Note:
Only use Oracle JDeveloper in Design view to create and modify the composite.xml
and spring context files described in this section. Do not directly edit these files in Source view. These examples are provided to show you how Java interfaces and WSDL files are integrated in a SOA composite application. Use of Oracle JDeveloper to achieve this functionality is described in subsequent sections of this chapter.
For example, assume you have a Java interface for a service, as shown in the following example:
public interface PortfolioService { public double getPorfolioValue(String portfolioId); }
Assume the implementation can use an additional StockQuote
service that is implemented by another component that may be an external web service, or an EJB. The following example provides details:
public interface StockQuote { public double getQuote (String symbol); }
The composite.xml
file for the spring framework lists the PortfolioService
service and the StockQuote
service with the interface.java
definitions. The following example provides details.
<component name="PortfolioComp"> <implementation.spring src="Spring/PortfolioComp.xml"/> <componentType> <service name="PortfolioService"> <interface.java interface="com.bigbank.PortfolioService"/> </service> <reference name="StockService"> <interface.java interface="com.bigbank.StockQuote"/> </reference> </componentType> </component>
The implementation class implements the service interface and provides a setter for the reference interface. The following example provides details:
public class PortfolioServiceImpl implements PortfolioService { StockQuote stockQuoteRef; public void setStockService (StockQuote ref) { stockQuoteRef = ref; } public double getPorfolioValue(String portfolioId) { //-- use stock service //-- return value } }
The spring context file calls out the services and references and binds them to the implementation. The following example provides details:
<beans ...> <sca:service name="PortfolioService" type="com.bigbank.PortfolioService" target="impl"> </sca:service> <sca:reference name="StockService" type="com.bigbank.StockQuote"> </sca:reference> <bean id ="impl" class ="com.bigbank.PortfolioServiceImpl"> <property name="stockService" ref="StockService"/> </bean> </beans>