Transient Properties in atg

Hi
what is the main use of transient properties in repository
why we have to use transient properties in atg
please give me clear picture on it
Is it possible to see trasient properties in acc or bcc?

As explained, transient properties are run-time properties which are not necessarily be saved in DB. since, data is not persisted transient properties helps in increasing the performance during repository process.
Suppose, we have a process where user is trying to place an order by providing their credit card info. Since, most of the payment process is handled by external payment gateways (due to lots of business policy) it is often recommended that the customer's personal data (PII) should not be stored in internal database. But to call several external services and post processing requires PII data to be retained in the repository item. It is here transient properties helps to retain the run-time values for complete transaction processing.
Hope it helps. Correct me if I'm wrong.

Similar Messages

  • Support for "transient properties" in Toplink

    Hi,
    (JHeadstart 9.0.4.5 with Toplink)
    When I add unmapped properties to the beans that are mapped through Toplink to the tables in my database, almost like transient attributes in BC4J View Objects, I run into a problem, caused by the
    <code>getAttributeAsString(Locale locale,String attributeName</code> method in oracle.jheadstart.model.toplink.handler.DataObjectImpl. In 9.0.4.5, this method was modified to cater for these situations, because previously such properties resulted in NullPointerExceptions. However, the current implementation - while not throwing exceptions - does not return the value of the transient property, which I would prefer it to do.
    My suggestions is to change the lines:
    <code>
    if (mapping==null)
    mLog.error("No Toplink mapping found for attribute " + descriptorClass.getClass().getName()+"."+newName);
    return "";
    </code>
    to:
    <code>
    if (mapping==null)
    mLog.error("No Toplink mapping found for attribute " + descriptorClass.getClass().getName()+"."+newName);
    return value;
    </code>
    best regards,
    Lucas Jellema
    AMIS Services

    Lucas,
    Thanks for the suggestion.
    We will look into it.
    Steven davelaar,
    JHeadstart Team.

  • Transient properties of the N200

    In my department we are working on a full-duplex transceiver with with two N200 boards and SBX daughterboards (200k bandwidth). As a first step we build the program shown in the first picture: A transmitter-session is initialized and inside the while-loop we are transmitting one single set of ofdm-data (one trainingsequence-bock and ten ofdm-blocks) and afterwards wait for about 2000ms.
    On the receiver we get the following data&colon;
    The upper left picture shows the autocorrelation function and the lower left picture shows the received data signal. You can see that in addition too the ofdm-data the signal is overlaped with a sine, which also results in additional results in the autocorrelation-function (red square). This additional sine-function is only present if we use the interruped transmission scheme shown in the first picture. In case of a continuous transmission this "transient" property doesn't appear.
    Do you know the reason for this transient problem or any idea on how to fix this?

    There is some transient in the DSP as well as some transient when powering on the front end.  Given that you are not seeing the issue in packets during continuous transmission, this looks like transients through the amplifier and mixer when a signal is first sent.
    Do your packets start with valid data immediately?  If so, I would pad the beginning of the first packet with zeros... this may reduce the amplitude of the transient.  If you can synchronize your Rx and Tx, either start the Rx after the transient or throw out the first  250 us or so of transient samples.

  • Life of Transient repository varibles in ATG

    How long do transient repository variables are alive in memory? Are they linked to the session?
    I read that they are not related to Cache, so any cache invalidation events would not effect their life cycle.
    Thanks
    Edited by: Soltan on Jun 27, 2012 10:09 AM - edited to transient repository variables

    Soltan wrote:
    Thanks for the answer Nitin. Per your answer, do you mean that Transient properties are available as long as the repository is up? I may be interpreting it wrong.
    If I create a transient variable say in the profile repository item, wouldn't it be lost once the user's profile object is no longer in scope (session timeout or user logs out) ? The issue I am seeing is that my transient variables are being lost if there is some sort of error (not necessarily related to the repository). Is there a way to know how long these variables are held in memory and when they are discarded.
    The transient property would be available as a state of the RepositoryItem object. On referring to a different RepositoryItem, definitely the transient's property's value would be lost or changed (depending on if you made the transient property as a user defined property to get its value from a RepositoryPropertyDescriptor). So if you add a transient property in the profile, it be would lost or changed once the underlying RepositoryItem changes when session times out or user logs out. I have not tried this but you can go through with the documentation to see if you can possibly use a PropertiesChangedListener to detect when the property value changes.
    Soltan wrote:
    I have a few in the order repository on the commerceItem, that hold information about manual discount values. If there is an error during checkout (payment >or such), I still have the order, commerce items, promotions etc but these manual discount values (which are transient properties) are disappearing. So the next >time reprice happens I am missing these discount values.I believe somewhere you must be setting the discount related values into those transient properties in the order so can't you set them again on repricing after an error?
    As an alternative, see if you can make your transient property for manual discount as a user defined property by adding property-type attribute to your repository definition XML. Something like as:
    <property name="manualDiscount" property-type="mypackage.ManualDiscountPropertyDescriptor">
      <!-- if required you can pass additional attributes and values to your RepositoryPropertyDescriptor -->
    </property>Then implement ManualDiscountPropertyDescriptor to hold your discount information and required logic as there will be one instance of ManualDiscountPropertyDescriptor class which would be used for manualDiscount property irrespective of user session as long as repository is up.
    public class ManualDiscountPropertyDescriptor extends RepositoryPropertyDescriptor {
    public Object getPropertyValue(RepositoryItemImpl item, Object value) {
    // here item parameter is the order RepositoryItem on which you are calling the property getter
    // return value based on your logic using data from order and discount info
    }For more details, you can refer to user defined property type section in ATG Repository guide which has an example also.

  • Session in ATG

    Hi,
      For what functionality session is used in ATG, i.e what is the use of session in ATG. and how is it achieved in ATG????
    Components : session scoped
    Repository : Transient properties  
    Session cookies: ????
    Regards

    Repository transient properties are session scoped . the values stored in Transient Properties are available only till a particular session exists. Once the session has expired all the transient properties values will be gone.
    When and why are transient properties should be used.???
    Why cant we use HttpSession session=session = request.getSession(true); instead of transient properties????
    By default the transient property values are not stored in session but stored in the repository item level caches. Even if you disable the caching for an item, ATG internally caches its property values during a transaction.
    We access repository properties through RepositoryItem object instances and for any given item-descriptor in a repository there can be many RepositoryItem objects each having its own state (property values). So same property (transient or persistent) can have same or different value as the RepositoryItem object instance is going to be different. Now imagine if a transient property value was stored in session then how it would handle the different values for a given transient property for different items within a same session unless that property holds something session specific.
    Having said this you must also know that there are couple of custom property descriptor classes provided OOTB: atg.repository.SessionPropertyDescriptor and atg.repository.SessionEnumPropertyDescriptor each of which uses HttpSession to store property values. So if your transient property is declared with the property-type attribute specifying any of these custom property descriptor classes then only that property value would be stored as a session attribute. Also note that you would have to pass the session attribute name from your repository definition something like below:
    <item-descriptor name="myItem" ...>
      <property name="myProperty" data-type="string" property-type="atg.repository.SessionPropertyDescriptor" ...>
        <attribute name="sessionAttributeName" value="myProp"/>
      </property>
    </item-descriptor>
    I don't remember exactly from which version but SessionPropertyDescriptor has now been deprecated so if you plan to use it you have to do it at your own risk. The other class SessionEnumPropertyDescriptor can be used only for enumerated proeprties and is used in the securityStatus property of user profile. Refer this
    Oracle ATG Web Commerce - Security Status
    Does cookie play a role in ATG for maintaining session.   Profile and Order data is stored in cookies right???
    Whenever a request comes in without a session-id in the cookie or in the URL, the application server would create a new session for the particular web-app that is being requested. And like any typical web-app ATG also uses cookies to recognize a returning user. ATG uses cookies for different scenarios like identifying anonymous users on subsequent visits, auto-login for registered users, if a user is automatically logged in and if there were any items in his cart in the previous visit then load them back to the current cart etc. Of course there some configuration changes required to get these scenarios working in ATG.
    Remember cookies can be blocked or deleted by the user so why would you store any important data in them? Cookies store a small piece of information (usually an id) which browser can send to the server with every request and they do not hold any explicit profile or order data.
    Hope it helps and clarifies your concerns.

  • How to add a new property security question in atg profile?

    Hi All,
    I want to add a new field in registration.jsp named as Security Questions; it has 3 questions and it should be ordered and cannot contain duplicate values.
    For this I have created
    1) a customUserProfile.xml under /MyModule/config/atg/userprofiling/customUserProfile.xml with the following content-
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
        <!DOCTYPE gsa-template PUBLIC "-//Art Technology Group, Inc.//DTD General SQL Adapter//EN"
            "http://www.atg.com/dtds/gsa/gsa_1.0.dtd">
    <gsa-template>
        <header>
            <name>Registration</name>
            <author></author>
        </header>
        <item-descriptor name="securityquestions">
      <table name="security_questions" id-column-names="securequestions_id">
        <property name="securityquestions" data-type="enumerated">
        <attribute name="useCodeForValue" value="false"/>
          <option value="what is your birth place" code="0"/>
      <option value="what is your favourite colour" code="1"/>
      <option value="what is your pet name" code="2"/>
        </property>
      </table>
    </item-descriptor>   
    2) a definition file under named as /MyModule/config/atg/userprofiling/customUserProfile.properties-
    $class=atg.adapter.gsa.GSARepository
    $scope=global
    repositoryName=customUserProfile
    # database access- for making repositry as versioned, use SwitchingDataSource else use JTDataSource
    dataSource=/atg/dynamo/service/jdbc/SwitchingDataSource
    transactionManager=/atg/dynamo/transaction/TransactionManager
    # our XML definitionFile
    definitionFiles=/atg/userprofiling/customUserProfile.xml
    # XML parsing
    XMLToolsFactory=/atg/dynamo/service/xml/XMLToolsFactory
    # id generation
    idGenerator=/atg/dynamo/service/IdGenerator
    </gsa-template>
    3) a droplet names as /MyModule/src/com/pa/SecurityQuestionLogin.java
    4) a registration jsp with the following code snippet for security questions-
    <dsp:droplet name="SecurityQuestionLogin">
    <dsp:select bean="SecurityQuestionLogin.securityQuestions">
        <dsp:droplet name="PossibleValues">
          <dsp:param name="itemDescriptorName" value="securityquestions"/>
          <dsp:param name="propertyName" value="type"/>
          <dsp:oparam name="output">
            <dsp:droplet name="ForEach">
              <dsp:param name="array" param="values"/>
              <dsp:oparam name="output">
                <dsp:option param="element"/>
                <dsp:valueof param="element"/>
              </dsp:oparam>
            </dsp:droplet>
    But I don't know what logic can I implement in java class for this requirement.
    Is the above structure is right for this purpose,please help!
    Regards,
    Vikas

    Hi Nitin,
    extend ATG userProfile.xml and add properties there in user item-descriptor
    I created userProfile.xml under C:\ATG\ATG10.0.3\MyModule\config\atg\userprofiling with following contents-
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <!DOCTYPE gsa-template
            PUBLIC "-//Art Technology Group, Inc.//DTD General SQL Adapter//EN"
            "http://www.atg.com/dtds/gsa/gsa_1.0.dtd">
    <gsa-template>
      <item-descriptor name="user" cache-mode="simple" xml-combine="append">
    <table name="security_questions" type="auxiliary" id-column-name="securequestions_id">
    <property name="securityquestions" column-name="securityquestions" data-type="enumerated">
    <attribute name="useCodeForValue" value="false"/>
          <option value="what is your birth place" code="0"/>
      <option value="what is your favourite colour" code="1"/>
      <option value="what is your pet name" code="2"/>
      </property>
    </table>
    </item-descriptor>
    </gsa-template>
    and created userProfile.properties file with following content-
    $class=atg.adapter.gsa.GSARepository
    $scope=global
    repositoryName=userProfile
    # database access- for making repositry as versioned, use SwitchingDataSource else use JTDataSource
    dataSource=/atg/dynamo/service/jdbc/SwitchingDataSource
    transactionManager=/atg/dynamo/transaction/TransactionManager
    # our XML definitionFile
    definitionFiles=/atg/userprofiling/userProfile.xml
    # XML parsing
    XMLToolsFactory=/atg/dynamo/service/xml/XMLToolsFactory
    # id generation
    idGenerator=/atg/dynamo/service/IdGenerator
    and change the jsp code as-
    <dsp:select bean="/atg/userProfiling/Profile.securityQuestions">
        <dsp:droplet name="PossibleValues">
          <dsp:param name="itemDescriptorName" value="securityquestions"/>
          <dsp:param name="propertyName" value="type"/>
          <dsp:oparam name="output">
            <dsp:droplet name="ForEach">
              <dsp:param name="array" param="values"/>
              <dsp:oparam name="output">
                <dsp:option param="element"/>
                <dsp:valueof param="element"/>
              </dsp:oparam>
            </dsp:droplet>
          </dsp:oparam>
        </dsp:droplet>
      </dsp:select>
      </dsp:droplet>
    Have I done right?
    And what else I need to do,should I run the startsqlrepository script to create the table structure for this property?
    Thanks & Regards,
    Vikas

  • ATG catalog export error in startSQLRepository

    Hi,
    I want to export the catalog data from atg production. I followed the steps as below.
    1. create FakeXADatasource.properties file in C:\ATG\ATG10.1.1\home\localconfig\atg\dynamo\service\jdbc. (There is mysql user named atguser with password atg123$)
    $class=atg.service.jdbc.FakeXADataSource
    URL=jdbc:mysql://localhost:3306/prod_lo
    user=atguser
    password=atg123$
    driver=com.mysql.jdbc.Driver
    2. change JTDataSource.properties as below.
    $class=atg.service.jdbc.MonitoredDataSource
    dataSource=/atg/dynamo/service/jdbc/FakeXADataSource
    transactionManager=/atg/dynamo/transaction/TransactionManager
    loggingSQLInfo=false
    min=10
    maxFree=-1
    loggingSQLError=false
    blocking=true
    loggingSQLWarning=false
    max=10
    loggingSQLDebug=false
    3. then run the "startSQLRepository.bat -m Store.Storefront -export all catalogExport.xml -repository /atg/commerce/catalog/ProductCatalog" command.
    but while it processing it gives below error. Anyone know the reason or how to do a complete catalog export? (I have remove the last part of the error log because it exceeds the maximum length of 30000 characters. )
    ./startSQLRepository -m Store.Storefront -export all catalogExport.xml -repository /atg/commerce/catalog/ProductCatalog
    ARGS: args = -m Store.Storefront -export all catalogExport.xml -repository /atg/commerce/catalog/ProductCatalog
    Invalid setting of DYNAMO_HOME: "/usr/local/ATG/ATG10.1.2/home"
    Attempting to locate a valid DYNAMO_HOME based on your working directory.
    The following installed ATG components are being used to launch:
    ATGPlatform version 10.1.1 installed at /usr/local/ATG/ATG10.1.1
    CommerceReferenceStore version 10.1.1 installed at /usr/local/ATG/ATG10.1.1/CommerceReferenceStore
    JAVA_ARGS: -Djava.security.policy=lib/java.policy -Datg.dynamo.home=. -Datg.dynamo.root=./.. -Datg.dynamo.display= -Djava.protocol.handler.pkgs=atg.net.www.protocol -Djava.naming.factory.url.pkgs=atg.jndi.url -Datg.dynamo.modulepath=./.. -Xms512m -Xmx1024m -XX:MaxPermSize=128m -XX:MaxNewSize=128m -Datg.dynamo.server.home=. -Datg.dynamo.modules=DAS:DAS-UI::Store.Storefront:DSS -Datg.dynamo.layers= -Dsun.rmi.dgc.server.gcInterval=3600000
    DYNAMO_MODULES: DAS:DAS-UI:DPS:DSS:WebUI:DCS:Store.EStore:DCS.AbandonedOrderServices:Store.Storefront
    CONFIGPATH: /usr/local/ATG/ATG10.1.1/DAS/config/config.jar:/usr/local/ATG/ATG10.1.1/DAS/config/oca-ldap.jar:vfs[localconfig-1]=/atg/dynamo/service/groupconfig/ClientNodeTypeVirtualFileSystem:vfs[localconfig-1]=/atg/dynamo/service/groupconfig/ClientInstanceVirtualFileSystem:/usr/local/ATG/ATG10.1.1/DAS-UI/config/uiconfig.jar:/usr/local/ATG/ATG10.1.1/DPS/config/targeting.jar:/usr/local/ATG/ATG10.1.1/DPS/config/oca-cms.jar:/usr/local/ATG/ATG10.1.1/DPS/config/oca-html.jar:/usr/local/ATG/ATG10.1.1/DPS/config/oca-xml.jar:/usr/local/ATG/ATG10.1.1/DPS/config/userprofiling.jar:/usr/local/ATG/ATG10.1.1/DPS/config/profile.jar:/usr/local/ATG/ATG10.1.1/DSS/config/config.jar:/usr/local/ATG/ATG10.1.1/WebUI/config/config.jar:/usr/local/ATG/ATG10.1.1/DCS/config/config.jar:/usr/local/ATG/ATG10.1.1/CommerceReferenceStore/Store/EStore/config/config.jar:/usr/local/ATG/ATG10.1.1/DCS/AbandonedOrderServices/config/config.jar:../DAS/config/dtmconfig.jar:localconfig:../DAF/config/dafconfig.jar
    CLASSPATH: ./locallib/:./lib/launcher.jar:/opt/jboss-5.1.0.GA/lib/mysql-connector-java-5.1.22-bin.jar:/opt/jboss-5.1.0.GA/common/lib/jsp-api.jar:/opt/jboss-5.1.0.GA/lib/jboss-javaee.jar:/opt/jboss-5.1.0.GA/common/lib/servlet-api.jar:/opt/jboss-5.1.0.GA/common/lib/jsp-api.jar:/opt/jboss-5.1.0.GA/lib/jboss-javaee.jar:/opt/jboss-5.1.0.GA/common/lib/servlet-api.jar:/usr/local/ATG/more_libs/javaee-api-5.0.4.jar:/usr/local/ATG/more_libs/javaee-api-5.1.0-M1.jar:/opt/jboss-5.1.0.GA/lib/mysql-connector-java-5.1.22-bin.jar:/usr/local/ATG/ATG10.1.1/CommerceReferenceStore/Store/Storefront/lib/classes.jar:/usr/local/ATG/ATG10.1.1/CommerceReferenceStore/Store/EStore/lib/classes.jar:/usr/local/ATG/ATG10.1.1/CommerceReferenceStore/Store/EStore/lib/commons-codec-1.3.jar:/usr/local/ATG/ATG10.1.1/DCS/lib/resources.jar:/usr/local/ATG/ATG10.1.1/DCS/lib/classes.jar:/usr/local/ATG/ATG10.1.1/WebUI/lib/classes.jar:/usr/local/ATG/ATG10.1.1/DSS/lib/resources.jar:/usr/local/ATG/ATG10.1.1/DSS/lib/classes.jar:/usr/local/ATG/ATG10.1.1/DPS/lib/resources.jar:/usr/local/ATG/ATG10.1.1/DPS/lib/classes.jar:/usr/local/ATG/ATG10.1.1/DAS-UI/lib/uiresources.jar:/usr/local/ATG/ATG10.1.1/DAS-UI/lib/uiclasses.jar:/usr/local/ATG/ATG10.1.1/DAS-UI/lib/jhall.jar:/usr/local/ATG/ATG10.1.1/DAS/lib/resources.jar:/usr/local/ATG/ATG10.1.1/DAS/lib/classes.jar:/usr/local/ATG/ATG10.1.1/DAS/lib/servlet.jar:/usr/local/ATG/ATG10.1.1/DAS/lib/jsp-api.jar:/usr/local/ATG/ATG10.1.1/DAS/lib/ice.jar:/usr/local/ATG/ATG10.1.1/DAS/lib/cglib-nodep-2.1_3.jar:/usr/local/ATG/ATG10.1.1/DAS/lib/spring-aop-1.2-rc1.jar:/usr/local/ATG/ATG10.1.1/DAS/lib/jline-0.9.94.jar:/usr/local/ATG/ATG10.1.1/DAS/lib/validation-api-1.0.0.GA.jar
    PATH: /usr/local/endeca/PlatformServices/6.1.3/bin:/usr/local/endeca/PlatformServices/6.1.3/perl/bin:/usr/local/endeca/PlatformServices/6.1.3/utilities:/usr/local/endeca/MDEX/6.4.0/bin:/usr/lib64/qt-3.3/bin:/opt/jdk1.6.0_35/bin:/opt/ENDECA/endeca/PlatformServices/6.1.3/bin:/opt/ENDECA/endeca/PlatformServices/6.1.3/perl/bin:/opt/ENDECA/endeca/PlatformServices/6.1.3/utilities:/opt/ENDECA/endeca/MDEX/6.3.0/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/opt/jdk1.6.0_35/bin:/opt/jboss-5.1.0.GA/bin:./../DAS/os_specific_files/i486-unknown-linux2
    Apr 26, 2013 9:57:20 AM org.hibernate.validator.util.Version <clinit>
    INFO: Hibernate Validator 4.1.0.Final
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241015     /atg/dynamo/service/jdbc/JTDataSource     an exception was encountered while trying to populate the pool with the starting number of resources: atg.service.resourcepool.ResourcePoolException: java.sql.SQLException: Access denied for user 'root'@'localhost' (using password: NO)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241025     /atg/dynamo/service/jdbc/JTDataSource     The connection pool failed to initialize propertly, i.e. the starting number of connections could not be created; check your database accessibility and JDBC driver configuration
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator     ---     CONTAINER:atg.service.idgen.IdGeneratorException; SOURCE:CONTAINER:atg.service.idgen.IdGeneratorException; SOURCE:java.sql.SQLException: atg.service.resourcepool.ResourcePoolException: java.sql.SQLException: Access denied for user 'root'@'localhost' (using password: NO)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.service.idgen.PersistentIdGenerator.initialize(PersistentIdGenerator.java:389)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.service.idgen.AbstractSequentialIdGenerator.doStartService(AbstractSequentialIdGenerator.java:643)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.GenericService.startService(GenericService.java:559)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.startService(NucleusNameResolver.java:1704)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.configureAndStartService(NucleusNameResolver.java:1375)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:907)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:666)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:647)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.resolveName(NucleusNameResolver.java:492)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.resolveName(NucleusNameResolver.java:1216)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.ConfigurationRef.getValue(ConfigurationRef.java:103)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.SimpleComponentState.setBeanProperty(SimpleComponentState.java:401)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.SimpleConfigurationState.saveToBean(SimpleConfigurationState.java:240)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.SimpleConfigurationState.configureBean(SimpleConfigurationState.java:263)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.BeanConfigurator.configureBean(BeanConfigurator.java:297)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.PropertyConfiguration.configureService(PropertyConfiguration.java:978)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.SingleNucleusConfigurator.configureService(SingleNucleusConfigurator.java:84)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.configureService(NucleusNameResolver.java:1621)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.configureAndStartService(NucleusNameResolver.java:1347)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:907)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:666)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:647)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.resolveName(NucleusNameResolver.java:492)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.Nucleus.resolveName(Nucleus.java:2620)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.GenericService.resolveName(GenericService.java:378)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.GenericService.resolveName(GenericService.java:430)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.Nucleus.<init>(Nucleus.java:993)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.Nucleus.<init>(Nucleus.java:766)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.Nucleus.<init>(Nucleus.java:747)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.Nucleus.startNucleusCheckLicense(Nucleus.java:4275)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.Nucleus.startNucleus(Nucleus.java:4152)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.adapter.gsa.xml.TemplateParser.runParser(TemplateParser.java:5709)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.adapter.gsa.xml.TemplateParser.main(TemplateParser.java:5325)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator     Caused by :CONTAINER:atg.service.idgen.IdGeneratorException; SOURCE:java.sql.SQLException: atg.service.resourcepool.ResourcePoolException: java.sql.SQLException: Access denied for user 'root'@'localhost' (using password: NO)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.service.idgen.SQLIdGenerator.getConnection(SQLIdGenerator.java:647)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.service.idgen.SQLIdGenerator.initializeIdSpaces(SQLIdGenerator.java:833)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.service.idgen.PersistentIdGenerator.initialize(PersistentIdGenerator.java:327)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.service.idgen.AbstractSequentialIdGenerator.doStartService(AbstractSequentialIdGenerator.java:643)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.GenericService.startService(GenericService.java:559)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.startService(NucleusNameResolver.java:1704)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.configureAndStartService(NucleusNameResolver.java:1375)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:907)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:666)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:647)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.resolveName(NucleusNameResolver.java:492)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.resolveName(NucleusNameResolver.java:1216)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.ConfigurationRef.getValue(ConfigurationRef.java:103)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.SimpleComponentState.setBeanProperty(SimpleComponentState.java:401)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.SimpleConfigurationState.saveToBean(SimpleConfigurationState.java:240)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.SimpleConfigurationState.configureBean(SimpleConfigurationState.java:263)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.BeanConfigurator.configureBean(BeanConfigurator.java:297)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.PropertyConfiguration.configureService(PropertyConfiguration.java:978)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.SingleNucleusConfigurator.configureService(SingleNucleusConfigurator.java:84)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.configureService(NucleusNameResolver.java:1621)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.configureAndStartService(NucleusNameResolver.java:1347)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:907)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:666)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:647)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.resolveName(NucleusNameResolver.java:492)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.Nucleus.resolveName(Nucleus.java:2620)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.GenericService.resolveName(GenericService.java:378)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.GenericService.resolveName(GenericService.java:430)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.Nucleus.<init>(Nucleus.java:993)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.Nucleus.<init>(Nucleus.java:766)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.Nucleus.<init>(Nucleus.java:747)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.Nucleus.startNucleusCheckLicense(Nucleus.java:4275)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.Nucleus.startNucleus(Nucleus.java:4152)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.adapter.gsa.xml.TemplateParser.runParser(TemplateParser.java:5709)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.adapter.gsa.xml.TemplateParser.main(TemplateParser.java:5325)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator     Caused by (#2):java.sql.SQLException: atg.service.resourcepool.ResourcePoolException: java.sql.SQLException: Access denied for user 'root'@'localhost' (using password: NO)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.service.jdbc.MonitoredDataSource.getConnection(MonitoredDataSource.java:1261)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.service.idgen.SQLIdGenerator.getConnection(SQLIdGenerator.java:633)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.service.idgen.SQLIdGenerator.initializeIdSpaces(SQLIdGenerator.java:833)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.service.idgen.PersistentIdGenerator.initialize(PersistentIdGenerator.java:327)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.service.idgen.AbstractSequentialIdGenerator.doStartService(AbstractSequentialIdGenerator.java:643)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.GenericService.startService(GenericService.java:559)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.startService(NucleusNameResolver.java:1704)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.configureAndStartService(NucleusNameResolver.java:1375)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:907)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:666)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:647)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.resolveName(NucleusNameResolver.java:492)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.resolveName(NucleusNameResolver.java:1216)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.ConfigurationRef.getValue(ConfigurationRef.java:103)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.SimpleComponentState.setBeanProperty(SimpleComponentState.java:401)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.SimpleConfigurationState.saveToBean(SimpleConfigurationState.java:240)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.SimpleConfigurationState.configureBean(SimpleConfigurationState.java:263)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.BeanConfigurator.configureBean(BeanConfigurator.java:297)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.PropertyConfiguration.configureService(PropertyConfiguration.java:978)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.SingleNucleusConfigurator.configureService(SingleNucleusConfigurator.java:84)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.configureService(NucleusNameResolver.java:1621)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.configureAndStartService(NucleusNameResolver.java:1347)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:907)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:666)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:647)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.NucleusNameResolver.resolveName(NucleusNameResolver.java:492)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.Nucleus.resolveName(Nucleus.java:2620)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.GenericService.resolveName(GenericService.java:378)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.GenericService.resolveName(GenericService.java:430)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.Nucleus.<init>(Nucleus.java:993)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.Nucleus.<init>(Nucleus.java:766)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.Nucleus.<init>(Nucleus.java:747)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.Nucleus.startNucleusCheckLicense(Nucleus.java:4275)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.nucleus.Nucleus.startNucleus(Nucleus.java:4152)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.adapter.gsa.xml.TemplateParser.runParser(TemplateParser.java:5709)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator          at atg.adapter.gsa.xml.TemplateParser.main(TemplateParser.java:5325)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241080     /atg/dynamo/service/IdGenerator     
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241118     /     Unable to start service "/atg/dynamo/service/IdGenerator": atg.nucleus.ServiceException: CONTAINER:atg.service.idgen.IdGeneratorException; SOURCE:CONTAINER:atg.service.idgen.IdGeneratorException; SOURCE:java.sql.SQLException: atg.service.resourcepool.ResourcePoolException: java.sql.SQLException: Access denied for user 'root'@'localhost' (using password: NO)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241169     /atg/commerce/catalog/ProductCatalog     ---     java.sql.SQLException: atg.service.resourcepool.ResourcePoolException: java.sql.SQLException: Access denied for user 'root'@'localhost' (using password: NO)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241169     /atg/commerce/catalog/ProductCatalog          at atg.service.jdbc.MonitoredDataSource.getConnection(MonitoredDataSource.java:1261)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241169     /atg/commerce/catalog/ProductCatalog          at atg.adapter.gsa.GSARepository.initialize(GSARepository.java:5809)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241169     /atg/commerce/catalog/ProductCatalog          at atg.adapter.gsa.GSARepository.initializeTransactionally(GSARepository.java:5747)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241169     /atg/commerce/catalog/ProductCatalog          at atg.adapter.gsa.GSARepository.doStartService(GSARepository.java:5420)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241169     /atg/commerce/catalog/ProductCatalog          at atg.nucleus.GenericService.startService(GenericService.java:559)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241169     /atg/commerce/catalog/ProductCatalog          at atg.nucleus.NucleusNameResolver.startService(NucleusNameResolver.java:1704)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241169     /atg/commerce/catalog/ProductCatalog          at atg.nucleus.NucleusNameResolver.configureAndStartService(NucleusNameResolver.java:1375)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241169     /atg/commerce/catalog/ProductCatalog          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:907)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241169     /atg/commerce/catalog/ProductCatalog          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:666)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241169     /atg/commerce/catalog/ProductCatalog          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:647)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241169     /atg/commerce/catalog/ProductCatalog          at atg.nucleus.NucleusNameResolver.resolveName(NucleusNameResolver.java:492)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241169     /atg/commerce/catalog/ProductCatalog          at atg.nucleus.Nucleus.resolveName(Nucleus.java:2620)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241169     /atg/commerce/catalog/ProductCatalog          at atg.nucleus.GenericService.resolveName(GenericService.java:378)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241169     /atg/commerce/catalog/ProductCatalog          at atg.nucleus.GenericService.resolveName(GenericService.java:430)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241169     /atg/commerce/catalog/ProductCatalog          at atg.nucleus.Nucleus.<init>(Nucleus.java:993)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241169     /atg/commerce/catalog/ProductCatalog          at atg.nucleus.Nucleus.<init>(Nucleus.java:766)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241169     /atg/commerce/catalog/ProductCatalog          at atg.nucleus.Nucleus.<init>(Nucleus.java:747)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241169     /atg/commerce/catalog/ProductCatalog          at atg.nucleus.Nucleus.startNucleusCheckLicense(Nucleus.java:4275)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241169     /atg/commerce/catalog/ProductCatalog          at atg.nucleus.Nucleus.startNucleus(Nucleus.java:4152)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241169     /atg/commerce/catalog/ProductCatalog          at atg.adapter.gsa.xml.TemplateParser.runParser(TemplateParser.java:5709)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241169     /atg/commerce/catalog/ProductCatalog          at atg.adapter.gsa.xml.TemplateParser.main(TemplateParser.java:5325)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241169     /atg/commerce/catalog/ProductCatalog     
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241177     /     Unable to resolve component /atg/commerce/catalog/ProductCatalog      java.lang.NullPointerException
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241177     /          at atg.adapter.gsa.GSARepository.initialize(GSARepository.java:5825)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241177     /          at atg.adapter.gsa.GSARepository.initializeTransactionally(GSARepository.java:5747)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241177     /          at atg.adapter.gsa.GSARepository.doStartService(GSARepository.java:5420)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241177     /          at atg.nucleus.GenericService.startService(GenericService.java:559)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241177     /          at atg.nucleus.NucleusNameResolver.startService(NucleusNameResolver.java:1704)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241177     /          at atg.nucleus.NucleusNameResolver.configureAndStartService(NucleusNameResolver.java:1375)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241177     /          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:907)
    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241177     /          at atg.nucleus.NucleusNameResolver.createFromName(NucleusNameResolver.java:666)

    **** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241015     /atg/dynamo/service/jdbc/JTDataSource     an exception was encountered while trying to populate the pool with the starting number of resources: atg.service.resourcepool.ResourcePoolException: java.sql.SQLException: Access denied for user 'root'@'localhost' (using password: NO)**** Error     Fri Apr 26 09:57:21 GMT 2013     1366970241025     /atg/dynamo/service/jdbc/JTDataSource     The connection pool failed to initialize propertly, i.e. the starting number of connections could not be created; check your database accessibility and JDBC driver configuration >
    Try with below configuration:
    <ATG-Home>\home\localconfig\atg\dynamo\service\jdbc\FakeXADataSource.properties:
    $class=atg.service.jdbc.FakeXADataSource
    URL=jdbc:mysql://localhost:3306/myfds
    user=atguser
    password=atg123$
    driver=com.mysql.jdbc.jdbc2.optional.MysqlXADataSource
    <ATG-Home>\home\localconfig\atg\dynamo\service\jdbc\JTDataSource.properties:
    $class=atg.service.jdbc.MonitoredDataSource
    min=10
    max=10
    blocking=true
    maxFree=-1
    loggingSQLWarning=false
    loggingSQLDebug=false
    loggingSQLInfo=false
    dataSource=/atg/dynamo/service/jdbc/FakeXADataSource
    loggingSQLError=false
    Please don't forget to have jar file for com.mysql.jdbc.jdbc2.optional.MysqlXADataSource.
    Also see:
    http://docs.oracle.com/cd/E23507_01/Platform.20073/RepositoryGuide/html/s1108exportingrepositorydata01.html
    -RMishra

  • Retrieve a transient property in a repository

    How to retrieve a transient property in a repository? I have tried using Repository.getPropertyValue("propertyName"), but it is not working.

    Transient properties are like normal properties in repositories only difference they are not persisted to database.
    The getPropertyValue will work for transient properties if they have any value set on them for that request/session.
    Are you getting any errors/exceptions?

  • Restrict expired skus in ATG Search

    Hi
    we have implemented product based search in our project and we are doing sort by price filtering.
    But the results are not coming proper as the products are including expired skus. some expired skus have less price and that is making product to appear in top results when we do the filtering.
    Is there a way to exclude skus whose end date has passed?
    P.S we dont want to change the existing search functionality to sku based search.
    Any ideas would help.

    You can restrict the expired sku's not to show up in the search results by mentioning the date constraints in the QueryRequest. You can set the constraints for the search query request by adding property constraint for the startDate property of the product
    In the QueryRequest.properties set the documentSetConstraints
    QueryRequest.properties
    documentSetContraints=/atg/commerce/search/SkuConstraints
    and in the SkuConstraints.properties
    $class=atg.search.routing.command.search.ConstraintsGroup
    $scope=request
    # include all the constraints that need to part of search Query
    constraints=Constraint1, SkuStartDateConstraints, Constraint2, Constraint3
    operation=and
    SkuStartDateConstraints.properties
    $class=atg.search.routing.command.search.PropConstraint
    $scope=request
    # Restrict the search to products with start date is less than or equal to the current date
    type=integer
    propertyName=startDate
    operation=lesseq
    value^=/atg/dynamo/service/CurrentDate.epochTime
    Since in the above constraint we are comparing the time in seconds, extend the CurrentDate class to convert the time into seconds
    * Returns the Epoch/current time value in String format. The time value is divided by 1000 in
    * order to get the Epoch (seconds) time value, which is compatible with Search's date format.
    * @return the time value in String format
    public String getEpochTime() {
    return String.valueOf((CurrentDate.getTime()/1000));
    you can have custom class to define additional constraints that you want to set to the docSetConstraints.
    HTH
    Thanks
    Rajesh Akavaram

  • Configuring oracle db with ATG

    Hi,
    can anyone tell me how to configure atg with oracle 10g database.
    what are all the steps to be followed?...

    I assume you have created the user and the required ATG tables.
    After then create the file if you like to use ATG datasources.
    C:\ATG\ATG9.3\home\localconfig\atg\dynamo\service\jdbc\FakeXADataSource.properties
    user=supreme
    password=password1
    needsSeparateUserInfo=true
    URL=jdbc:oracle:thin:@localhost:1521:xe
    readOnly=false
    database=xe
    driver=oracle.jdbc.OracleDriver
    If you would like to use app server datasources then create
    C:\ATG\ATG9.3\home\localconfig\atg\dynamo\service\jdbc\DirectJTDataSource.properties
    $class=atg.nucleus.JNDIReference
    JNDIName=ATGProductionDS
    And configure the app server datasource depending upon the app server with JNDI Name ATGProductionDS
    Peace
    Shaik

  • How to write a query on a component-item-type properties

    hi
    For the following sample repository definition file.
    <item descriptor name ="student" idcolumn="id">
    <property name="name" data-type="string"/>
    <property name="department" component-item-type="department" data-type="list" />
    </item descriptor>
    <item descriptor name ="department">
    <property name="name" type="string"/>
    <property name="HOD" data-type="string" />
    </item descriptor>
    If I get a view of the student Itemdescriptor and will I be able to query on the department item descriptor in the same rql ?

    Nitin,
    Thanks for the mail.
    I am getting below error.
    Attempt to create a sub-property query expression for the property: "department", which is not a RepositoryItem. Only properties that are RepositoryItems can have sub-properties.*
    atg.repository.RepositoryException: Attempt to create a sub-property query expression for the property: "department", which is not a RepositoryItem. Only properties that are RepositoryItems can have sub-properties
    For more clarity PFB how the ItemDescriptor looks like
    <item-descriptor name="student" display-property="displayName">
    <property name="isActive" data-type="boolean" default="false"/>
    <table name="student" type="auxiliary" id-column-names="student_ID">
    <property name="studentId" display-name="student" column-name="student_id" data-type="string" required="true"/>
    </table>
    <table name="student_department" type="multi" id-column-name="student_ID" multi-column-name="sequence_id">
    <property name="department" display-name="department" column-name="department_id" data-type="list" component-item-type="departmentl" />
    </table>
    </item-descriptor>
    <item-descriptor name="department" super-type="superDepartment" sub-type-value="department" display-property="name" display-name="departmentname">
    <table name="department" type="auxiliary" id-column-name="department_id">
    <property category="Basics" name="location" data-type="int" column-name="location" display-name="Location" required="true" default="1">
    <attribute name="propertySortPriority" value="-5"/>
    </property>
    <property category="Basics" name="name" display-name="name" column-name="name" data-type="String" />
    <property category="Basics" name="HOD" display-name="HOD" column-name="HOD" data-type="String"/>
    </table>
    </item-descriptor>
    Thanks
    Shobby

  • ATG AutoLogin Functionality

    Hi All,
    I am done with autoLogin functionality for profile we have in our Repository,
    My Question is,If a Profile checks in autoLogin functionality,means he is agree to autoLogged in future,
    But in next time when he comes,here Who checks that this Particular profile has set it self for autoLogin..??
    I mean,i would like to know in component level who does this verification.?
    Please keep your thoughts!
    Regards,
    -Sandeep

    Hi Sandeep
    Profile's autologin property is used for identifying returning users to your site who have already registered. While securityStatus can be used in case an user tries to access a rather restrictive page to check the the type of verification the user has already passed through and based on that whether you want to allow user the access to that restricted page page or not. I hope you would have gone through with autologin and securityStatus explanation respectively at
    http://docs.oracle.com/cd/E24152_01/Platform.10-1/ATGPersProgGuide/html/s0502trackingregisteredusers01.html
    http://docs.oracle.com/cd/E24152_01/Platform.10-1/ATGPersProgGuide/html/s0502securitystatus01.html
    Oracle ATG Web Commerce - Authentication
    The following example shows how to configure an authentication servlet and authenticator:
    AuthenticationServlet.properties:
    $class=atg.servlet.pipeline.BasicAuthenticationPipelineServlet realm=Dynamo6.0 authenticator=Authenticator nextServlet=SomeHandler
    Authenticator.properties:
    $class=atg.servlet.pipeline.BasicAuthenticator passwords=\         admin=jjxr2,\         hank=angry
    In this example, the authentication servlet passes a request to SomeHandler only if the request is authenticated with a name and password found in the passwords property of the authenticator component. The realm property specifies what realm is to be shown to the user in the window that asks for name and password.
    Thanks
    Gareth
    Please mark any update as "Correct Answer" or "Helpful Answer" if that update helps/answers your question, so that others can identify the Correct/helpful update between many updates.

  • Endeca : getting error while trying to print page

    Hi experts ,
    Can you please tell any one , i am getting below error while printing page from endeca
    like :
    in exp mgr i created page (/browse) and i am using reff application as a Discover (all handlers are OOTB only).
    Error 403--Forbidden
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.4 403 Forbidden
    The server understood the request, but is refusing to fulfill it. Authorization will not help and the request SHOULD NOT be repeated. If the request method was not HEAD and the server wishes to make public why the request has not been fulfilled, it SHOULD describe the reason for the refusal in the entity. This status code is commonly used when the server does not wish to reveal exactly why the request has been refused, or when no other response is applicable.
    Thank you.

    Hi ,
    The problem might be with the ATG configuration.
    Please locate DAF\Endeca\Assembler\config\config\atg\endeca\assembler\cartridge\manager in ATG application.
    Use layering to add these files at same location i.e \atg\endeca\assembler\cartridge\manager in your localconfig :
    MdexResource_en.properties :
    $basedOn=DefaultMdexResource
    host=[app-host-name]
    #eg host=localhost
    port=[live-dgraph-port]
    #eg port=15000
    WorkbenchContentSource.properties :
    $class=atg.nucleus.GenericReference
    $scope=request
    loggingInfo=false
    useRequestNameResolver=true
    workbench.app.name=[endeca-app-name]
    #eg- workbench.app.name=ATGen
    workbench.host=[endeca-host]
    # eg- workbench.host=localhost
    workbench.port=[Workbench-port]
    #eg workbench.port=8006
    componentPath=/atg/endeca/assembler/cartridge/manager/PerLanguageWorkbenchContentSourceResolver
    WorkbenchContentSource_en.properties :
    $basedOn=DefaultWorkbenchContentSource
    $constructor.param[1].value=[endeca-app-name]
    #eg $constructor.param[1].value=ATGen
    workbench.app.name=[Endeca-app-name]
    #eg workbench.app.name=ATGen
    workbench.host=[endeca-workbench-host]
    #eg workbench.host=localhost
    workbench.port=[endeca-workbench-port]
    #eg workbench.port=8006
    Restart the application server.
    Thanks,
    Mayank Batra
    Edited by: Waste Ideas on Mar 21, 2013 1:05 AM

  • Not able to set up the preview server

    I've referred ATG documentation for preview server setup, tried to set up the preview on BCC.
    Please find the steps I've followed to set up preview.
    1) Added the store module t as a required module to the versioned module, so that my versioned ear include all the pages of preview in my versioned EAR.
    2) Added the 'preview' layer to the runAssembler while creating the build.
    3) Created the preview configuration files as mentioned below.
    PreviewHost.properties
    ==============
    $class=atg.service.preview.PreviewHost
    hostName=localhost
    port=8380 #port where my BCC is running
    PreviewManager.properties:
    =================
    $class=atg.remote.commerce.assetmanager.preview.service.MerchandisingPreviewService
    # Explicitly sets the document.domain property in both the BCC page
    # and the preview page to "oracle.com"
    previewDomain=localhost
    defaultPreviewUserId=123456 # This is existing user profile id.
    PreviewPath.properties:
    ==============
    $class=atg.service.preview.PreviewPath
    # Explicitly sets the document.domain property in both the BCC page
    # and the preview page to "oracle.com"
    defaultPath=/myAppContext/
    PreviewURL.properties:
    ==============
    $class=atg.service.preview.PreviewURL
    name=PreviewURL
    host=/atg/dynamo/service/preview/PreviewHost
    path=/atg/dynamo/service/preview/PreviewPath
    types=ProductCatalog=product|category
    PreviewURLManager.properties:
    ===================
    $class=atg.service.preview.PreviewManager
    previewURLs=/atg/dynamo/service/preview/PreviewURL
    4) Now created the Ear with the required modules for versioning and preview.
    Application is starting without error, but when I access my application at "http://localhost:8310/myAppContext" I'm getting the following error.
    HTTP Status 403 - An attempt was made to preview a project without logging in as a user with access to publishing assets. If you are running a local preview instance, the preview URLs registered with the PreviewURLManager may be misconfigured. Ensure that the preview URLs are configured with the same host and domain name used to access the BCC server. This preview request URL is: http://localhost:8380/myAppContext/. If you are running a remote preview instance, the Preview feature does not support remote preview on servers running the BCC. Ensure that the remote preview instance is not running any of the BCC related modules. If you received this error and did not try to perform a remote preview, then you may need to disable preview in the current web application by setting the atg.preview context parameter to false in the webapps web.xml file.
    Note: I've enabled the preview for my versioned and non-versioned applications.
    Can anyone suggest me what went wrong in my configuration?. Please provide the steps you have followed to set up the preview for your application.
    Your help is very much appreciated.
    Edited by: 989774 on Feb 22, 2013 7:09 AM

    I've tried this solution, but the problem is not resolved. Is there any alternate solution available?

  • Not able to open home page of dyn/admin in ATG10.2

    Hi,
    Getting the below error while trying to open the home page of dyn/admin in ATG10.2, please help me out if somebody has any clue.
    Error getting compiled page
    Unable to execute the command 'javac -classpath C:\apps\java\jre\lib\resources.jar;C:\apps\java\jre\lib\rt.jar;C:\apps\java\jre\lib\sunrsasign.jar;C:\apps\java\jre\lib\jsse.jar;C:\apps\java\jre\lib\jce.jar;C:\apps\java\jre\lib\charsets.jar;C:\apps\java\jre\lib\modules\jdk.boot.jar;C:\apps\java\jre\classes;C:\bea\patch_wls1035\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\bea\patch_ocp360\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\apps\java\lib\tools.jar;C:\bea\wlserver_10.3\server\lib\weblogic_sp.jar;C:\bea\wlserver_10.3\server\lib\weblogic.jar;C:\bea\wlserver_10.3\server\lib\schema\weblogic-domain-binding.jar;C:\bea\wlserver_10.3\server\lib\schema\weblogic-domain-binding-compatibility.jar;C:\bea\wlserver_10.3\server\lib\schema\diagnostics-binding.jar;C:\bea\wlserver_10.3\server\lib\schema\diagnostics-image-binding.jar;C:\bea\wlserver_10.3\server\lib\wlcipher.jar;C:\bea\wlserver_10.3\server\lib\xmlx.jar;C:\bea\wlserver_10.3\server\lib\ojdbc6.jar;C:\bea\wlserver_10.3\server\lib\aqapi.jar;C:\bea\wlserver_10.3\server\lib\EccpressoAsn1.jar;C:\bea\wlserver_10.3\server\lib\EccpressoCore.jar;C:\bea\wlserver_10.3\server\lib\EccpressoJcae.jar;C:\bea\wlserver_10.3\server\lib\mysql-connector-java-commercial-5.1.14-bin.jar;C:\bea\wlserver_10.3\server\lib\wlsqlserver.jar;C:\bea\wlserver_10.3\server\lib\wldb2.jar;C:\bea\wlserver_10.3\server\lib\wlsybase.jar;C:\bea\wlserver_10.3\server\lib\wlinformix.jar;C:\bea\wlserver_10.3\server\lib\fmwgenerictoken.jar;C:\bea\wlserver_10.3\server\lib\wlw-langx.jar;C:\bea\modules\javax.jsp_1.2.0.0_2-1.jar;C:\bea\modules\glassfish.el_1.0.0.0_2-1.jar;C:\bea\modules\javax.servlet_1.0.0.0_2-5.jar;C:\bea\modules\com.bea.core.repackaged.jdt_3.5.2.0.jar;C:\bea\modules\com.bea.core.utils.compiler_1.2.0.0.jar;C:\bea\modules\com.bea.core.weblogic.web.api_1.4.0.0.jar;C:\bea\wlserver_10.3\server\lib\wlw-langx-L10N.jar;C:\bea\wlserver_10.3\server\lib\jcom.jar;C:\bea\wlserver_10.3\server\lib\weblogic-L10N.jar;C:\bea\wlserver_10.3\server\lib\weblogic-de.jar;C:\bea\wlserver_10.3\server\lib\weblogic-es.jar;C:\bea\wlserver_10.3\server\lib\weblogic-fr.jar;C:\bea\wlserver_10.3\server\lib\weblogic-it.jar;C:\bea\wlserver_10.3\server\lib\weblogic-ja.jar;C:\bea\wlserver_10.3\server\lib\weblogic-ko.jar;C:\bea\wlserver_10.3\server\lib\weblogic-pt_BR.jar;C:\bea\wlserver_10.3\server\lib\weblogic-zh_CN.jar;C:\bea\wlserver_10.3\server\lib\weblogic-zh_TW.jar;C:\bea\modules\features\weblogic.server.modules_10.3.5.0.jar;C:\bea\modules\features\weblogic.server.modules.wlsve_10.3.5.0.jar;C:\bea\modules\com.oracle.vmm.client_1.1.0.0.jar;C:\bea\modules\com.oracle.vmm.client.adapter.ovm22.ws_1.1.0.0.jar;C:\bea\modules\com.bea.core.antlr.runtime_2.7.7.jar;C:\bea\modules\com.bea.core.descriptor.j2ee_1.5.0.0.jar;C:\bea\modules\com.bea.core.descriptor.j2ee.binding_1.5.0.0.jar;C:\bea\modules\com.bea.core.descriptor.wl_1.3.3.0.jar;C:\bea\modules\com.bea.core.descriptor.wl.binding_1.3.3.0.jar;C:\bea\modules\com.bea.core.datasource6_1.9.0.0.jar;C:\bea\modules\com.bea.core.datasource6.binding_1.9.0.0.jar;C:\bea\modules\com.bea.core.beangen_1.7.0.0.jar;C:\bea\modules\com.bea.core.descriptor.settable.binding_1.7.0.0.jar;C:\bea\modules\com.bea.core.diagnostics.accessor_1.5.0.0.jar;C:\bea\modules\com.bea.core.diagnostics.accessor.binding_1.5.0.0.jar;C:\bea\modules\com.bea.core.management.core_2.8.0.1.jar;C:\bea\modules\com.bea.core.management.core.binding_2.8.0.1.jar;C:\bea\modules\com.bea.core.ejbgen_1.1.0.2.jar;C:\bea\modules\com.bea.core.repackaged.apache.bcel_5.2.1.0.jar;C:\bea\modules\com.bea.core.apache.commons.collections_3.2.0.jar;C:\bea\modules\com.bea.core.apache.commons.lang_2.1.0.jar;C:\bea\modules\com.bea.core.apache.commons.pool_1.3.0.jar;C:\bea\modules\com.bea.core.apache.commons.io_1.0.0.0_1-4.jar;C:\bea\modules\com.bea.core.apache.commons.fileupload_1.0.0.0_1-2-1.jar;C:\bea\modules\com.bea.core.apache.dom_1.0.0.0.jar;C:\bea\modules\com.bea.core.apache.logging_1.0.0.0.jar;C:\bea\modules\org.apache.openjpa_1.2.0.0_1-1-1-SNAPSHOT.jar;C:\bea\modules\com.bea.core.xml.xmlbeans_2.1.0.0_2-5-1.jar;C:\bea\modules\com.bea.core.logging_1.8.0.0.jar;C:\bea\modules\com.bea.core.bea.opensaml_1.0.0.0_6-1-0-0.jar;C:\bea\modules\com.bea.core.bea.opensaml2_1.0.0.0_6-1-0-0.jar;C:\bea\modules\com.bea.core.monitoring.harvester.api_2.3.0.0.jar;C:\bea\modules\com.bea.core.monitoring.harvester.jmx_2.3.0.0.jar;C:\bea\modules\com.bea.adaptive.harvester.utils_1.4.0.0.jar;C:\bea\modules\com.bea.mbean.typing.util_1.4.0.0.jar;C:\bea\modules\javolution_3.7.19.0.jar;C:\bea\modules\joda.time_1.2.1.0.jar;C:\bea\modules\com.bea.core.xml.staxb.buildtime_1.5.0.0.jar;C:\bea\modules\com.bea.core.xml.staxb.runtime_1.7.0.0.jar;C:\bea\modules\com.bea.core.annogen_1.3.0.0.jar;C:\bea\modules\com.bea.core.kodo_1.4.0.0_4-2-1.jar;C:\bea\modules\com.bea.core.kodo.integration_1.6.0.0.jar;C:\bea\modules\com.bea.core.kodo.integration.binding_1.6.0.0.jar;C:\bea\modules\com.bea.core.kodo.integration.tools_1.4.0.0.jar;C:\bea\modules\com.bea.core.xml.beaxmlbeans_2.3.0.0_2-5-1.jar;C:\bea\modules\com.bea.core.utils_1.9.0.1.jar;C:\bea\modules\com.bea.core.repackaged.aspectj.aspectjweaver_5.3.0.jar;C:\bea\modules\com.bea.core.repackaged.apache.commons.logging_1.2.0.jar;C:\bea\modules\com.bea.core.repackaged.springframework.spring_1.1.0.0_2-5-3.jar;C:\bea\modules\com.bea.core.repackaged.springframework.pitchfork_1.3.0.0_2-0.jar;C:\bea\modules\com.bea.core.weblogic.spring.instrument_1.2.0.0.jar;C:\bea\modules\com.bea.core.common.security.i18n_1.0.0.0_6-1-0-0.jar;C:\bea\modules\com.bea.core.common.security.xacml_1.0.0.0_6-1-0-0.jar;C:\bea\modules\com.bea.core.common.security.saml2.utils_1.0.0.0_6-1-0-0.jar;C:\bea\modules\com.bea.core.common.engine.impl_1.0.0.0_6-1-0-0.jar;C:\bea\modules\com.bea.core.common.engine.api_1.0.0.0_6-1-0-0.jar;C:\bea\modules\com.bea.core.common.security.api_1.0.0.0_6-1-0-0.jar;C:\bea\modules\com.bea.core.common.security.impl_1.0.0.0_6-1-0-0.jar;C:\bea\modules\com.bea.core.common.security.jdkutils_1.0.0.0_6-1-0-0.jar;C:\bea\modules\com.bea.core.common.security.utils_1.0.0.0_6-1-0-0.jar;C:\bea\modules\com.bea.core.common.security.saml2_1.0.0.0_6-1-0-0.jar;C:\bea\modules\com.bea.core.common.security.saml2.manage_1.0.0.0_6-1-0-0.jar;C:\bea\modules\com.bea.core.common.security.providers.utils_1.0.0.0_6-1-0-0.jar;C:\bea\modules\com.bea.core.common.security.saml.utils_1.0.0.0_6-1-0-0.jar;C:\bea\modules\com.bea.core.common.security.xacmlproviders.utils_1.0.0.0_6-1-0-0.jar;C:\bea\modules\com.bea.core.common.security.providers.env_1.0.0.0_6-1-0-0.jar;C:\bea\modules\com.bea.core.certj_3.1.0.0.jar;C:\bea\modules\com.bea.core.ldapjdk_1.2.0.0.jar;C:\bea\modules\com.bea.core.apache.commons.net_1.0.0.0_1-4-1.jar;C:\bea\modules\com.bea.core.weblogic.saaj_1.6.0.0.jar;C:\bea\modules\com.bea.core.weblogic.stax_1.9.0.0.jar;C:\bea\modules\glassfish.jaxb_1.0.0.0_2-1-12.jar;C:\bea\modules\glassfish.jaxb.xjc_1.0.0.0_2-1-12.jar;C:\bea\modules\glassfish.jaxws.resolver_1.0.0.0_2-1-5.jar;C:\bea\modules\glassfish.jaxws.fastinfoset_1.0.0.0_2-1-5.jar;C:\bea\modules\glassfish.jaxws.rt_1.2.0.0_2-1-5.jar;C:\bea\modules\glassfish.jaxws.mimepull_1.0.0.0_1-3.jar;C:\bea\modules\com.bea.core.stax2_1.0.0.0_3-0-1.jar;C:\bea\modules\com.bea.core.woodstox_1.0.0.0_4-0-5.jar;C:\bea\modules\glassfish.jaxws.tools_1.1.0.0_2-1-5.jar;C:\bea\modules\glassfish.stax.ex_1.0.0.0_1-2.jar;C:\bea\modules\glassfish.xmlstreambuffer_1.0.0.0_0-5-257.jar;C:\bea\modules\com.bea.core.apache.oro_1.0.0.0_2-0-8.jar;C:\bea\modules\javax.activation_1.1.0.0_1-1.jar;C:\bea\modules\javax.annotation_1.0.0.0_1-0.jar;C:\bea\modules\javax.interceptor_1.0.jar;C:\bea\modules\javax.ejb_3.0.1.jar;C:\bea\modules\javax.jdo_2.0.1.jar;C:\bea\modules\javax.enterprise.deploy_1.2.jar;C:\bea\modules\javax.jms_1.1.1.jar;C:\bea\modules\javax.jws_2.0.jar;C:\bea\modules\javax.mail_1.1.0.0_1-4-1.jar;C:\bea\modules\javax.management.j2ee_1.0.jar;C:\bea\modules\javax.persistence_1.0.0.0_1-0-2.jar;C:\bea\modules\javax.resource_1.5.1.jar;C:\bea\modules\javax.security.jacc_1.0.0.0_1-1.jar;C:\bea\modules\javax.transaction_1.0.0.0_1-1.jar;C:\bea\modules\javax.xml.bind_2.1.1.jar;C:\bea\modules\javax.xml.registry_1.0.0.0_1-0.jar;C:\bea\modules\javax.xml.soap_1.3.1.0.jar;C:\bea\modules\javax.xml.stream_1.1.1.0.jar;C:\bea\modules\javax.xml.ws_2.1.1.jar;C:\bea\modules\javax.xml.rpc_1.2.1.jar;C:\bea\modules\monfox.dsnmp.agent_1.1.0.0_4-7-30.jar;C:\bea\modules\cryptoj.jar;C:\bea\modules\com.bea.core.serp_1.14.3.0.jar;C:\bea\modules\com.bea.core.apache_1.2.0.1.jar;C:\bea\modules\com.bea.core.beaninfo_2.4.0.0.jar;C:\bea\modules\com.bea.core.descriptor_1.9.0.0.jar;C:\bea\modules\com.bea.core.repackaged.asm_1.0.0.0_3-2-0.jar;C:\bea\modules\com.bea.core.repackaged.asm.commons_1.0.0.0_3-2-0.jar;C:\bea\modules\com.bea.core.repackaged.asm.tree_1.0.0.0_3-2-0.jar;C:\bea\modules\com.bea.core.repackaged.asm.util_1.0.0.0_3-2-0.jar;C:\bea\modules\com.oracle.jfr_1.0.0.0.jar;C:\bea\modules\com.bea.core.diagnostics.core_2.5.0.0.jar;C:\bea\modules\com.bea.core.diagnostics.logging_1.2.0.0.jar;C:\bea\modules\com.bea.core.diagnostics.query_1.2.0.0.jar;C:\bea\modules\com.bea.core.diagnostics.instrumentor_1.7.0.0.jar;C:\bea\modules\com.bea.core.diagnostics.instrumentor.config_1.7.0.0.jar;C:\bea\modules\com.bea.core.diagnostics.flightrecorder_1.1.0.0.jar;C:\bea\modules\com.bea.core.diagnostics.notifications_1.4.0.0.jar;C:\bea\modules\com.bea.core.diagnostics.snmp_1.5.0.0.jar;C:\bea\modules\com.bea.core.i18n_1.8.0.0.jar;C:\bea\modules\com.bea.core.i18n.generator_1.5.0.0.jar;C:\bea\modules\com.bea.core.i18n.tools_1.3.0.0.jar;C:\bea\modules\com.bea.core.management.jmx_1.4.1.0.jar;C:\bea\modules\com.bea.core.mbean.maker_1.5.0.0.jar;C:\bea\modules\com.bea.core.mbean.support_1.5.0.0.jar;C:\bea\modules\com.bea.core.messaging.kernel_1.8.0.0.jar;C:\bea\modules\com.bea.core.resourcepool_1.7.0.0.jar;C:\bea\modules\com.bea.core.weblogic.socket.api_1.2.0.0.jar;C:\bea\modules\com.bea.core.weblogic.rmi.client_1.10.0.0.jar;C:\bea\modules\com.bea.core.weblogic.security.wls_1.0.0.0_6-1-0-0.jar;C:\bea\modules\com.bea.core.weblogic.lifecycle_1.4.0.0.jar;C:\bea\modules\com.bea.core.store_1.7.0.0.jar;C:\bea\modules\com.bea.core.store.gxa_1.6.0.0.jar;C:\bea\modules\com.bea.core.store.admintool_1.2.0.0.jar;C:\bea\modules\com.bea.core.store.jdbc_1.3.0.0.jar;C:\bea\modules\com.bea.core.transaction_2.7.0.0.jar;C:\bea\modules\com.bea.core.utils.full_1.9.0.1.jar;C:\bea\modules\com.bea.core.utils.agent_1.1.0.0.jar;C:\bea\modules\com.bea.core.utils.classloaders_1.9.0.0.jar;C:\bea\modules\com.bea.core.utils.expressions_1.4.0.0.jar;C:\bea\modules\com.bea.core.utils.wrapper_1.4.0.0.jar;C:\bea\modules\com.bea.core.timers_1.7.0.0.jar;C:\bea\modules\com.bea.core.weblogic.workmanager_1.10.0.0.jar;C:\bea\modules\com.bea.core.workarea_1.7.0.0.jar;C:\bea\modules\com.bea.core.xml.weblogic.xpath_1.4.0.0.jar;C:\bea\modules\com.bea.core.jatmi_1.5.0.0.jar;C:\bea\modules\com.bea.core.weblogic.security_1.0.0.0_6-1-0-0.jar;C:\bea\modules\com.bea.core.weblogic.security.auth_1.1.0.0.jar;C:\bea\modules\com.bea.core.weblogic.security.digest_1.0.0.0.jar;C:\bea\modules\com.bea.core.weblogic.security.identity_1.1.2.1.jar;C:\bea\modules\com.bea.core.weblogic.security.logger_1.5.0.0.jar;C:\bea\modules\com.bea.core.weblogic.security.psm_1.1.0.0.jar;C:\bea\modules\com.bea.core.weblogic.security.ssl_1.0.0.0.jar;C:\bea\modules\com.bea.core.nodemanager.plugin_1.3.0.0.jar;C:\bea\modules\com.oracle.core.nodemanager.process_1.0.0.0.jar;C:\bea\modules\com.bea.core.jmspool_1.8.0.0.jar;C:\bea\modules\com.bea.core.compat.wl.90_1.3.0.0.jar;C:\bea\modules\com.bea.core.http.pubsub.mbean_1.6.0.0.jar;C:\bea\modules\com.bea.core.redef_1.5.0.0.jar;C:\bea\modules\com.bea.core.redefagent_1.5.0.0.jar;C:\bea\modules\com.bea.core.redef.binding_1.5.0.0.jar;C:\bea\modules\com.oracle.toplink_1.0.0.0_11-1-1-5-0.jar;C:\bea\modules\org.eclipse.persistence_1.1.0.0_2-1.jar;C:\bea\modules\commonj.sdo_1.0.0.0_1-0.jar;C:\bea\modules\com.oracle.core.coherence.descriptor_1.1.0.0.jar;C:\bea\modules\com.oracle.core.coherence.descriptor.binding_1.1.0.0.jar;C:\bea\modules\com.oracle.core.weblogic.msgcat_1.1.0.0.jar;C:\bea\modules\ws.api_1.1.0.0.jar;C:\bea\modules\com.oracle.core.eclipselink.integration_1.0.0.0.jar;C:\bea\modules\com.oracle.weblogic.sca.client_1.0.0.0.jar;C:\bea\modules\com.oracle.weblogic.rac.ucp_1.0.0.0.jar;C:\bea\modules\com.oracle.repackaged.ucp_1.0.0.0_11-1-1-5-0.jar;C:\bea\modules\com.oracle.repackaged.ons.client_1.0.0.0_11-1-0-6-0.jar;C:\bea\wlserver_10.3\server\lib\webservices.jar;C:\bea\modules\org.apache.ant_1.7.1\lib\ant-all.jar;C:\bea\modules\org.apache.ant.patch_1.2.0.0_1-7-1.jar;C:\bea\modules\org.apache.ant_1.7.1\lib\ant-antlr.jar;C:\bea\modules\org.apache.ant_1.7.1\lib\ant-apache-bcel.jar;C:\bea\modules\org.apache.ant_1.7.1\lib\ant-apache-bsf.jar;C:\bea\modules\org.apache.ant_1.7.1\lib\ant-apache-log4j.jar;C:\bea\modules\org.apache.ant_1.7.1\lib\ant-apache-oro.jar;C:\bea\modules\org.apache.ant_1.7.1\lib\ant-apache-regexp.jar;C:\bea\modules\org.apache.ant_1.7.1\lib\ant-apache-resolver.jar;C:\bea\modules\org.apache.ant_1.7.1\lib\ant-commons-logging.jar;C:\bea\modules\org.apache.ant_1.7.1\lib\ant-commons-net.jar;C:\bea\modules\org.apache.ant_1.7.1\lib\ant-jai.jar;C:\bea\modules\org.apache.ant_1.7.1\lib\ant-javamail.jar;C:\bea\modules\org.apache.ant_1.7.1\lib\ant-jdepend.jar;C:\bea\modules\org.apache.ant_1.7.1\lib\ant-jmf.jar;C:\bea\modules\org.apache.ant_1.7.1\lib\ant-jsch.jar;C:\bea\modules\org.apache.ant_1.7.1\lib\ant-junit.jar;C:\bea\modules\org.apache.ant_1.7.1\lib\ant-launcher.jar;C:\bea\modules\org.apache.ant_1.7.1\lib\ant-netrexx.jar;C:\bea\modules\org.apache.ant_1.7.1\lib\ant-nodeps.jar;C:\bea\modules\org.apache.ant_1.7.1\lib\ant-starteam.jar;C:\bea\modules\org.apache.ant_1.7.1\lib\ant-stylebook.jar;C:\bea\modules\org.apache.ant_1.7.1\lib\ant-swing.jar;C:\bea\modules\org.apache.ant_1.7.1\lib\ant-testutil.jar;C:\bea\modules\org.apache.ant_1.7.1\lib\ant-trax.jar;C:\bea\modules\org.apache.ant_1.7.1\lib\ant-weblogic.jar;C:\bea\modules\org.apache.ant_1.7.1\lib\ant.jar;C:\bea\modules\org.apache.ant_1.7.1\lib\xml-apis.jar;C:\bea\modules\net.sf.antcontrib_1.1.0.0_1-0b2\lib\ant-contrib.jar;C:\bea\wlserver_10.3\sip\server\lib\weblogic_sip.jar;C:\bea\wlserver_10.3\sip\server\lib\sipservlet.jar;C:\bea\wlserver_10.3\sip\server\lib\wlss.jar;C:\bea\wlserver_10.3\sip\server\lib\wlss-datatier.jar;C:\bea\wlserver_10.3\sip\server\lib\wlss-descriptor-binding.jar;C:\bea\wlserver_10.3\sip\server\lib\profile-service-descriptor-binding.jar;C:\bea\wlserver_10.3\sip\server\lib\wlss-mbeaninfo.jar;C:\bea\wlserver_10.3\sip\server\lib\wlss_i18n.jar;C:\bea\wlserver_10.3\sip\server\lib\wlssechosvr.jar;C:\bea\wlserver_10.3\sip\server\lib\sip-app-binding.jar;C:\bea\wlserver_10.3\sip\server\lib\wlssapi.jar;C:\bea\wlserver_10.3\sip\server\lib\wlssapi-internal.jar;C:\bea\wlserver_10.3\sip\server\lib\sip-utils.jar;C:\bea\wlserver_10.3\sip\server\lib\sctp.jar;C:\bea\wlserver_10.3\sip\server\lib\wlssdiameter.jar;C:\bea\wlserver_10.3\common\derby\lib\derbyclient.jar;C:\bea\wlserver_10.3\common\derby\lib\derbyLocale_cs.jar;C:\bea\wlserver_10.3\common\derby\lib\derbyLocale_de_DE.jar;C:\bea\wlserver_10.3\common\derby\lib\derbyLocale_es.jar;C:\bea\wlserver_10.3\common\derby\lib\derbyLocale_fr.jar;C:\bea\wlserver_10.3\common\derby\lib\derbyLocale_hu.jar;C:\bea\wlserver_10.3\common\derby\lib\derbyLocale_it.jar;C:\bea\wlserver_10.3\common\derby\lib\derbyLocale_ja_JP.jar;C:\bea\wlserver_10.3\common\derby\lib\derbyLocale_ko_KR.jar;C:\bea\wlserver_10.3\common\derby\lib\derbyLocale_pl.jar;C:\bea\wlserver_10.3\common\derby\lib\derbyLocale_pt_BR.jar;C:\bea\wlserver_10.3\common\derby\lib\derbyLocale_ru.jar;C:\bea\wlserver_10.3\common\derby\lib\derbyLocale_zh_CN.jar;C:\bea\wlserver_10.3\common\derby\lib\derbyLocale_zh_TW.jar;C:\bea\wlserver_10.3\server\lib\xqrl.jar;C:\bea\user_projects\domains\base_domain\protocol.jar;C:\bea\user_projects\domains\base_domain\lib\protocol.jar;C:\bea\user_projects\domains\base_domain\lib\sipactivator.jar;C:\bea\user_projects\domains\base_domain\servers\Store\cache\EJBCompilerCache\-121ls3xverlyw;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\atg_bootstrap_ejb.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_atghome_slocallib\;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DafEar.base_s.._sTomcat_slib_sclasses.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DafEar.base_s.._sWebLogic_slib_sclasses.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DafEar.base_s.._sWebSphere_slib_sclasses.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DafEar.base_s.._sJBoss_slib_sclasses.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DafEar.base_slib_sclasses.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_Store.EStore.International_slib_sclasses.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_Store.Storefront_slib_sclasses.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_Store.Endeca.Assembler_slib_sclasses.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_Store.Endeca.Base_slib_sclasses.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_Store.EStore_slib_sclasses.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_Store.EStore_slib_scommons-codec-1.3.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DCS.PublishingAgent_slib_sclasses.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DCS_slib_sresources.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DCS_slib_sclasses.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_WebUI_slib_sclasses.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_PublishingAgent.base_slib_sagent.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_PublishingAgent.base_slib_sclasses.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DSS_slib_sresources.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DSS_slib_sclasses.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_ClickToConnect_slib_sclicktoconnect.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_ADC_slib_sclasses.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DPS_slib_sresources.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DPS_slib_sclasses.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DAF.Search.Index_slib_sclasses.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DAF.Search.Query_slib_sclasses.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DAF.Search.common_slib_sclasses.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DAF.Search.Routing_slib_sclasses.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DAF.Search.Base_slib_sclasses.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DAF.Search.Base_slib_srmi-stub-classes.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DAS-UI_slib_suiresources.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DAS-UI_slib_suiclasses.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DAS-UI_slib_sjhall.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DAF.Endeca.Assembler_slib_sclasses.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DAF.Endeca.Assembler_slib_sendeca__navigation-6.4.1.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DAF.Endeca.Assembler_slib_sendeca__assembler-3.1.2.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DAF.Endeca.Base_slib_sclasses.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DAS_slib_sresources.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DAS_slib_sclasses.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DAS_slib_sice.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DAS_slib_scglib-nodep-2.1__3.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DAS_slib_sspring-aop-1.2-rc1.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DAS_slib_sjline-0.9.94.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_DAS_slib_svalidation-api-1.0.0.GA.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sCCTSelfService.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_scct-services-client-1.1.54-SNAPSHOT.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sebs-services-1.0.9.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_scxf-api-2.7.6.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_scxf-tools-common-2.7.6.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_svelocity-1.7.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_scommons-collections-3.2.1.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_scommons-lang-2.4.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sjaxb-xjc-2.1.13.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_scxf-rt-core-2.7.6.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_scxf-rt-frontend-simple-2.7.6.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_scxf-rt-bindings-soap-2.7.6.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_scxf-rt-databinding-jaxb-2.7.6.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_scxf-rt-frontend-jaxws-2.7.6.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sxml-resolver-1.2.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sasm-3.3.1.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_scxf-rt-bindings-xml-2.7.6.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_scxf-rt-ws-addr-2.7.6.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_scxf-rt-ws-policy-2.7.6.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_scxf-rt-transports-http-2.7.6.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_scamel-soap-2.11.1.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_scamel-core-2.11.1.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_scamel-jaxb-2.11.1.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_shttpclient-4.1.1.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_shttpcore-4.1.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_scommons-logging-1.1.1.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_siseries-xml-utils-1.0.5.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sneethi-3.0.2.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sxstream-1.4.3.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sxmlpull-1.1.3.1.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sxpp3__min-1.1.4c.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_scommons-codec-1.3.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_saxis-1.4.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sjaxb-api-2.2.6.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sjaxb-impl-2.2.5.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sjxl-2.6.6.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sstax2-api-3.1.1.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sstax-api-1.0-2.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_swlthint3client-1.0.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_swoodstox-core-asl-4.2.0.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_swsdl4j-1.6.2.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sxmlschema-core-2.0.2.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sgeronimo-activation__1.1__spec-1.1.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sgeronimo-annotation__1.0__spec-1.1.1.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sgeronimo-javamail__1.4__spec-1.7.1.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_smetrics-core-3.0.1.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_smetrics-servlets-3.0.1.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_smetrics-json-3.0.1.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_smetrics-jvm-3.0.1.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sjackson-databind-2.2.2.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sjackson-annotations-2.2.2.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sjackson-core-2.2.2.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_smetrics-healthchecks-3.0.1.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_spublishing-classes-10.2.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sinternational-classes-10.2.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sestore-classes-10.2.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sbcprov-jdk15-1.43.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sbcprov-ext-jdk15-1.43.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_santisamy-1.5.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sbatik-css-1.7.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sbatik-ext-1.7.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sbatik-util-1.7.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sxml-apis-1.3.04.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sxml-apis-ext-1.3.04.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_snekohtml-1.9.16.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sxercesImpl-2.9.1.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_scommons-httpclient-3.1.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_surlrewritefilter-4.0.3.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_ssaaj-impl-1.3.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_ssaaj-api-1.3.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sactivation-1.0.2.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_scommons-beanutils-1.8.3.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_scommons-validator-1.4.0.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_scommons-digester-1.8.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sjson-simple-1.1.1.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sslf4j-api-1.7.5.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_slog4j-over-slf4j-1.7.5.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_slogback-core-1.0.9.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_slogback-classic-1.0.9.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sjoda-time-2.1.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_sjoda-time-jsptags-1.1.1.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\.\atglib\_CCTSelfService_slib_scommons-el-1.0.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\atglib\jaxb-api.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\atglib\jaxb-impl.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\atglib\jsr173_1.0_api.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\atglib\activation.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\atglib\jaxb1-impl.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\atglib\saaj-api.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\atglib\jaxp-api.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\atglib\jax-qname.jar;C:\dev\workspace\CCT_10.2\CCTSelfService\target\CCTSelfService.ear\atglib\servlet.jar;C:\bea\patch_wls1035\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\bea\patch_ocp360\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\apps\java\lib\tools.jar;C:\bea\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\bea\WLSERV~1.3\server\lib\weblogic.jar;C:\bea\modules\features\weblogic.server.modules_10.3.5.0.jar;C:\bea\WLSERV~1.3\server\lib\webservices.jar;C:\bea\modules\ORGAPA~1.1/lib/ant-all.jar;C:\bea\modules\NETSFA~1.0_1/lib/ant-contrib.jar;C:\bea\wlserver_10.3\sip\server\lib\weblogic_sip.jar;C:\bea\WLSERV~1.3\common\derby\lib\derbyclient.jar;C:\bea\WLSERV~1.3\server\lib\xqrl.jar;C:\bea\user_projects\domains\base_domain\protocol.jar;C:\ATG\ATG10.2\home\servers\ng3_store_server\pagebuild;C:\apps\java\jre\lib\resources.jar;C:\apps\java\jre\lib\rt.jar;C:\apps\java\jre\lib\sunrsasign.jar;C:\apps\java\jre\lib\jsse.jar;C:\apps\java\jre\lib\jce.jar;C:\apps\java\jre\lib\charsets.jar;C:\apps\java\jre\lib\modules\jdk.boot.jar;C:\apps\java\jre\classes -d C:\ATG\ATG10.2\home\servers\ng3_store_server\pagebuild C:\ATG\ATG10.2\home\servers\ng3_store_server\pagebuild\_dasadmin_3__UTF_s8\_index.java'. Make sure that you have the 'bin' directory for your JDK in your PATH variable before starting Dynamo and that you have enough swap space.
      The detailed exception is: java.io.IOException: Cannot run program "javac": CreateProcess error=206, The filename or extension is too long

    Add following(ExtendedJhtmlPageProcessor) component at this location and restart the sever.
    atg\dynamo\servlet\pagecompile\
    ExtendedJhtmlPageProcessor.properties:-
         #atg\dynamo\servlet\pagecompile\ExtendedJhtmlPageProcessor.properties
         $class=atg.servlet.pagecompile.jsp11.JSPPageProcessor
         javaCompilerClassName=atg.servlet.pagecompile.SunJavaSourceCompiler
    I am sure it will resolve your issue,If not please let me know.
    And also please mark the answer, So that no one else raise new discussion for this, I remember that I have already pasted same component content before also.

Maybe you are looking for