I have the following annotation in my RESTEasy code: @Path(\"/v1/authenticateService\") Enunciate generates a \"Mount Point\" in the documentation as:
I\'m needing CDI functionality on a rest application in which I\'m using RESTEASY. So I followed the manual\'s instruction to setup resteasy-cdi module on my app, that runs on JBoss AS7.
With RESTEasy I\'ve implemen开发者_StackOverflow中文版ted a subclass of Application to provide a list of singleton resources. Is there a way to add another singleton dynamically later on? I\'ve not fo
RESTEasy (a JAX-RS implementation) has a nice client framework, eg: RegisterBuiltin.register(ResteasyProviderFactory.getInstance());
I have problem with Jax-rs @Path variable, I need to differentiate the following two pathparams @Path({domain}/{id})
I have a RESTful service client. The service returns SortedSet<Movie>, where Movie is a JAXB annotated class. The resulting XML is given below.
I\'m using RESTEasy asynchronous (Comet) IO support on Tomcat 6 via the NIO Connector. Currently, TCP connections are getting dropped by the server after each response is sent back to the client.
I\'m receiving LZMA compressed data via a request to a REST based web service.Is LZMA supported by the jax-rs specification?I\'m using the RESTEasy implementation of the JAX-RS spec. My app se开发者_S
I\'m writing an app using Resteasy that can return both JSON and XML, but at a choice will default to XML. Here\'s my method:
RESTEasy (JAX-RS) allows dynamic dispatching via sub-resources.For instance: POST /customers/create {\"name\":\"Smith\",\"country\":\"jp\"}