Articles tagged with: ATG and java relation
ATG & Java »
Some very basic stuffs in ATG, go ahead and read if you are looking for simple things, veteran ATG developers please stay away as you wont find it resourceful. Here in this article you will not find any codes but some basic interview questions.
Read the full Post »ATG & Java »
The code below explains how to get the value of a particular node from an XML. Dont forget to take a look into the imports in the class as the XMLToDOMParser and ApacheXMLToolsFactory are two very important packages you can’t forget for this code to work. “xPath” gives the node we have to find. The string variable “xPath” is defined in a particular way. The path in the eg: file(testParsingXML.java) will lead you to the node named “category“. Here is another example to know how to write the xPath:= /root/son[@name=\"firstchild\"]/grandson[@name=\"gs1\"]
This …
ATG & Java »
There are many ATG Out Of The Box(OOTB) droplets to cater the various needs in developing an application.Droplet’s main use in a jsp page is to dispay the contents dynamically. The OOTBox components are used in JSP with the help of DSP tags. DSP is a tag library provided by ATG, it acts as layer above the JSP tags. The DSP tag library lets you access all data types in ATG’s Nucleus framework. Other functions provided by these tags are managing transactions and rendering data in a Java Server Page. …
Read the full Post »ATG & Java, Tech Corner »
How to write a droplet??
How to execute a SELECT query in ATG repository??
A droplet is an ATG concept which is implemented with the help of java. We can say a droplet is complete when the java class and a properties file of the java class are combined. The scope of a droplet is always global. The droplet class extends DynamoServlet. It is same as that of a servlet class in java and it contains a service( ) method also. The two parameters of the service method are of type DynamoHttpServletRequest …
ATG & Java, Tech Corner »
While answering the question, what is a commerce search?? the key concepts one must explain is the difference of a normal keyword search and a commerce search.ATG Search will help you in setting up a commerce search in your website. Implementing a Commerce Search on your site involves the following steps:
1. Specify repository items and attributes to index through an XML file.
2. Based on the information in the XML file, the repository items are transformed into XHTML documents.
3. These XHTML documents are indexed by ATG Search.
4. Using search forms in …