We want to implement web services on our Weblogic 8.1 Java 1.4 application. We want to create new server services and call services in other apps. And we need to stick with Java 1.4 (for now).
Due to 1.4 we can't use frameworks like Restlet or Jersey. Are there any good web service (preferably REST) API frameworks that support Java 1.4?
We could do a home grown solution if necessarily. Ie: just setup servlets on the server side and on the client side just use something like HttpURLConnection
.