That's really helpful and I will switch to jax-rs. Could you paste a complete beans.xml file? Or point me at a URL with the complete file?
John Baker -- Web SSO IT Infrastructure Deutsche Bank London URL: http://websso.cto.gt.intranet.db.com "Sergey Beryozkin" <[EMAIL PROTECTED]> 29/04/2008 11:50 Please respond to [email protected] To <[email protected]> cc Subject Re: CXF 2.1, Rest and Spring configuration Hi John, In your bean.xml you can do something like : <beans> <!-- your service class --> <bean name="ServiceClass" class="com.Service"> <!-- JAXWS SOAP--> <jaxws:endpoint implementor="#ServiceClass" address="/Greeter"/> <!-- JAXRS --> <jaxrs:server address="/jaxrsgreeter"> <jaxrs:serviceBeans> <bean ref="#ServiceClass" /> </jaxrs:serviceBeans> </jaxrs:server> <!-- JAXWS HTTP Binding --> <jaxws:endpoint implementor="#ServiceClass" address="/GreeterHttpBinding"/> </beans> and then have both JAX-WS and JAX-RS annotations applied to the com.Service class at will... By the way, as far as writing RESTful services is concerned, I do encourage you to migrate your HTTP Binding service to JAX-RS. JAX-RS is a standard and in the end of the day you should be able to run the same code with different JAX-RS implementations Cheers, Sergey ---------------------------- IONA Technologies PLC (registered in Ireland) Registered Number: 171387 Registered Address: The IONA Building, Shelbourne Road, Dublin 4, Ireland --- This e-mail may contain confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and delete this e-mail. Any unauthorized copying, disclosure or distribution of the material in this e-mail is strictly forbidden. Please refer to http://www.db.com/en/content/eu_disclosures.htm for additional EU corporate and regulatory disclosures.
