Building a REST Style Web Service in JBoss Dev Studio 1) Create a new Dynamic Web Project name -> runtime -> JBoss EAP 6.4 2) Build the Back-end code a) An Interface b) The Implementation 3) Build the Endpoint (a Servlet or JAX-RS) a) define the public Web Service methods public .... method(...) b) define the path <- the URI, and which parts of the path are parameters @Path("... the path w/ { param}") c) define the verb @GET d) define the return MIME type @Produces(...) 4) Configure the Web Appl (JBoss) to call my Endpoint servlet-mapping -> url-pattern