Hi
I'm using Jersery for ws in my project. I've got a JPA backend with lots of
entitys. Question:
How do I generate java POJO stubs from my Jersey ws? For SOAP I was able to
generate client-side stubs, but not for REST?
Frontend is a backingbean with JSF pages.
<code>
wr =
client.resource("
http://localhost:8080/pe-backend/resources/activities");
activityList = wr.get(new GenericType<List<Activity>>() {
});
</code>
How shouold my backingbean know what Activity is?
/x
--
View this message in context: http://n2.nabble.com/Client-java-stubs-with-Jersey-tp3565216p3565216.html
Sent from the Jersey mailing list archive at Nabble.com.