Can someone briefly provide a distinction between the following
technologies?
JAX-WS (JSR-224)
This is the Java standard for SOAP web services which are different from RESTful web services. There are multiple implementations of this standard.
JAX-RS (JSR-311)
This is the Java standard for RESTful web services. There are multiple implementations of this standard which include:
JAXB (JSR-222)
This is the Java standard for converting objects to/from XML. All JAX-RS implementations leverage a JAXB implementation when the JAX-RS service returns Java objects that need to be converted to/from XML. Some even leverage it when converting to/from JSON. There are multiple implementations of this standard.
If I want to develop a RESTful web service and have that web service
be consumed by an Android app, which technologies from the above
should I use?
Any Java EE 6 compliant application server will all the components necessary to create a RESTful web service that can easily be consumed by an Android app. Below is a series of articles I wrote that should help: