Posts

Showing posts from January, 2015

Jersey to ATG Restfull webservices with multisite

Image
This blog describes how ATG components can be exposed as RESTful web services using a JAX-RS implementation like Jersey. It is intended to give a step-by-step walkthrough on setting up Rest services in ATG mutisite application.  Before going through this example,you need to understand/go through previous blog( https://sravankumarkema.blogspot.com/2014/11/rest-this-describes-rest-of-atg.html ) 1. Context root should be updated in web.xml  <context-param>     <param-name>context-root</param-name>     <param-value>root</param-value>   </context-param> 2.  NucleusJerseyServlet should be updated which is required to invoke jersey endpoint configured to have multisite.       <servlet>     ...