Multiple choice technology architecture

Which two statements are FALSE about implementing web services utilizing the Java EE programming model?

  1. Supports the processing of XML content, data binding, and the development SOAP based and RESTful Web Services.

  2. Web Services exposed by JAX-WS can only be of type document/literal.

  3. Stateless session beans cannot be exposed as web services using Java EE technology.

  4. JAX-WS greatly simplifies the web service implementation model.

Reveal answer Fill a bubble to check yourself
B,C Correct answer
Explanation

JAX-WS supports multiple SOAP binding styles including RPC/literal and document/literal, not just document/literal. Stateless session beans CAN be exposed as JAX-WS web services using @WebService annotation. Java EE web services do support XML processing and JAX-WS simplifies implementation.