Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can i find the JAX-WS version shipped with Java 6?

I'm using Java 6 for learning more about web Services (JAX-WS). I also read that JAX-WS latest version is available with Metro, i.e. If you're not using JDK6 and planning to use JAX-WS, you can use Metro.

I would like to know which version of the JAX-WS is shipped with my JDK? I'm using jdk1.6.0_22.

like image 361
Vicky Avatar asked Jun 08 '11 07:06

Vicky


2 Answers

Well, according to this link, Java 1.6 comes with at least JAX-RS 2.0. However, according to this other link, Java 1.6 up to release 3 comes bundled with JAX-RS 2.0 and updates 4 and up contain the 2.1 api version.

If you want to use the latest available version you can get a zip file following this link, or if you are using Maven you must include the following dependency in your pom.xml:

<dependency>
    <groupId>com.sun.xml.ws</groupId>
    <artifactId>jaxws-rt</artifactId>
    <version>2.2.3</version>
</dependency>
like image 22
chahuistle Avatar answered Sep 19 '22 20:09

chahuistle


JAX-WS is part of standart JDK since version 6. You can learn which version of jax-ws by means wsgen or wsimport. You can find them bin subdirectory of your jdk installation.

Q. How do I find out which version of the JAX-WS RI I'm using? Run the following command

$ wsgen or wsimport -version Alternatively, each JAX-WS jar has version information in its META-INF/MANIFEST.MF, such as this:
Build-Id: 12/14/2005 12:49 PM(dkohlert) Build-Version: JAX-WS RI 2.0-12/14/2005 12:49 PM(dkohlert)-ea3

like image 104
Gursel Koca Avatar answered Sep 22 '22 20:09

Gursel Koca