2

My application is using Jaxrpc 1.1 jar. I want to upgrade it to higher versions.

Higher versions for this jar was released but not available anywhere to download. I cannot use Jax ws. Please help, if I can get higher version Jaxrpc jar

My project is simple Java project. It's not maven. That's why I want to jar to place in my application

1 Answers1

4

The reason you can't find a newer version of JAX-RPC is that JAX-RPC 2.0 was renamed JAX-WS 2.0 (Java API for XML Web Services) prior to its release.

References:


For what it is worth, the source code for the JAX-RPC reference implementation is here:

Version 1.1.3 is the last (and maybe only) version in the repository. If you were really keen you could build your own JARs from the sources. But there don't appear to have been any significant changes since 2006.

enter image description here

Stephen C
  • 698,415
  • 94
  • 811
  • 1,216
  • Yes I read that but Jax ws code is very different from Jaxrpc. It's not easy in application just to simply replace Jaxrpc with Jax ws. That's why I want it's higher version jar –  May 15 '18 at 11:55
  • Well ... there isn't one. (Unless you want to write one yourself!) If you want something newer, the JAX-WS is the way to go. If don't want the effort of upgrading your code, stick with JAX-RPC. – Stephen C May 15 '18 at 12:06