Julio Oliveira wrote: > There are some for JAX-RS ? As far as I know, CXF doesn't provide anything for the *client* side of RESTful services.
For server-side session support you should just be able to make your service beans session-scoped (with <aop:scoped-proxy/>). See the notes at the bottom of http://cwiki.apache.org/CXF20DOC/jax-rs-jsr-311.html about Spring AOP for details of the potential pitfalls. Alternatively you could use the HttpSession directly by injecting a MessageContext into a singleton service bean and accessing the HttpServletRequest through that. Ian -- Ian Roberts | Department of Computer Science [email protected] | University of Sheffield, UK
