SOAP Java 1.4.2 [closed]

2019-08-15 05:46发布

What libraries are available to write a SOAP client in Java version 1.4.2?

5条回答
Deceive 欺骗
2楼-- · 2019-08-15 06:11

Apache Axis runs on Java 1.4 and has fairly good support for specs like WS-Security.

查看更多
冷血范
3楼-- · 2019-08-15 06:13

The two major options 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 only, as it uses annotations.

查看更多
Rolldiameter
4楼-- · 2019-08-15 06:13

Most of the common ones were around then; you're likely to need to go to archived versions though, as that's several major revisions old now. Java 5 in particular added enough goodness that its features tended to be adopted.

查看更多
Lonely孤独者°
5楼-- · 2019-08-15 06:15

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 is going to be Java 5 only and XFire is pretty much replaced by CXF. Java 1.4 is pretty much a dead end for WebServices stacks.

查看更多
Bombasti
6楼-- · 2019-08-15 06:31

I'm a fan of Apache CXF. Here's a tutorial on the different ways to develop a web service client:

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

查看更多
登录 后发表回答