<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:simple="http://cxf.apache.org/simple"
      xsi:schemaLocation="
		http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
		http://cxf.apache.org/simple http://cxf.apache.org/schemas/simple.xsd">
		
	<!-- using Simple Client Bean --> 
	<simple:client id="movieServiceSimple" serviceClass="anyframe.sample.movie.MovieService" address="http://localhost:9002/Movie">
		<simple:dataBinding>
			<bean class="org.apache.cxf.aegis.databinding.AegisDatabinding" />
		</simple:dataBinding>
	</simple:client>
	
</beans>


