Reputation: 17087
I have an EAR file deployed on WAS 6.1. The EAR file contains several EJB methods exposed as Web services. Now is there a way to figure out if these web services are written according to JAX WS standard or JAX RPC standard?
Upvotes: 2
Views: 454
Reputation: 11
Its should be JAX-RPC because first up JAX-RPC maps to Java 1.4 JAX-WS maps to Java 5.0 and WAS 6.1 has java 1.4.
Upvotes: 1