summaryrefslogtreecommitdiffstats
path: root/sandbox/sebastien/java/sca-node/tutorial/www-services/catalog-amazon/cart-amazon/src/main/resources/shoppingstore.composite
blob: f03ce10d3b52aa04a2ac12c05287b882cae2532b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
			targetNamespace="http://webservices.amazon.com/AWSECommerceService/2007-05-14"
			xmlns:tns="http://webservices.amazon.com/AWSECommerceService/2007-05-14"
			xmlns:db="http://tuscany.apache.org/xmlns/databinding/1.0"
           name="ShoppingStore">
    
    <component name="ShoppingStoreServiceComponent">
	    <service name="ShoppingStoreService" >
	        <interface.wsdl interface="http://webservices.amazon.com/AWSECommerceService/2007-05-14#wsdl.interface(AWSECommerceServicePortType)" />
	        <binding.ws />
	        <db:databinding name="jaxb" />
	    </service>
    	<implementation.java class="shoppingstore.services.proxy.ShoppingStoreServiceImpl" />
		<reference name="cartService" target="CartServiceComponent"></reference>
    </component>

	<component name="CartServiceComponent">
        <implementation.java class="shoppingstore.services.cart.CartServiceImpl" />
    </component>
</composite>