Tagged Questions
1
vote
1answer
86 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
1answer
97 views
How to access CDI managed bean from JAX-RS MessageBodyWriter?
I'm struggling with accessing CDI managed beans from a JAX-RS message body handler in TomEE.
My handler class (implements MessageBodyWriter<Object>, MessageBodyReader<Object>) is ...
2
votes
0answers
123 views
EJB JAX-RS @Context HttpServletRequest NullPointerException - Why?
Consider the following service:
@Path("/")
@Stateless
public class SomethingService {
@Context
final HttpServletRequest request
@POST
@Path("post/something/")
...
0
votes
0answers
72 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.
...
1
vote
0answers
193 views
Why does injected UriInfo use a different hostname than injected HttpServletRequest?
I'm learning JAX-RS, and like the idea of returning URLs to other relevant actions in a response. Using Apache TomEE JAX-RS 1.5.1, for some reason the URLs provided by an injected UriInfo instance are ...
2
votes
2answers
715 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 ...
1
vote
1answer
1k views
“No resource methods” when using JAX-RS on TomEE+
Using stock TomEE+, I cannot get a simple JAX-RS resource to work. I constantly get an error of:
Jun 30, 2012 5:09:59 PM org.apache.cxf.jaxrs.utils.ResourceUtils checkMethodDispatcher
WARNING: No ...