jersey
Jersey REST Client: How to add XML file to the body of POST request?
My code so far: FileReader fileReader = new FileReader(\"filename.xml\"); Client c = Client.create(); WebResource webResource = c.resource(\"http://localhos开发者_C百科t:8080/api/resource\");[详细]
2023-03-19 11:58 分类:问答Resource not available problem
I get a HTTP Status 404 - Requested resource (/Fun/hello) is not available. I am running Tomcat 7.0, Jersey 1.8, Java 1.6, Eclipse Helios 2.[详细]
2023-03-19 04:21 分类:问答Use JAXB-RI with Jersey
I am using the xjc ant task provided by the JAXB-RI to generate our jaxb classes and provide all the jaxb jars in with my web application开发者_JAVA百科\'s WEB-INF/lib folder. Jersey is still using th[详细]
2023-03-18 22:42 分类:问答RESTful development -How to share with clients?
I am using Jersey/Tomcat6 for dveloping some web services. Compared to what I did for SOAP services, I am not getting the idea what should I share to my clients once the services are developed...just[详细]
2023-03-18 13:53 分类:问答Encrypting data for RESTful services using Jersey
I am using Jersey for my RESTful web service development. I already have configured SSL for Point to Point security...but I need some application level security (end to end), for which I guess encrypt[详细]
2023-03-18 13:16 分类:问答Jersey client filter thread safety
I am using a singleton instance of the jersey client configured through spring, with multiple threads that each set different authentication filters on the client. According to the docs[详细]
2023-03-17 19:12 分类:问答Most secure way to secure Jersey REST Services
I\'m looking really for just advice. I have a system up and running on my amazon cloud instance that is basically a bunch of REST services running on JBoss. My next step is to secure these services as[详细]
2023-03-16 19:32 分类:问答Get body content using HttpServletRequest in Jersey
I am using Jersey 1.7 and I am trying to access the request body in my method very similar to this question:[详细]
2023-03-16 19:16 分类:问答For RESTful services in Java, is JAX-RS better than an MVC framework like Swing, Grails or Play?
For example, Play-framework supports RESTful services like this: RESTful on Play! framework How does this compare to something like Jax-RS Jersey implementation?Does a framework like Play run circles[详细]
2023-03-16 15:16 分类:问答Custom HTTP status response with JAX-RS (Jersey) and @RolesAllowed
With my very simple JAX-RS service I\'m using Tomcat with JDBC realm for authentication, therefore I\'m working the the JSR 250 annotations.[详细]
2023-03-16 08:17 分类:问答