I am working on a project using JDeveloper 10g (yes, imagine that).
The project consists of developing RESTful web services with Jersey.
What is driving me crazy, is that whenever I use the javax.ws.rs.core.Response
I get this error when trying to build my project:
Error: Status$Family not found in enum javax.ws.rs.core.Response.Status.Family
I found this thread in java.net. As Paul said, I thought it would be some version conflict (jre 5). So I downgraded to Jersey 1.2, and used the jsr311-api-111.jar as advised, but no chance.
Would anyone have an idea how to solve this problem ?
PS: The same project, can be built fine in JDeveloper 11g.