It is same with the jaxws:endpoint.
You need to create a service factory bean and set it to the simple:server.
Here is an example
<bean id="ReflectionServiceFactoryBean"
class="org.apache.cxf.service.factory.ReflectionServiceFactoryBean">
<property name="wrapped" value="true"/>
</bean>
<simple:server id="inlineImplementor"
address="http://localhost:8080/simpleWithAddress">
<simple:serviceBean>
<bean class="org.apache.cxf.service.factory.HelloServiceImpl"/>
</simple:serviceBean>
<simple:serviceFactory>
<bean ref="ReflectionServiceFactoryBean">
</simple:serviceFactory>
</simple:server>
BTW, You need to specify different simple:serviceFactory for different
simple:server.
You can find more information here.
http://www.nabble.com/deploy-webservices-tf4591636.html#a13107881
Willem.
mule1 wrote:
Willem - Thanks. I configured it using that example. With this simple
frontend, how can I set 'wrapped" = true?