SOAP Java 1.4.2

What libraries are available for writing a SOAP client in Java version 1.4.2?

+1


a source to share


5 answers


Apache Axis runs on Java 1.4 and has good support for specifications such as WS-Security.



+2


a source


The two main parameters are Apache Axis / Axis2 and the Sun Metro JAX-WS stack (included in J2EE 5 and J2SE 6).



However, Metro is Java 5 and newer as it uses annotations.

+1


a source


Neither Metro nor CXF will work with Java 1.4.x, they both require Java5. I think the only options are Axis / Axis2 and XFire, but even Axis2 1.5 will only be Java 5 and XFire is largely replaced by CXF. Java 1.4 is pretty much a dead end for WebServices stacks.

+1


a source


Most of them were around then; you will most likely have to upgrade to archived versions, although there are a few big changes right now. Java 5 in particular added good enough quality that its features were generally accepted.

0


a source


I am a fan of Apache CXF. Here is a tutorial on various ways to develop a web service client:

http://cwiki.apache.org/CXF20DOC/how-do-i-develop-a-client.html

0


a source







All Articles