Category: Applications

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…

Disabling client side PeopleTools debugging

This afternoon, while migrating some objects from development to QA, my PeopleTools session was generating an error message that stated… “Debugging disabled. Communication failure during connect(): 10061. (143,9)” Since I wasn’t actually debugging anything, I opened Configuration Manager and on…

ATG primary key data types

Not much today, this is just a place holder as we evaluate conflict resolution schemes for ATG and Golden Gate. Out of the box, it uses an application based sequence generator (DAS_ID_GENERATOR table). You can (and are encouraged to) prepend…