views:

383

answers:

4

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.

+1  A: 

Java 1.4 is EOL since 2006. REST become a 'hype' since around 2008.

Almost no one API/framework builder is going to support EOL'ed products, so don't expect much.

You can however homegrow one yourself. It's basically easy to do with help of a Filter.

BalusC
+1  A: 

Apache Axis2 prior to version 1.5 should do the work with Java 1.4 and supports REST

Alexandre Pauzies
Good suggestion. Is Axis just a web service client API (calling web services)? Does it also help setting up server web services?
Marcus
No it's not just a calling Web Services, you can use it to provide (server side) services as well
Alexandre Pauzies
+1  A: 

Try again Restlet with Retrotranslator as suggested by the lead developer.

http://www.mail-archive.com/[email protected]/msg07163.html

John Doe
Good point. I've never used Retrotranslater. Makes me nervous (for no good reason)
Marcus
A: 

NetKernel 3 requires only Java 1.4.2. It can be embedded as a Servlet in your configuration. Here is a case study that describes this usage.

Randy Kahle