InterviewSolution
| 1. |
What do you mean by JAX-WS API? Write some implementations of JAX-WS API. |
|
Answer» JAX-WS (JAVA API for SOAP Web Services) is basically an essential part of the Java EE platform that is being used for developing or BUILDING SOAP web services and clients that communicate using XML. It enables DEVELOPERS to write message-oriented and RPC-oriented web services. There are basically two important implementations of JAX-WS: Document Style: In this, one can TRANSPORT XML messages as a part of SOAP requests unlike in RPC-style web service. |
|