What does ATG liveconfig actually do?

liveconfig is essentially a switch to runAssembler that creates a properties file to override default ATG Nucleus behavior. It optimizes the configuration for a “live” production site. Specifically, it overrides the following properties. configurationCheckMilliseconds=10000 -to- configurationCheckMilliseconds=-1 checkFileNameCase=false -to- checkFileNameCase=false (yes,…

Simple ATG JSP and droplet

This post assumes you have installed the Commerce Reference Store. It was also written for ATG 10.0.3, although it may work on other versions, as well. Create the following file, named printAllOrders.java, under $ATG_INSTALL_DIR/home/locallib import java.io.*; import javax.servlet.*; import javax.servlet.http.*;…

ATG – Listing item descriptors in a given repository

Below is a droplet that will print out all item descriptors in the OrderRepository. import java.io.*; import javax.servlet.*; import javax.servlet.http.*; import atg.servlet.*; import atg.adapter.gsa.*; public class repo extends DynamoServlet { public repo() {} public void service (DynamoHttpServletRequest request,DynamoHttpServletResponse response) throws…