Hi,

I'm looking for some documentation on how to use spring's Ioc within the 
service endpoint setup. 

For example having:

<beans xmlns="http://www.springframework.org/schema/beans";
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
        xmlns:jaxws="http://cxf.apache.org/jaxws";
        xsi:schemaLocation="
http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans.xsd
http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd";>

        <import resource="classpath:META-INF/cxf/cxf.xml" />
        <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
        <import resource="classpath:META-INF/cxf/cxf-servlet.xml" />

        <jaxws:endpoint 
          id="helloWorld" 
          implementor="demo.spring.HelloWorldImpl" 
          address="/HelloWorld" />        
</beans>

I would like to provide my own beans and inject them in different endpoints or 
for example to configure the endpoints to be transactional using spring's 
transaction framework.

Is there any documentation showing how to use spring with cxf? The only 
document I found is 
http://cwiki.apache.org/CXF20DOC/writing-a-service-with-spring.html, but this 
is a very pure document :(
Regards Piotr

_________________________________________________________________
Discover the new Windows Vista
http://search.msn.com/results.aspx?q=windows+vista&mkt=en-US&form=QBRE

Reply via email to