Endeca - Error Baseline Update - AppControlException: Error executing valid

Hi everyone, I got an issue with Endeca that is driving me crazy.
I m trying to run the baseline update service with my own pipeline and this error comes out:
============================Log of my service========================================================
Dec 18, 2012 6:12:26 PM com.endeca.soleng.eac.toolkit.script.Script runBeanShellScript
SEVERE: Batch component 'Forge' failed. Refer to component logs in D:\Endeca\apps\Australia\config\script\..\..\.\logs\forges\Forge on host ITLHost.
Occurred while executing line 30 of valid BeanShell script:
27|
28| // archive logs and run ITL
29| Forge.archiveLogDir();
30| Forge.run();
31| Dgidx.archiveLogDir();
32| Dgidx.run();
33|
Dec 18, 2012 6:12:26 PM com.endeca.soleng.eac.toolkit.Controller execute
SEVERE: Caught an exception while invoking method 'run' on object 'BaselineUpdate'. Releasing locks.
java.lang.reflect.InvocationTargetException
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:597)
     at com.endeca.soleng.eac.toolkit.Controller.invokeRequestedMethod(Controller.java:925)
     at com.endeca.soleng.eac.toolkit.Controller.execute(Controller.java:210)
     at com.endeca.soleng.eac.toolkit.Controller.main(Controller.java:89)
Caused by: com.endeca.soleng.eac.toolkit.exception.AppControlException: Error executing valid BeanShell script.
     at com.endeca.soleng.eac.toolkit.script.Script.runBeanShellScript(Script.java:134)
     at com.endeca.soleng.eac.toolkit.script.Script.run(Script.java:82)
     ... 7 more
Caused by: com.endeca.soleng.eac.toolkit.exception.EacComponentControlException: Batch component 'Forge' failed. Refer to component logs in D:\Endeca\apps\Australia\config\script\..\..\.\logs\forges\Forge on host ITLHost.
     at com.endeca.soleng.eac.toolkit.component.BatchComponent.run(BatchComponent.java:79)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:597)
     at bsh.Reflect.invokeMethod(Unknown Source)
     at bsh.Reflect.invokeObjectMethod(Unknown Source)
     at bsh.Name.invokeMethod(Unknown Source)
     at bsh.BSHMethodInvocation.eval(Unknown Source)
     at bsh.BSHPrimaryExpression.eval(Unknown Source)
     at bsh.BSHPrimaryExpression.eval(Unknown Source)
     at bsh.BSHBlock.evalBlock(Unknown Source)
     at bsh.BSHBlock.eval(Unknown Source)
     at bsh.BSHBlock.eval(Unknown Source)
     at bsh.BSHIfStatement.eval(Unknown Source)
     at bsh.BSHBlock.evalBlock(Unknown Source)
     at bsh.BSHBlock.eval(Unknown Source)
     at bsh.BSHBlock.eval(Unknown Source)
     at bsh.BSHIfStatement.eval(Unknown Source)
     at bsh.Interpreter.eval(Unknown Source)
     at bsh.Interpreter.eval(Unknown Source)
     at bsh.Interpreter.eval(Unknown Source)
     at com.endeca.soleng.eac.toolkit.script.Script.runBeanShellScript(Script.java:120)
     ... 8 more
Dec 18, 2012 6:12:26 PM com.endeca.soleng.eac.toolkit.base.LockManager releaseLock
INFO: Released lock 'update_lock'.
========================================================================================
I verified the forge log and i get this there
FATAL     12/18/12 21:12:25.063 UTC (1355865145063)     FORGE     {config}: Could not open "D:\Endeca\apps\Australia\data\processing\wine_data.txt.gz": No such file or directory     
ERROR     12/18/12 21:12:25.095 UTC (1355865145088)     FORGE     {config}: Forge failed with 1 error and 0 warnings.     
I verified the folder D:\Endeca\apps\Australia\data\processing and there i have got a copy of my pipeline. It seems like something isn't working properly and the service is trying to run the default pipeline instead of mine own pipeline .
If i copy wine_data.txt.gz file in D:\Endeca\apps\Australia\data\processing\ the forge runs the default pipeline well, but i don't want the default pipeline i want use mine.
I don't know why the forge is trying to run the default pipeline.
Can somebody help me, please?
Thanks
Diego

