We want to implement web services in our WebLogic 8.1 Java 1.4 application. We want to create new server and call services in other applications. And we need to stick with Java 1.4 (for now).
Due to 1.4, we cannot use frameworks like Restlet or Jersey. Are there any good web service APIs (preferably REST) that support Java 1.4?
We could make a home decision if necessary. That is: just install the servlets on the server side and on the client side, just use something like HttpURLConnection.
source
share