Questions tagged [apache-wink]

Apache Wink is a simple yet solid framework for building RESTful Web services. It is comprised of a Server module and a Client module for developing and consuming RESTful Web services.

Apache Wink is a simple yet solid framework for building RESTful Web services. It is comprised of a Server module and a Client module for developing and consuming RESTful Web services.

The Wink Server module is a complete implementation of the JAX-RS v1.1 specification. On top of this implementation, the Wink Server module provides a set of additional features that were designed to facilitate the development of RESTful Web services.

The Wink Client module is a Java based framework that provides functionality for communicating with RESTful Web services. The framework is built on top of the JDK HttpURLConnection and adds essential features that facilitate the development of such client applications.

123 questions
0
votes
1 answer

Apache Wink 1.2 - How does a return value get added to ResponseHandler's messageContext?

I am relatively new to Wink and trying to debug a defect in which a POJO that contains a byte array is [I think] being improperly serialized into json for the response. By improperly I mean that I have unicode characters stored as a blob that have…
rogodeter
  • 460
  • 9
  • 19
0
votes
1 answer

Apache Wink - Sending JSON String in URL

URL is : http://xx.xx.xx.xx:9080/myprocess?action=start¶ms={\"inputName\":\"Test\"} In the above URL my JSON String is {\"inputName\":\"omsai\"} I am calling the Apache Wink Rest(POST) call in the following way, but it is not working. I am…
-1
votes
2 answers

JavaEE How to get api path from class declaring it

Using: Java EE + JAX-RS (Apache Wink) + WAS. Let say I have Rest API declared by class Hello, path "/hello" @Path("/hello") public class Hello{ @GET @Produces(MediaType.APPLICATION_JSON) public Response sayHello() { Map
To Kra
  • 3,344
  • 3
  • 38
  • 45
1 2 3
8
9