Hi,
You can use the simple front end custom server bean definition.
Please see [1] for more information.
[1] http://cwiki.apache.org/CXF20DOC/simple-frontend.html
Willem.
ojs wrote:
Hello,
I'm trying to switch from xfire to cxf - don't had much luck so far...
My xfire configuration (in spring) looks like:
<bean name="/myService"
class="org.codehaus.xfire.spring.remoting.XFireExporter">
<property name="serviceInterface" value="myBean"/>
<property name="serviceBean" ref="myBeanImpl"/>
<property name="xfire" ref="xfire"/>
</bean>
So Spring's DispatcherServlet handles the request and forward request to
/myService to this bean. The service I'm exporting isn't (and shouldn't be)
annotated. Is there a similar thing in cxf to export a service as it is
possible with xfire?
Best
Oliver