AXIS vs JAX-WS for Web Service Client

前端 未结 2 630
时光说笑
时光说笑 2021-02-14 13:41

I am deciding on the implementation of Web Service Client in Java. I\'ve generated Axis client in Eclipse and JAS-WS client with wsimport. Both solutions work and now I have to

2条回答
  •  梦如初夏
    2021-02-14 14:00

    The client side of JAX-WS is part of the standard Java API, and the reference implementation is reliable and performant, while Axis requires 3rd party dependencies. If you don't need any functionality implemented by Axis and not offered by JAX-WS, I really don't see any reason why you should opt for Axis and not for JAX-WS.

提交回复
热议问题