The Java API for XML Web Services (JAX-WS) simplifies creating and deploying web services and web services clients. Java SE includes JAX-WS 2.2.
Two small source compatibility anomalies exist between JAX-WS versions 2.1 and 2.2. The changes in the API are as follows:
FaultAction
annotation, the
className
element's type changed from being a plain
vanilla java.lang.Class
to being
java.lang.Class<? extends
java.lang.Exception>
.WebServiceRef
annotation, the
value
element's type is now more specific. Instead of
being java.lang.Class
, the type is now
java.lang.Class<? extends Service>
.Because of these changes, some applications that compile with Java SE 6 might not compile with Java SE 7. There will be a deployment error if incorrect types are used with JAX-WS 2.1 API. In Java SE 7, these type errors are caught at compile time instead of deployment time.
javax.xml.ws