Hi,
You can use the simple:server tag for it.
Here are some examples for it [1]
[1]https://svn.apache.org/repos/asf/incubator/cxf/trunk/rt/frontend/simple/src/test/java/org/apache/cxf/frontend/spring/servers.xml
Willem.
mule1 wrote:
Hello,
I wanted to configure my services for exposing my service for plain xml over
http by using the simple frontend configuration instead of jaxws. How can I
do that?
I saw that using jaxws, I can do this, but I want my webservices configured
without annotations - so, want to do it with simple frontend.
An example I saw for configuration using jaxws:
<jaxws:endpoint
id="hello_world_xml"
implementor="demo.hw.server.GreeterImpl"
address="/xml"
bindingUri="http://cxf.apache.org/bindings/xformat">
</jaxws:endpoint>
Thanks.