The issue is likely that an old version of your pipeline (or the wrong version) is getting copied into /data/processing before Forge is called. I would try opening your project using Developer Studio based on the files in /data/processing. Chances are you'll see the wrong/older version of the pipeline.
If you pay close attention to the beanshell scripting before Forge is called we can see where items are getting copied around:
log.info("Starting baseline update script.");
// obtain lock
if (LockManager.acquireLock("update_lock")) {
// test if data is ready for processing
if (Forge.isDataReady()) {
if (ConfigManager.isWebStudioEnabled()) {
// get Web Studio config, merge with Dev Studio config
ConfigManager.downloadWsConfig();
ConfigManager.fetchMergedConfig();
} else {
ConfigManager.fetchDsConfig();
// clean directories
Forge.cleanDirs();
PartialForge.cleanCumulativePartials();
Dgidx.cleanDirs();
// fetch extracted data files to forge input
Forge.getIncomingData();
LockManager.removeFlag("baseline_data_ready");
// fetch config files to forge input
Forge.getConfig();
// archive logs and run ITL
Forge.archiveLogDir();
Forge.run();
Dgidx.archiveLogDir();
Dgidx.run();
If isWedStudioEnabled=true, your script might be getting tripped up here since it continuously may be pulling an older version out of XMgr/WebStudio. I would comment these lines out
ConfigManager.downloadWsConfig();
ConfigManager.fetchMergedConfig();
I would then delete the contents of the /data/processing directory and the /data/complete_index_config and run it again. If this works, I would recommend using the emgr_update utility to uncover what configuration you have stored in webstudio and ensure it is the right one. Once rectified, you can uncomment these lines.
HTH,
Dan
http://branchbird.com

Similar Messages

  • Endeca App baseline update failure

    Hi,
    I am getting following issue while doing baseline update of endeca app
    [root@lxmumend29 control]# ./baseline_update.sh
    [04.25.14 15:05:01] INFO: Checking definition from AppConfig.xml against existing EAC provisioning.
    [04.25.14 15:05:02] INFO: Updating provisioning for component 'ConfigurationGeneratorForge'.
    [04.25.14 15:05:02] INFO: Updating definition for component 'ConfigurationGeneratorForge'.
    [04.25.14 15:05:03] INFO: Updating provisioning for component 'Forge'.
    [04.25.14 15:05:03] INFO: Updating definition for component 'Forge'.
    [04.25.14 15:05:03] INFO: Updating provisioning for component 'PartialForge'.
    [04.25.14 15:05:03] INFO: Updating definition for component 'PartialForge'.
    [04.25.14 15:05:04] INFO: Definition updated.
    [04.25.14 15:05:04] INFO: Starting baseline update script.
    [04.25.14 15:05:04] INFO: Acquired lock 'update_lock'.
    [04.25.14 15:05:04] INFO: [ITLHost] Starting shell utility 'cleanDir_processing'.
    [04.25.14 15:05:06] INFO: [ITLHost] Starting shell utility 'move_-_to_processing'.
    [04.25.14 15:05:07] INFO: [ITLHost] Starting copy utility 'fetch_config_to_input_for_forge_Forge'.
    [04.25.14 15:05:08] INFO: [ITLHost] Starting backup utility 'backup_log_dir_for_component_ConfigurationGeneratorForge'.
    [04.25.14 15:05:09] INFO: [ITLHost] Starting component 'ConfigurationGeneratorForge'.
    [04.25.14 15:05:10] SEVERE: Batch component  'ConfigurationGeneratorForge' failed. Refer to component logs in /home/lsplendeca/endeca/App/logiApp/./logs/forges/ConfigurationGeneratorForge on host ITLHost.
    Occurred while executing line 39 of valid BeanShell script:
    36|
    37|        ConfigurationGeneratorForge.archiveLogDir();
    38|
    39|        ConfigurationGeneratorForge.run();
    40|
    41|        CopyRecsearchConfig.run();
    42|
    [04.25.14 15:05:10] SEVERE: Caught an exception while invoking method 'run' on object 'BaselineUpdate'. Releasing locks.
    Caused by java.lang.reflect.InvocationTargetException
    sun.reflect.NativeMethodAccessorImpl invoke0 - null
    Caused by com.endeca.soleng.eac.toolkit.exception.AppControlException
    com.endeca.soleng.eac.toolkit.script.Script runBeanShellScript - Error executing valid BeanShell script.
    Caused by com.endeca.soleng.eac.toolkit.exception.EacComponentControlException
    com.endeca.soleng.eac.toolkit.component.BatchComponent run - Batch component  'ConfigurationGeneratorForge' failed. Refer to component logs in /home/lsplendeca/endeca/App/logiApp/./logs/forges/ConfigurationGeneratorForge on host ITLHost.
    [04.25.14 15:05:10] INFO: Released lock 'update_lock'.
    [root@lxmumend29 control]
    For solving this issue I tried following possible solutions which i found on other otn discussions,
    1)Checked the forward slash in  CAS path in /config/script/environment.properties
    2)Ensured slf4j-api-1.5.5.jar and slf4j-log4j12-1.5.2-sources.jar is in Forges classpath  in environment.properties file
    My  /config/script/environment.properties is as follow,
    LANGUAGE_ID=en
    EAC_PORT=8888
    HOSTNAME=192.168.15.29
    #CAS settings
    CAS_ROOT=/home/lsplendeca/endeca/CAS/11.0.0
    CAS_HOST=192.168.15.29
    CAS_PORT=8500
    CAS_CLIENT_ID=FORGE
    # PATH_SEP_VARNAME: for platform-independence, determine at runtime instead of build time:
    PATH_SEP_VARNAME=${path.separator}
    # CAS library directory for loading the jars to use in the record store commandline util into the class path
    RS_JAVA_LIB_DIR=/home/lsplendeca/endeca/CAS/11.0.0/lib/recordstore-cmd/
    # CAS recordstore-forge-adapter jar loads all necessary record store client dependencies through manifest file
    CAS_RS_CLASSPATH=/home/lsplendeca/endeca/CAS/11.0.0/lib/recordstore-forge-adapter/recordstore-forge-adapter-11.0.0.jar
    # Forge needs record store libraries as well as Spring to load record store adapter configuration files
    FORGE_CLASSPATH=${CAS_RS_CLASSPATH}${PATH_SEP_VARNAME}./config/lib/java/spring-2.5.6.jar${PATH_SEP_VARNAME}./config/lib/java/eacToolkit-11.0.0.jar${PATH_SEP_VARNAME}./config/lib/java/spring-delegate-adapter-1.0.1.jar${PATH_SEP_VARNAME}./config/script${PATH_SEP_VARNAME}./config/lib/java/slf4j-api-1.5.5.jar./config/lib/java/slf4j-log4j12-1.5.2-sources.jar
    # Forges running FCM need to both read from record stores and run the FCM, ifdi-fcm.jar includes dependencies via manifest
    FORGE_FCM_CLASSPATH=${FORGE_CLASSPATH}${PATH_SEP_VARNAME}./config/lib/java/ifdi-fcm-1.0.0.20121016.jar
    And also shown in error to check log file
    [04.25.14 15:05:10] SEVERE: Batch component  'ConfigurationGeneratorForge' failed. Refer to component logs in /home/lsplendeca/endeca/App/logiApp/./logs/forges/ConfigurationGeneratorForge on host ITLHost.
    The log file is empty
    Please suggest me what else can i try to overcome this issue.
    Thanks in advance

    And i am doing this on linux

  • Error during update. Error Code U44M1P2003

    Hi I'm using Adobe Photoshop Elements Version: 12.0 (12.0 (20130903.r.43239)) x32 on Windows 8 64-Bit Version: 6.2.
    When I choose "update" in the help menu there is an upate available.
    When I install the update it is downloaded but crashes at 99%.
    The error code U44M1P2003 is displayed in the error protocol.
    What can I do to install the update?

    Wilm please see the following discussions where this topic has been discussed:
    http://forums.adobe.com/message/6208740#6208740
    http://forums.adobe.com/message/6206074#6206074

  • ITunes errors - corrupted updates and error 14

    So I'm trying to update my iPad mini 1G from 7.1.1 to 7.1.2 but iTunes cannot download the update firmware without corrupting the download. I tried 14 other ipsws from other websites and iTunes will either hang during the update (30+ min) or when the progress bar reaches the end iTunes will give me error 14. I've tried looking in the forums but nothing helps, I've reinstalled iTunes on my Mac, I've used three different cables to fix error 14: nothing works. Here are my specs:
    OS X 10.9.3 (Mavericks)
    iTunes 11.2.2 (3)
    iPad Mini 1G 7.1.1

    Hi there CpuNerd,
    It looks like you have already tried a few things, but you may still find these resources helpful. The article below has troubleshooting for the specific error you are receiving.
    Resolve iOS update and restore errors
    http://support.apple.com/kb/TS3694
    Check your USB connections
    Related errors: 13, 14, 1600, 1601, 1602, 1603, 1604, 1611, 1643-1650, 2000, 2001, 2002, 2005, 2006, 2009, 4005, 4013, 4014, or “invalid response."
    If the USB connection between your device and computer is interrupted, you may be unable to update or restore.
    To narrow down the issue, you can also change up your hardware:
    Use the USB cable that came with your device, or a different Apple USB cable.
    Plug your cable into a different USB port directly on your computer. Don't plug it into your keyboard.
    Try a different computer.
    If necessary, resolve any further issues with the USB connection, then with your security software.
    If you're still seeing the error message, check for hardware issues by following the next section.
    Additionally, please keep in mind that the only supported methods of updating iOS devices are outlined in the article below. You may want to try performing an Over the Air update if iTunes is giving you trouble.
    Update your iPhone, iPad, or iPod touch
    http://support.apple.com/kb/ht4623
    Hope that helps,
    -Griff W.

  • Error 3004 & Update Server Error

    Well after a 7 month wait I woke up this morning to hear 4.2.1 is out and I download and install it and here is what I get:
    "The iPad "Ryan's iPad" could not be restored. An unknown error occurred (3004)."
    Well I clicked more info and It took me to Apple's website and blah blah. I restarted the computer and I got this:
    "The iPad "iPad" cannot be restored at this time because the iPad software update server could not be contacted or is temporarily unavailable."
    And now I have an iBrick XL!
    Awesome...

    Thanks. Recboot got my ipad out of perma restore mode. My ipad is new, so I called Apple to find out what was up with the constant server error message and guy on phone had no real idea, just that logs of people were upgrading right now. RecBoot was a very easy solution.

  • Update termination error on coding in user exit EXIT_SAPLCOIH_009

    HI All,
    I am working on approval of a work order in IW32 for which I am coding within a user exit EXIT_SAPLCOIH_009 which gets triggerred at the time of saving the work order. This will update the AUFK table and send a mail to a recipient. But when I save the work order after approving it, it gives me an error saying "Update Termination error". I checked within the SM13 transaction and ST22 for dump analysis, it says "The ABAP/4 Open SQL array insert results in duplicate database records.". Can anyone tell me what could have gone wrong and how I can rectify this. Your help is greatly appreciated.
    Thanks in Advance

    Hello
    This type of error will appear in three cases
    1.when there is a record in the database and trying to insert another with the same number
    2.If there is any inconsistencies in number ranges  (check this only if you have changed the number ranges very recently)
    3. If the output type and the output device is wrongly selected ( not the prescribed)
    Analyse yourself.
    Regards,
    Prakash

  • U44M1P7 Error during update.

    When trying to install a current update in PS CC I got the following error msg: "Update Failed" error (U44M1P7)

    Googling "U44M1P7" points to http://helpx.adobe.com/creative-suite/kb/error-u44m1p7-installing-updates-ccm.html

  • Baseline  update is failing

    Hi,
    i changed the dgraph port number in the Appconfig.xml from 15000 to 25000 as we have some other application is running on that port and executed the baseline update
    When i execute the baseline update i am getting following error in the server.
    can i change the dgrpah port like this? (directly inside the )
    Setting flag 'baseline_data_ready' in the EAC.
    [07.18.12 09:40:52] SEVERE: Caught an exception while invoking method 'setFlag' on object 'LockManager'. Releasing locks.
    Caused by java.lang.reflect.InvocationTargetException
    sun.reflect.NativeMethodAccessorImpl invoke0 - null
    Caused by com.endeca.soleng.eac.toolkit.exception.EacCommunicationException
    com.endeca.soleng.eac.toolkit.base.Synchronizable setFlag - Caught exception while attempting to set flag 'baseline_data_ready'.
    Caused by org.apache.axis.AxisFault
    org.apache.axis.AxisFault makeFault - ; nested exception is:
    java.net.ConnectException: Connection refused
    Caused by java.net.ConnectException
    java.net.PlainSocketImpl socketConnect - Connection refused
    [07.18.12 09:40:53] SEVERE: Caught an exception while invoking method 'setFlag' on object 'LockManager'. Releasing locks.
    Caused by java.lang.reflect.InvocationTargetException
    sun.reflect.NativeMethodAccessorImpl invoke0 - null
    Caused by com.endeca.soleng.eac.toolkit.exception.EacCommunicationException
    com.endeca.soleng.eac.toolkit.base.Synchronizable setFlag - Caught exception while attempting to set flag 'baseline_data_ready'.
    Caused by org.apache.axis.AxisFault
    org.apache.axis.AxisFault makeFault - ; nested exception is:
    java.net.ConnectException: Connection refused
    Caused by java.net.ConnectException
    java.net.PlainSocketImpl socketConnect - Connection refused
    [07.18.12 09:40:54] INFO: Checking definition from AppConfig.xml, dgraphs.xml against existing EAC provisioning.
    [07.18.12 09:40:54] SEVERE: Caught an exception while checking provisioning.
    Caused by com.endeca.soleng.eac.toolkit.exception.EacCommunicationException
    com.endeca.soleng.eac.toolkit.application.Application isDefined - Caught exception while querying for defined application list.
    Caused by org.apache.axis.AxisFault
    org.apache.axis.AxisFault makeFault - ; nested exception is:
    java.net.ConnectException: Connection refused
    Caused by java.net.ConnectException
    java.net.PlainSocketImpl socketConnect - Connection refused
    Thanks,
    Tijomon Mathew
    Edited by: 946140 on Jul 18, 2012 6:45 AM

    Sorry for putting this silly question in the forum, the issue is because the platform services were not started

  • Endeca baseline update error

    Hello.I have problems with indexing.When I run indexing mannually via baseline update I got error.
    [05.02.13 17:44:30] SEVERE: Caught exception while querying for status of utility 'move_-toprocessing'.
    Occurred while executing line 25 of valid BeanShell script:
    22|
    23| // fetch extracted data files to forge input
    24|
    25| Forge.getIncomingData();
    26|
    27|
    28|
    [05.02.13 17:44:30] SEVERE: Caught an exception while invoking method 'run' on object 'BaselineUpdate'. Releasing locks.
    Caused by java.lang.reflect.InvocationTargetException
    sun.reflect.NativeMethodAccessorImpl invoke0 - null
    Caused by com.endeca.soleng.eac.toolkit.exception.AppControlException
    com.endeca.soleng.eac.toolkit.script.Script runBeanShellScript - Error executing valid BeanShell script.
    Caused by com.endeca.soleng.eac.toolkit.exception.EacCommunicationException
    com.endeca.soleng.eac.toolkit.utility.Utility getStatus - Caught exception while querying for status of utility 'move_-toprocessing'.
    Caused by com.endeca.eac.client.EACFault
    sun.reflect.NativeConstructorAccessorImpl newInstance0 - null
    [05.02.13 17:44:30] INFO: Released lock 'update_lock'.
    All logs empty in applicatin only NBTY.0.0.log
    SEVERE: Caught exception while querying for status of utility 'move_-toprocessing'.
    Occurred while executing line 25 of valid BeanShell script:
    22|
    23| // fetch extracted data files to forge input
    24|
    25| Forge.getIncomingData();
    26|
    27|
    28|
    May 2, 2013 5:44:30 PM com.endeca.soleng.eac.toolkit.Controller execute
    SEVERE: Caught an exception while invoking method 'run' on object 'BaselineUpdate'. Releasing locks.
    java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.endeca.soleng.eac.toolkit.Controller.invokeRequestedMethod(Controller.java:917)
         at com.endeca.soleng.eac.toolkit.Controller.execute(Controller.java:255)
         at com.endeca.soleng.eac.toolkit.Controller.main(Controller.java:134)
    Caused by: com.endeca.soleng.eac.toolkit.exception.AppControlException: Error executing valid BeanShell script.
         at com.endeca.soleng.eac.toolkit.script.Script.runBeanShellScript(Script.java:179)
         at com.endeca.soleng.eac.toolkit.script.Script.run(Script.java:127)
         ... 7 more
    Caused by: com.endeca.soleng.eac.toolkit.exception.EacCommunicationException: Caught exception while querying for status of utility 'move_-toprocessing'.
         at com.endeca.soleng.eac.toolkit.utility.Utility.getStatus(Utility.java:489)
         at com.endeca.soleng.eac.toolkit.utility.Utility.isFailed(Utility.java:607)
         at com.endeca.soleng.eac.toolkit.utility.Utility.run(Utility.java:263)
         at com.endeca.soleng.eac.toolkit.component.ForgeComponent.getIncomingData(ForgeComponent.java:242)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at bsh.Reflect.invokeMethod(Unknown Source)
         at bsh.Reflect.invokeObjectMethod(Unknown Source)
         at bsh.Name.invokeMethod(Unknown Source)
         at bsh.BSHMethodInvocation.eval(Unknown Source)
         at bsh.BSHPrimaryExpression.eval(Unknown Source)
         at bsh.BSHPrimaryExpression.eval(Unknown Source)
         at bsh.BSHBlock.evalBlock(Unknown Source)
         at bsh.BSHBlock.eval(Unknown Source)
         at bsh.BSHBlock.eval(Unknown Source)
         at bsh.BSHIfStatement.eval(Unknown Source)
         at bsh.Interpreter.eval(Unknown Source)
         at bsh.Interpreter.eval(Unknown Source)
         at bsh.Interpreter.eval(Unknown Source)
         at com.endeca.soleng.eac.toolkit.script.Script.runBeanShellScript(Script.java:165)
         ... 8 more
    Caused by: An error occurred while trying to get status of the utility with token 'move_-toprocessing' in application 'NBTY'.: Encountered an error communicating with host 'EVBYMINSD2343', port '8888': Task not found: TaskId(UTILITY,NBTY,move_-toprocessing)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at java.lang.Class.newInstance0(Class.java:355)
         at java.lang.Class.newInstance(Class.java:308)
         at org.apache.axis.encoding.ser.BeanDeserializer.<init>(BeanDeserializer.java:104)
         at org.apache.axis.encoding.ser.BeanDeserializer.<init>(BeanDeserializer.java:90)
         at com.endeca.eac.client.EACFault.getDeserializer(EACFault.java:75)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.apache.axis.encoding.ser.BaseDeserializerFactory.getSpecialized(BaseDeserializerFactory.java:154)
         at org.apache.axis.encoding.ser.BaseDeserializerFactory.getDeserializerAs(BaseDeserializerFactory.java:84)
         at org.apache.axis.encoding.DeserializationContext.getDeserializer(DeserializationContext.java:464)
         at org.apache.axis.encoding.DeserializationContext.getDeserializerForType(DeserializationContext.java:547)
         at org.apache.axis.message.SOAPFaultDetailsBuilder.onStartChild(SOAPFaultDetailsBuilder.java:157)
         at org.apache.axis.encoding.DeserializationContext.startElement(DeserializationContext.java:1035)
         at org.apache.xerces.parsers.AbstractSAXParser.startElement(Unknown Source)
         at org.apache.xerces.parsers.AbstractXMLDocumentParser.emptyElement(Unknown Source)
         at org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanStartElement(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
         at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
         at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
         at org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source)
         at org.apache.xerces.jaxp.SAXParserImpl.parse(Unknown Source)
         at org.apache.axis.encoding.DeserializationContext.parse(DeserializationContext.java:227)
         at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:696)
         at org.apache.axis.Message.getSOAPEnvelope(Message.java:435)
         at org.apache.axis.handlers.soap.MustUnderstandChecker.invoke(MustUnderstandChecker.java:62)
         at org.apache.axis.client.AxisClient.invoke(AxisClient.java:206)
         at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
         at org.apache.axis.client.Call.invoke(Call.java:2767)
         at org.apache.axis.client.Call.invoke(Call.java:2443)
         at org.apache.axis.client.Call.invoke(Call.java:2366)
         at org.apache.axis.client.Call.invoke(Call.java:1812)
         at com.endeca.eac.client.UtilityPortSOAPBindingStub.getStatus(UtilityPortSOAPBindingStub.java:766)
         at com.endeca.soleng.eac.toolkit.utility.Utility.getStatus(Utility.java:472)
         ... 29 more
    May 2, 2013 5:44:30 PM com.endeca.soleng.eac.toolkit.base.LockManager releaseLock
    INFO: Released lock 'update_lock'.
    Could you help me?
    Edited by: Andrew Karzhou on May 2, 2013 5:50 PM
    Edited by: Andrew Karzhou on May 2, 2013 5:53 PM

    Hello
    You need verify if your host and port are accessible....
    You have integration with ATG?
    go to component : /dyn/admin/nucleus/atg/commerce/endeca/index/ProductCatalogSimpleIndexingAdmin/
    and run Baseline
    Try too execute this command for remove FLAG "Update_lock"
    Search your flag: "C:\Endeca\PlatformServices\6.1.3\bin\eaccmd.bat list-flags --app [application]"
    Remove the flag: "C:\Endeca\PlatformServices\6.1.3\bin\eaccmd.bat remove-flag --app [application] --flag update_lock"
    If occur problems in this step, paste for we.

  • While Running baseLine update with Endeca getting Error with ATG11

    HI All,
    While running the baseline update for endeca getting below error,Please help me to resolve this issue
    [11.26.14 18:26:36] INFO: Checking definition from AppConfig.xml against existing EAC provisioning.
    [11.26.14 18:26:39] INFO: Definition has not changed.
    [11.26.14 18:26:39] INFO: Starting baseline update script.
    [11.26.14 18:26:39] INFO: Acquired lock 'update_lock'.
    [11.26.14 18:26:40] INFO: [ITLHost] Starting shell utility 'cleanDir_cas-output'.
    [11.26.14 18:26:40] SEVERE: Error communicating with EAC agent while starting utility 'cleanDir_cas-output'.
    Occurred while executing line 8 of valid BeanShell script:
    5|    if (LockManager.acquireLock("update_lock")) {
    6|      // clean directories
    7| CAS.cleanCumulativePartials();
    8|      Dgidx.cleanDirs();
    9|
    10|      // run crawl and archive any changes in dvalId mappings
    11| CAS.runBaselineCasCrawl("CRS-last-mile-crawl");
    [11.26.14 18:26:40] SEVERE: Caught an exception while invoking method 'run' on object 'BaselineUpdate'. Releasing locks.
    Caused by java.lang.reflect.InvocationTargetException
    sun.reflect.NativeMethodAccessorImpl invoke0 - null
    Caused by com.endeca.soleng.eac.toolkit.exception.AppControlException
    com.endeca.soleng.eac.toolkit.script.Script runBeanShellScript - Error executing valid BeanShell script.
    Caused by com.endeca.soleng.eac.toolkit.exception.EacCommunicationException
    com.endeca.soleng.eac.toolkit.utility.Utility start - Error communicating with EAC agent while starting utility 'cleanDir_cas-output'.
    Caused by com.endeca.eac.client.EACFault
    sun.reflect.NativeConstructorAccessorImpl newInstance0 – null
    Thanks,
    Mahesh Chinchure

    It sounds like you might be working with Endeca Commerce products - this forum is for Endeca Information Discovery.
    You might try posting your questions on one of these forums:
    Oracle Commerce
    Technical Questions

  • Could not execute view config service request. This usually happens when an invalid view config service request is made, or when a read only Oracle Endeca Server receives a view config service request. Error message: Error applying updates: Unsupported la

    Hi,
    I have some data loaded into the data-domain in Endeca 3.0. When I was creating views in studio I repeatedly get this message when I say save view:
    Could not execute view config service request. This usually happens when an invalid view config service request is made, or when a read only Oracle Endeca Server receives a view config service request. Error message: Error applying updates: Unsupported language ${DEFAULT_LANGUAGE}
    In the workspace.prm file I have set ${DEFAULT_LANGUAGE}=en
    May I know why this happening and a remedy for it. Appreciate you help.

    Hi,
    I have some data loaded into the data-domain in Endeca 3.0. When I was creating views in studio I repeatedly get this message when I say save view:
    Could not execute view config service request. This usually happens when an invalid view config service request is made, or when a read only Oracle Endeca Server receives a view config service request. Error message: Error applying updates: Unsupported language ${DEFAULT_LANGUAGE}
    In the workspace.prm file I have set ${DEFAULT_LANGUAGE}=en
    May I know why this happening and a remedy for it. Appreciate you help.

  • Error in running baseline update from ATG

    Hi,
    I am trying to import the content in my ATG app schemas as indexed records into Endeca.
    After making the configuration changes listed in the ATG-endeca integration guide , When I try to do baseline index from http://localhost:7003/dyn/admin/nucleus/atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin/ , following is what I get :
    PreIndexing (Duration: 0:00:00)
         /atg/endeca/index/commerce/CategoryTreeService                COMPLETE (Succeeded)
    RepositoryExport (Duration: 0:00:19)
         /atg/endeca/index/commerce/SchemaExporter      58      0      COMPLETE (Succeeded)
         /atg/endeca/index/commerce/CategoryToDimensionOutputConfig      9      0      COMPLETE (Succeeded)
         /atg/endeca/index/commerce/RepositoryTypeDimensionExporter      15      0      COMPLETE (Succeeded)
         /atg/commerce/search/ProductCatalogOutputConfig      31      0      COMPLETE (Succeeded)
    EndecaIndexing (Duration: 0:02:18)
         /atg/endeca/index/commerce/EndecaScriptService                COMPLETE (Failed)
    following is what I get in logs :
    **** info Wed Dec 19 15:09:19 IST 2012 1355909959144 /atg/endeca/index/commerce/EndecaScriptService Starting script BaselineUpdate in application ATGen
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin --- atg.repository.search.indexing.IndexingException: Starting scrip
    t BaselineUpdate of application ATGen failed
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.eacclient.ScriptRunner.startScript(ScriptRunner.ja
    va:276)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.eacclient.ScriptIndexable.runUpdateScript(ScriptIn
    dexable.java:307)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.eacclient.ScriptIndexable.performBaselineUpdate(Sc
    riptIndexable.java:246)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.index.admin.IndexingTask.doTask(IndexingTask.java:
    401)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.index.admin.IndexingTask.performTask(IndexingTask.
    java:359)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.index.admin.IndexingPhase$IndexingTaskJob.invoke(I
    ndexingPhase.java:469)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.common.util.ThreadDispatcherThread.run(ThreadDispatcherTh
    read.java:178)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin Caused by :java.net.ConnectException: Connection refused: connect
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at org.apache.axis.AxisFault.makeFault(AxisFault.java:101)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.j
    ava:154)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at org.apache.axis.strategies.InvocationStrategy.visit(Invocatio
    nStrategy.java:32)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at org.apache.axis.client.AxisClient.invoke(AxisClient.java:165)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at org.apache.axis.client.Call.invoke(Call.java:2767)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at org.apache.axis.client.Call.invoke(Call.java:2443)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at org.apache.axis.client.Call.invoke(Call.java:2366)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at org.apache.axis.client.Call.invoke(Call.java:1812)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at com.endeca.eac.client.ScriptControlPortSOAPBindingStub.startS
    cript(ScriptControlPortSOAPBindingStub.java:263)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.eacclient.ScriptRunner.startScript(ScriptRunner.ja
    va:272)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.eacclient.ScriptIndexable.runUpdateScript(ScriptIn
    dexable.java:307)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.eacclient.ScriptIndexable.performBaselineUpdate(Sc
    riptIndexable.java:246)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.index.admin.IndexingTask.doTask(IndexingTask.java:
    401)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.index.admin.IndexingTask.performTask(IndexingTask.
    java:359)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.index.admin.IndexingPhase$IndexingTaskJob.invoke(I
    ndexingPhase.java:469)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.common.util.ThreadDispatcherThread.run(ThreadDispatcherTh
    read.java:178)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin Caused by (#2):java.net.ConnectException: Connection refused: connect
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at java.net.PlainSocketImpl.socketConnect(Native Method)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:351)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.jav
    a:213)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:200)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at java.net.Socket.connect(Socket.java:529)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAcces
    sorImpl.java:39)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMet
    hodAccessorImpl.java:25)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at java.lang.reflect.Method.invoke(Method.java:597)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at org.apache.axis.components.net.DefaultSocketFactory.create(De
    faultSocketFactory.java:153)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at org.apache.axis.components.net.DefaultSocketFactory.create(De
    faultSocketFactory.java:120)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at org.apache.axis.transport.http.HTTPSender.getSocket(HTTPSende
    r.java:191)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at org.apache.axis.transport.http.HTTPSender.writeToSocket(HTTPS
    ender.java:404)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.j
    ava:138)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at org.apache.axis.strategies.InvocationStrategy.visit(Invocatio
    nStrategy.java:32)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at org.apache.axis.client.AxisClient.invoke(AxisClient.java:165)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at org.apache.axis.client.Call.invoke(Call.java:2767)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at org.apache.axis.client.Call.invoke(Call.java:2443)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at org.apache.axis.client.Call.invoke(Call.java:2366)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at org.apache.axis.client.Call.invoke(Call.java:1812)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at com.endeca.eac.client.ScriptControlPortSOAPBindingStub.startS
    cript(ScriptControlPortSOAPBindingStub.java:263)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.eacclient.ScriptRunner.startScript(ScriptRunner.ja
    va:272)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.eacclient.ScriptIndexable.runUpdateScript(ScriptIn
    dexable.java:307)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.eacclient.ScriptIndexable.performBaselineUpdate(Sc
    riptIndexable.java:246)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.index.admin.IndexingTask.doTask(IndexingTask.java:
    401)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.index.admin.IndexingTask.performTask(IndexingTask.
    java:359)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.index.admin.IndexingPhase$IndexingTaskJob.invoke(I
    ndexingPhase.java:469)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.common.util.ThreadDispatcherThread.run(ThreadDispatcherTh
    read.java:178)
    **** Error Wed Dec 19 15:09:20 IST 2012 1355909960330 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin
    P.S. - ALL the endeca services are running.
    To add to surprise after this , I am unable to perform the baseline update from Endeca also. I get following error while running baseline update on endeca side :
    [12.19.12 15:49:23] INFO: [ITLHost] Starting shell utility 'emgr_update_set_post_forge_dims'.
    [12.19.12 15:49:32] SEVERE: Utility 'emgr_update_set_post_forge_dims' failed. Refer to utility logs in [ENDECA_CONF]/logs/shell on host ITLHost.
    Occurred while executing line 34 of valid BeanShell script:
    31| // Upload the generated dimension values to Workbench
    32| WorkbenchManager.cleanDirs();
    33| Forge.getPostForgeDimensions();
    34| WorkbenchManager.updateWsDimensions();
    35|
    36| // Upload the generated config to Workbench
    37| WorkbenchManager.updateWsConfig();
    [12.19.12 15:49:32] SEVERE: Caught an exception while invoking method 'run' on object 'BaselineUpdate'. Releasing locks.
    Caused by java.lang.reflect.InvocationTargetException
    sun.reflect.NativeMethodAccessorImpl invoke0 - null
    Caused by com.endeca.soleng.eac.toolkit.exception.AppControlException
    com.endeca.soleng.eac.toolkit.script.Script runBeanShellScript - Error executing valid BeanShell script.
    Caused by com.endeca.soleng.eac.toolkit.exception.EacComponentControlException
    com.endeca.soleng.eac.toolkit.utility.Utility run - Utility 'emgr_update_set_post_forge_dims' failed. Refer to utility logs in [ENDECA_CONF]/logs/shell on host ITLHost.
    [12.19.12 15:49:32] INFO: Released lock 'update_lock'.
    The above error persists even if I remove the application using --remove-app command and re-deploy new app with same name as previous one
    Any help/pointer would really be appreciated.
    Thanks,
    Mayank Batra

    Thanks Pankaj and Patrick.
    My endeca installation works absolutely fine.
    When i install endeca with platform services,mdex and tools and framework , I can create the application,initialize, load baseline and baseline update my application beautifully, until I do the baseline index from ATG side.
    Once I do that , I am unable to perform indexing from Endeca also.
    What I need to do is reinstall the endeca(platform services for least) to resolve this - I have been doing this for quite some time now :(
    My Endeca Workbench instance is up, running and reachable on port 8006.
    The PlatformServices\workspace\logs\shell\ATGen.emgr_update_set_post_forge_dims.log has following one liner :
    ERROR: Could not open acquire_lock.status.
    I tried running the baseline index from ATG again and following is what I get in logs this time around :
    **** info Mon Dec 24 12:57:32 IST 2012 1356334052168 /atg/endeca/index/commerce/EndecaScriptService Starting script BaselineUpdate in application ATGen
    **** info Mon Dec 24 13:05:03 IST 2012 1356334503729 /atg/endeca/index/commerce/EndecaScriptService Script BaselineUpdate for application ATGen finished with status Failed
    **** Error Mon Dec 24 13:05:03 IST 2012 1356334503843 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin --- atg.repository.search.indexing.IndexingException: Script Baselin
    eUpdate for application ATGen failed
    **** Error Mon Dec 24 13:05:03 IST 2012 1356334503843 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.eacclient.ScriptRunner.waitForScript(ScriptRunner.
    java:381)
    **** Error Mon Dec 24 13:05:03 IST 2012 1356334503843 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.eacclient.ScriptIndexable.runUpdateScript(ScriptIn
    dexable.java:319)
    **** Error Mon Dec 24 13:05:03 IST 2012 1356334503843 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.eacclient.ScriptIndexable.performBaselineUpdate(Sc
    riptIndexable.java:246)
    **** Error Mon Dec 24 13:05:03 IST 2012 1356334503843 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.index.admin.IndexingTask.doTask(IndexingTask.java:
    401)
    **** Error Mon Dec 24 13:05:03 IST 2012 1356334503843 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.index.admin.IndexingTask.performTask(IndexingTask.
    java:359)
    **** Error Mon Dec 24 13:05:03 IST 2012 1356334503843 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.index.admin.IndexingPhase$IndexingTaskJob.invoke(I
    ndexingPhase.java:469)
    **** Error Mon Dec 24 13:05:03 IST 2012 1356334503843 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.common.util.ThreadDispatcherThread.run(ThreadDispatcherTh
    read.java:178)
    **** Error Mon Dec 24 13:05:03 IST 2012 1356334503843 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin Caused by :atg.repository.search.indexing.IndexingException: Script Base
    lineUpdate of application ATGen failed
    **** Error Mon Dec 24 13:05:03 IST 2012 1356334503843 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.eacclient.ScriptRunner.waitForScript(ScriptRunner.
    java:378)
    **** Error Mon Dec 24 13:05:03 IST 2012 1356334503843 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.eacclient.ScriptIndexable.runUpdateScript(ScriptIn
    dexable.java:319)
    **** Error Mon Dec 24 13:05:03 IST 2012 1356334503843 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.eacclient.ScriptIndexable.performBaselineUpdate(Sc
    riptIndexable.java:246)
    **** Error Mon Dec 24 13:05:03 IST 2012 1356334503843 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.index.admin.IndexingTask.doTask(IndexingTask.java:
    401)
    **** Error Mon Dec 24 13:05:03 IST 2012 1356334503843 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.index.admin.IndexingTask.performTask(IndexingTask.
    java:359)
    **** Error Mon Dec 24 13:05:03 IST 2012 1356334503843 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.endeca.index.admin.IndexingPhase$IndexingTaskJob.invoke(I
    ndexingPhase.java:469)
    **** Error Mon Dec 24 13:05:03 IST 2012 1356334503843 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin at atg.common.util.ThreadDispatcherThread.run(ThreadDispatcherTh
    read.java:178)
    **** Error Mon Dec 24 13:05:03 IST 2012 1356334503843 /atg/endeca/index/commerce/ProductCatalogSimpleIndexingAdmin
    Regards,
    Mayank Batra
    Edited by: Waste Ideas on Dec 23, 2012 11:37 PM
    Edited by: Waste Ideas on Dec 23, 2012 11:38 PM

  • Error in performing baseline update

    Hi all,
              I have done ATG installation 10.2, I installed Endeca,During integration of ATG CRS10.2  with endeca
             1.I succesfully created a application with name CRS102,
             2.Initialized the services.
             3.While I am running the base line update I am getting the following errors
    C:\Endeca\Apps\CRS102\control>baseline_update.bat
    [08.28.13 09:51:54] INFO: Checking definition from AppConfig.xml against existing EAC provisioning.
    [08.28.13 09:51:55] INFO: Updating provisioning for component 'DailyReportGenerator'.
    [08.28.13 09:51:55] INFO: Updating definition for component 'DailyReportGenerator'.
    [08.28.13 09:51:56] INFO: Definition updated.
    [08.28.13 09:51:56] INFO: Starting baseline update script.
    [08.28.13 09:51:56] INFO: Acquired lock 'update_lock'.
    [08.28.13 09:51:56] INFO: [ITLHost] Starting shell utility 'cleanDir_processing'.
    [08.28.13 09:51:57] INFO: [ITLHost] Starting shell utility 'cleanDir_forge-output'.
    [08.28.13 09:51:59] INFO: [ITLHost] Starting shell utility 'cleanDir_dgidx-output'.
    [08.28.13 09:52:00] INFO: [ITLHost] Starting shell utility 'move_-_to_processing'.
    [08.28.13 09:52:01] INFO: [ITLHost] Starting copy utility 'fetch_config_to_input_for_forge_Forge'.
    [08.28.13 09:52:03] INFO: [ITLHost] Starting backup utility 'backup_log_dir_for_component_ConfigurationGeneratorForge'.
    [08.28.13 09:52:05] INFO: [ITLHost] Starting component 'ConfigurationGeneratorForge'.
    [08.28.13 09:53:03] INFO: [ITLHost] Starting copy utility 'CopyRecsearchConfig'.
    [08.28.13 09:53:03] INFO: [ITLHost] Starting backup utility 'backup_log_dir_for_component_Forge'.
    [08.28.13 09:53:05] INFO: [ITLHost] Starting component 'Forge'.
    [08.28.13 09:53:19] INFO: [ITLHost] Starting backup utility 'backup_log_dir_for_component_Dgidx'.
    [08.28.13 09:53:19] INFO: [ITLHost] Starting component 'Dgidx'.
    [08.28.13 09:53:22] SEVERE: Batch component  'Dgidx' failed. Refer to component logs in C:\Endeca\Apps\CRS102\config\script\..\..\.\logs\dgidxs\Dgidx on host ITLHost.
    Occurred while executing line 53 of valid BeanShell script:
    50|
    51|        Dgidx.archiveLogDir();
    52|
    53|        Dgidx.run();
    54|
    55|
    56|
    [08.28.13 09:53:22] SEVERE: Caught an exception while invoking method 'run' on object 'BaselineUpdate'. Releasing locks.
    Caused by java.lang.reflect.InvocationTargetException
    sun.reflect.NativeMethodAccessorImpl invoke0 - null
    Caused by com.endeca.soleng.eac.toolkit.exception.AppControlException
    com.endeca.soleng.eac.toolkit.script.Script runBeanShellScript - Error executing valid BeanShell script.
    Caused by com.endeca.soleng.eac.toolkit.exception.EacComponentControlException
    com.endeca.soleng.eac.toolkit.component.BatchComponent run - Batch component  'Dgidx' failed. Refer to component logs in C:\Endeca\Apps\CRS102\config\script\..\..\.\logs\dgidxs\Dgidx on host ITLHost.
    [08.28.13 09:53:23] INFO: Released lock 'update_lock'.
    Errors in LOG FILE (Dgidx.log)
    Parsing XML dimensions data with validation turned on
    Parsing project file "C:\Endeca\Apps\CRS102\data\forge_output\CRS102.xml" (project="CRS102")
    XMLParser: Reading dimensions, dvals, and synonyms from file "C:\Endeca\Apps\CRS102\data\forge_output\\CRS102.dimensions.xml"
    ERROR 08/28/13 04:23:22.393 UTC (1377663802392) DGIDX {dgidx,baseline} Internal error while decompressing input stream: null
    FATAL 08/28/13 04:23:22.393 UTC (1377663802393) DGIDX {dgidx,baseline} Fatal error at file , line 0, char 0; Message: An exception occurred! Type:RuntimeException, Message:The primary document entity could not be opened. Id=C:\Endeca\Apps\CRS102\data\forge_output\\CRS102.dimensions.xml
    WARN 08/28/13 04:23:22.394 UTC (1377663802393) DGIDX {dgidx,baseline} Lexer/OLT log: level=-1: 2013/08/28 09:53:22 | INFO    | Disabling log callback
    I checked CRS102.dimensions.xml . This file is getting created but it is empty
    Please help me asap in resolving this error

    Hi all,
              I have done ATG installation 10.2, I installed Endeca,During integration of ATG CRS10.2  with endeca
             1.I succesfully created a application with name CRS102,
             2.Initialized the services.
             3.While I am running the base line update I am getting the following errors
    C:\Endeca\Apps\CRS102\control>baseline_update.bat
    [08.28.13 09:51:54] INFO: Checking definition from AppConfig.xml against existing EAC provisioning.
    [08.28.13 09:51:55] INFO: Updating provisioning for component 'DailyReportGenerator'.
    [08.28.13 09:51:55] INFO: Updating definition for component 'DailyReportGenerator'.
    [08.28.13 09:51:56] INFO: Definition updated.
    [08.28.13 09:51:56] INFO: Starting baseline update script.
    [08.28.13 09:51:56] INFO: Acquired lock 'update_lock'.
    [08.28.13 09:51:56] INFO: [ITLHost] Starting shell utility 'cleanDir_processing'.
    [08.28.13 09:51:57] INFO: [ITLHost] Starting shell utility 'cleanDir_forge-output'.
    [08.28.13 09:51:59] INFO: [ITLHost] Starting shell utility 'cleanDir_dgidx-output'.
    [08.28.13 09:52:00] INFO: [ITLHost] Starting shell utility 'move_-_to_processing'.
    [08.28.13 09:52:01] INFO: [ITLHost] Starting copy utility 'fetch_config_to_input_for_forge_Forge'.
    [08.28.13 09:52:03] INFO: [ITLHost] Starting backup utility 'backup_log_dir_for_component_ConfigurationGeneratorForge'.
    [08.28.13 09:52:05] INFO: [ITLHost] Starting component 'ConfigurationGeneratorForge'.
    [08.28.13 09:53:03] INFO: [ITLHost] Starting copy utility 'CopyRecsearchConfig'.
    [08.28.13 09:53:03] INFO: [ITLHost] Starting backup utility 'backup_log_dir_for_component_Forge'.
    [08.28.13 09:53:05] INFO: [ITLHost] Starting component 'Forge'.
    [08.28.13 09:53:19] INFO: [ITLHost] Starting backup utility 'backup_log_dir_for_component_Dgidx'.
    [08.28.13 09:53:19] INFO: [ITLHost] Starting component 'Dgidx'.
    [08.28.13 09:53:22] SEVERE: Batch component  'Dgidx' failed. Refer to component logs in C:\Endeca\Apps\CRS102\config\script\..\..\.\logs\dgidxs\Dgidx on host ITLHost.
    Occurred while executing line 53 of valid BeanShell script:
    50|
    51|        Dgidx.archiveLogDir();
    52|
    53|        Dgidx.run();
    54|
    55|
    56|
    [08.28.13 09:53:22] SEVERE: Caught an exception while invoking method 'run' on object 'BaselineUpdate'. Releasing locks.
    Caused by java.lang.reflect.InvocationTargetException
    sun.reflect.NativeMethodAccessorImpl invoke0 - null
    Caused by com.endeca.soleng.eac.toolkit.exception.AppControlException
    com.endeca.soleng.eac.toolkit.script.Script runBeanShellScript - Error executing valid BeanShell script.
    Caused by com.endeca.soleng.eac.toolkit.exception.EacComponentControlException
    com.endeca.soleng.eac.toolkit.component.BatchComponent run - Batch component  'Dgidx' failed. Refer to component logs in C:\Endeca\Apps\CRS102\config\script\..\..\.\logs\dgidxs\Dgidx on host ITLHost.
    [08.28.13 09:53:23] INFO: Released lock 'update_lock'.
    Errors in LOG FILE (Dgidx.log)
    Parsing XML dimensions data with validation turned on
    Parsing project file "C:\Endeca\Apps\CRS102\data\forge_output\CRS102.xml" (project="CRS102")
    XMLParser: Reading dimensions, dvals, and synonyms from file "C:\Endeca\Apps\CRS102\data\forge_output\\CRS102.dimensions.xml"
    ERROR 08/28/13 04:23:22.393 UTC (1377663802392) DGIDX {dgidx,baseline} Internal error while decompressing input stream: null
    FATAL 08/28/13 04:23:22.393 UTC (1377663802393) DGIDX {dgidx,baseline} Fatal error at file , line 0, char 0; Message: An exception occurred! Type:RuntimeException, Message:The primary document entity could not be opened. Id=C:\Endeca\Apps\CRS102\data\forge_output\\CRS102.dimensions.xml
    WARN 08/28/13 04:23:22.394 UTC (1377663802393) DGIDX {dgidx,baseline} Lexer/OLT log: level=-1: 2013/08/28 09:53:22 | INFO    | Disabling log callback
    I checked CRS102.dimensions.xml . This file is getting created but it is empty
    Please help me asap in resolving this error

  • Updating InputText after a validation error

    Hi everyone,
    I am having problems updating InputText after a validation error.
    Im using jdeveloper 11.1.1.1.0
    Steps without error validation works correctly
    1.-I put 3 in the component "value" (second InputText)
    2 .- validation begins, and rightly
    3 .- I put the value 1 component "optional" (first imputtext)
    4 .- Click the button "move"
    5 .- The componte "value" modify its contents appearing 1
    Steps with error validation not working properly
    1.-I put 4 in the component "value" (second InputText)
    2 .- validation begins, and it is wrong. Errror message appears
    3 .- I put the value 1 component "optional" (first imputtext)
    4 .- Click the button "move"
    5 .- The componte "value" does not alter its contents.
    Why not change its value after validation error?
    I included an example with two and a button InputText
    <af:inputText label="Optional" id="it1" autoSubmit="true" />
    <af:commandButton text="commandButton 1" id="cb1" immediate="true" actionListener="#{inputExample.move}"/>
    <af:inputText label="Value" id="it2" immediate="true" autoSubmit="true" validator="#{inputExample.validatorExample}" value="#{inputExample.targetValue}"/>
    public void validatorExample(FacesContext facesContext, UIComponent uIComponent, Object object) {
    Number number = null;
    try {
    number = new Number(object);
    } catch (SQLException e) {
    if ((number.longValue() % 2) == 0) {
    FacesMessage message = new FacesMessage(FacesMessage.SEVERITY_ERROR, "ES PAR", "ES PAR");
    ((RichInputText)uIComponent).setValid(false);
    throw new ValidatorException(message);
    public void move(ActionEvent actionEvent) {
    FacesContext facesContext = FacesContext.getCurrentInstance();
    UIComponent x = facesContext.getViewRoot().findComponent("it1");
    RichInputText input1 = (RichInputText)x;
    String value = (String)input1.getValue();
    UIComponent x2 = facesContext.getViewRoot().findComponent("it2");
    RichInputText input2 = (RichInputText)x2;
    input2.setValue(value);
    RequestContext.getCurrentInstance().addPartialTarget(input2);
    }

    Yes but the action will be executed with invalid data.
    After validation fails the new (invalid) value is not set so when you get the value you get the previous (valid) one.
    If you want the validation just to warn the user but allow him to continue with executing actions with the new values then you should not use a validator.
    You could instead use a valueChangeListener were you can display a message to the user allowing the value to be set normaly.
    Gabriel.

  • When I try and download app updates via wi-fi to my Ipad I get an error message "Your account is not valid for use in the Australian Store. You must switch to the US store before purchasing."  I am in the US how do I switch?

    When I try and download app updates via wi-fi to my Ipad I get an error message "Your account is not valid for use in the Australian store. Your must switch t the US store before purchasing. I am currently in the US on wi-fi. How do I switch

    Change App Store
    1. Tap "Settings"
    2. Tap "iTunes & App Stores"
    3. Tap on your Apple ID
    4.Tap "View Apple ID"
    5. Enter your user name and password.
    6. Tap "Country/Region."
    7. Tap "Change Country/Region"
    8. Select the country/region where you are located.
    9. Tap "Done".
    Note: If the change doesn't take effect, sign out of account and sign in again.

Maybe you are looking for

  • Performance tunning in select

    Hi People! I need some advise! I trying to do a performance tunnig in a program. So, I ran SE30 and the most critical time is spent in this select:     SELECT  refbt refbn rfpos rfknt             rftrm rfart lifnr lednr             objnr hrkft rforg

  • Function to compare IT0014

    Hi All, Can anyone help me with the operation that can be used to Query on the Date specification. Thanks and Reagrds Swati

  • OpenMQ not receiving messages by producer

    Hi, I'm new to JMS, i'm just trying to make other people's piece of code work and i've got a problem with messages not arriving to OpenMQ. I've isolated the problem in the following example: import javax.jms.*; public class JMSTest { public static vo

  • Update from 7.0.1

    Is there any way I can update my Logic Express 7 from version 7.0.1? I have the app in my application folder but when I download a new updte is says it doesn't find it? Please help! Thank you in advance. 20" IMAC   Mac OS X (10.4.9)   Juno G, Logic E

  • Laptop Suddenly shuts down

    I have a satellite A665-S6086 laptop and I've been having a problem for the last few months where my laptop suddenly power off while viewing online videos. I have two audio drivers installed so I disabled the Intel Display Audio but no luck. Any Idea