1. @Path regex expression in RESTful server stackoverflow.comI'm writing a RESTful Java server with CXF framework. How do I can write a @Path Regular Expression in order to obtain any URI finished in "/action" value? |
2. Upload to CXF restful web service stackoverflow.comI'm trying to implement apache commons fileupload in my cxf restful web service. For some reason, |
3. UTF-8 For Restful Services stackoverflow.comCurrently i enable UTF-8 as @Consumes("application/xml;charset=utf-8") in the RESTful Services for the different methods. I am interested to see if we can change this for all REST services with a single ... |
4. Is it possible to use MTOM in reponse of CXF RESTful Web Service stackoverflow.comI'm using CXF 2.2.12 library for my Web Services. Is it possible to use MTOM (Message Transmission Optimization Mechanism) in RESTful response? Would appreciate any links to docs/tutorials regarding this. Thanx! |
5. How can I pass complex objects as arguments to a RESTful service? stackoverflow.comI have successfully set up a quick test of creating a "REST-like" service that returns an object serialized to JSON, and that was quite easy and quick (based on |
6. CXF Restful service complex object unmarshalling does not work stackoverflow.comI am new at restful services, and had a relatively good start, until I decided to play with some complex objects. The problem I am hitting is about unmarshalling an object ... |
7. RESTful produces binary file stackoverflow.comI'm new using CXF and Spring to make RESTful webservices. This is my problem: I want to create a service that produces "any" kind of file(can be image,document,txt or even pdf), and ... |
8. Is Jersey just a framework for developing RESTful web services in Java? stackoverflow.comThe way I understand it is Java EE 6 includes the classes for java.ws.rs (JAX-RS) which are defined in the JSR 311 spec document. But I don't know why you would ... |
9. Java CXF restful webservices stackoverflow.comMy webservice class is as following:
|
10. Increasing the number of instances for RESTful CXF service stackoverflow.comIs there a way to increase the number of Restful CXF service instance? This is required in order to increase the performance of my service in the event when multiple ... |
11. Accessing the GET parameters of a URL in a RESTful service using Apache CXF REST HTTP binding coderanch.comHi, I am using the example provided in Apache CXF 2.3.3 whereby a service interface and implementation are defined to have the following method: @Get @HttpResource(location = "/customers/{id}") Customer getCustomer(@WebParam(name = "GetCustomer") GetCustomer getCustomer); I was wondering how I could access the get parameters that might be sent in the implementation of the method? Is there a standardized, clean way, of ... |