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 ...
2
votes
1answer
54 views
Can Apache Wink be used for Android?
I am working with REST services in Android. Is it possible to use Apache Wink for implementing REST in Android?
2
votes
1answer
310 views
Should I stick to axis2c or move to apache wink?
We have a webservice built in Axis2/c in which the methods in turn calls an in-house application on the server. Since Axis2/c was widely accepted to be good as far as performance and stability was ...
1
vote
1answer
122 views
Find root cause of “net.sf.json.JSONException: JSON does not allow non-finite numbers”
I am creating a relatively complex and large structure encoded in json to send to a Web service. I use plain java and Apache Wink for JSON. Most requests go well but in one particular case I receive ...
1
vote
1answer
186 views
Can I implement Hibernate (JSR 303) method validation with apache wink (JAX/RS)
I am currently investigating using the hibernate validators support for Method validation using JSR 303 annotations. An initial attempt tried to wrap the resources with a proxy (generated using cglib) ...
1
vote
1answer
208 views
Can not load webpage in Rest webservice using apache wink
I have successfully implemented rest webservice using apache wink. I am using ant to build war and to deploy it to tomcat server. Now I want include html or jsp file in the project to display some ...
1
vote
1answer
620 views
restful call Wrong MediaType format for MediaType:“*; q=.2”
Trying to execute restful web service using POST method. Here is the relevant part of my interface:
@Path("/customers")
public interface CustomerResource {
@POST
...
1
vote
2answers
997 views
How do I register the Jackson provider with the Wink client?
I'm trying to set up a toy application (which may turn in to a real application someday). I'm running into a problem with Wink and Jackson. I've got two applications: one runs wink-server on jetty and ...
0
votes
1answer
46 views
Beans injected into Apache Wink with Spring aren't registered
Following on from How do I inject a Spring bean into Apache Wink?
I'm now using wink-spring-support and I thought I had things set up correctly.
web.xml includes:
<context-param>
...
0
votes
1answer
23 views
How do I inject a Spring bean into Apache Wink?
How do I inject Spring-managed beans into Apache Wink?
I have a wink application started in web.xml that starts fine if I stub out a dummy data service @Autowired under an interface within it. I have ...
0
votes
1answer
30 views
Resource found but does not get executed
I have customized Apache Wink to use an XML provider, basically overriden the standard JacksonJsonProvider.
See http://jackson-users.ning.com/forum/topics/jackson-xml-provider for details
The ...
0
votes
1answer
248 views
JSON parsing in JAVA problem with Control Characters
I'm receiving via HTTP a JSON petition. When coming from Internet Explorer 8 parsing fails with the exception:
InPart inPart = mp.next();
MyClass myClass = inPart.getBody(MyClass.class, null);
...
0
votes
3answers
445 views
Jersy or Wink on WebSphere
We are looking at which REST framework to use and where to run it.
Given an existing WebSphere (6.1.0.17) environment would you use Jersy of Wink? Or would you recommend a different platform?
0
votes
1answer
259 views
apache wink jettison
Using Jettison provider.
public Set getClasses() {
Set s = new HashSet();
s.add(DatabaseResource.class);
return s;
}
public Set<Object> getSingletons() {
Set s = new HashSet();
...