1
vote
1answer
88 views

Can't get CXF JAX-RS and JSF to work together

I'm trying to setup a small example application FooTest that uses CXF JAX-RS and JSF. I started with the CXF part, implemented a simple service (works) and a small html page called home.html (I can ...
0
votes
0answers
82 views

JAX-RS webservice using @Path(“/”) at class level fails on TomEE+ 1.5.1

This simple root resource class fails when running on TomEE+ 1.5.1, return is a 404 error "The requested resource is not available." It is packaged as a WAR with and empty web.xml file in WEB-INF. ...
0
votes
1answer
252 views

Tomee+ JAX-RS: Jackson annotations ignored

I've got a problem with Jackson annotations that seem to be ignored in Tomee+ v1. I use Jackson to have my REST responses serialized to JSON. I switched it on setting: openejb.cxf.jax-rs.providers = ...
2
votes
2answers
720 views

How to write a REST client, based on CXF, in TomEE?

I would like to use my REST client, developed with CXF, with TomEE/TomEE+ 1.0, but I have a little problem with JAXB JSON marshalling/unmarshalling (with the Jackson library). I tried both Jersey ...