Incompatible Xalan version in IDE class path?  (Max OS X Leopard)

Hi all,
I have been using NetBeans 6.1 for a while and all was well. I then installed a few plug-ins (including iReport, which I believe may be the problem). When I start the IDE I get the error "Incompatible Xalan version found in IDE class phat" and gives some link that didn't help. I have uninstalled NetBeans and reinstalled, which obviously didn't fix the problem. If anybody can help me at all, I would appreciate it very much. I really need this to run, I would hate to completely reinstall the OS to get it back going. Thanks in advance for any support.
Edited by: JavaChip on Jul 7, 2008 4:32 PM

Hi,
I encountered this problem today and I'm also using Netbeans 6.1 on Mac OS X (10.5.4). It was definitely the iReports plugin. I found a solution here:
[http://blogs.sun.com/geertjan/entry/analyzing_the_jasperreports_visual_designer]
However, I only had to remove the file xalan.jar (and keep xalan-2.7.0.jar) from the ~/.netbeans/6.1/modules/ext directory. No changes to the config were required and the iReport plugin worked.
Edited by: d_herb on Aug 5, 2008 7:45 AM

Similar Messages

  • An incompatible xalan version has been detected on the ide's classpath OSX

    Hi all,
    I have tried to install netbeans/java tools bundle on my mac, keep getting the same error.
    an incompatible xalan version has been detected on the ide's classpath. The IDE cannot start. pLease see http://wiki.java.net/bin/view/Netbeans/FaqXalanOnCP for more info.
    I have had a look at this website, it says to Due to a bug in Xalan, project metadata may get corrupted when a Xalan is on the IDE classpath. For this reason, the IDE refuses to start when the broken Xalan is detected on the classpath. Please remove the Xalan under jre/lib/**.
    This is quite difficult as it does not tell me the path where this file exists.
    Can anyone please help me out??

    That "someone" is each individual Firefox user who encounters problems like this. Mozilla stopped doing its' "web evangelism" program to help and advise websites about fixing their websites. I suppose 7 years was long enough to try fixing the web, and their time was better spent concentrating on improving Firefox.
    My advice is to install an older version of Firefox Portable to use at that web site, and to continue using your current version of Firefox elsewhere. <br />
    http://portableapps.com/apps/internet/firefox_portable/localization#legacy36

  • Javac / Manifest Class-Path

    Hi guys,
    I have problems with javac not finding classes when I use the extension mechanism.
    I have several jars: abc.jar def.jar ghi.jar ...
    To simplify the classpath when trying to compile another project with these jars, I use the extension mechanism and create a new jar (alphabet.jar) containing only a manifest file:
    Manifest-Version:1.0
    Class-Path: abc.jar def.jar ghi.jar ...The following works fine (assuming for example that abc.jar contains org/alphabet/Abc.class):
    > java -classpath alphabet.jar org.alphabet.AbcBut this fails:
    > javac -classpath alphabet.jar Test.java
    Test.java:1: package org.alphabet does not exist
    import org.alphabet.Abc;
    1 errorTest.java:
    import org.alphabet.Abc;
    public class Test {}I've searched on google and co. for more information but could not get anything. Sun's documentation http://java.sun.com/j2se/1.4/docs/tooldocs/findingclasses.html doesn't mention anything about javac not using the extension mechanism.
    This seems to happen on all JDKs (1.2.2, 1.3.1, 1.4 at least).
    Thanks in advance for your help!

    hi again,
    the next what you should know is that a package has to really exist as directories on your harddisk by compile- and runtime and the name of the class-file needs to be the same name as the class-name in it.
    example:
    c:\javalib\org\alphabet\Abc.java
    c:\javalib\Test.java
    compile both with 1 javac-command
    c:\>cd c:\javalib
    c:\javalib\>javac Test.java
    all imported libs (c:\javalib\org\alphabet\Abc.java) will be automatically compiled with this command. you will have now 2 class-files:
    c:\javalib\org\alphabet\Abc.class
    c:\javalib\Test.class
    now you make a 'manifest'-file for creating a autostartable jar-file:
    create a textfile 'mymanifest.txt' (name is not important) in the root of your projekt with the following content:
    c:\javalib\>mymanifest.txt
    Manifest-Version: 1.0
    Main-Class: Test
    Created-By: Your Name
    (if the start-class is in a package you have to write:
    Main-Class: mypackage.Test)
    now you can make a executable jar (a jar with a manifest) with the command:
    c:\javalib>jar cvfm alphabet.jar mymanifest.txt .
    (dont forget the last point!)
    now you can run the jar simply with:
    (it's now a java-executable)
    c:\javalib>java -jar alphabet.jar
    hope to help
    cu
    oliver scorp
    ps: a jar-file is nothing other than a zip-file, rename it and try it out. you will see that the pathes still exist in the compressed file.
    pps: plz dont forget my dukes!

  • AutoType Compiler Class Path

    I am using NetBeans with their Ant integration. If I put the
    "webservices.jar" file in the IDE class path and then run my Ant build
    script, it complains that it can not find the autotype task. So what I do
    is specify the classpath as part of my task definition in Ant.
    But the problem arises when the autotype task attempts to compile its
    generated java files. With debugging turned on in Ant, I see that the
    compiler's class path is inherited from the IDE. So it does NOT contain the
    webservices.jar and therefore pukes when it compiles the generated java
    files.
    Bottom line is, I need to specify the compiler class path that autotype will
    use to compile its generated java files. Is there any way to accomplish
    this? Has anyone else had luck with running autotype under NetBeans???
    Thanks In Advance,
    Pat

    You need both weblogic.jar and webservice.jar in your classpath.
    Then try this :
    <target name="autotypetest">
    <autotype schemaFile=" ....">
    <classpath>
    <pathelement path=" "/> --- You can specify complete
    classpath here for compiler to use.
    </classpath>
    </autotype>
    </target>
    -Neal
    "Pat Regan" <[email protected]> wrote in message
    news:[email protected]..
    I am using NetBeans with their Ant integration. If I put the
    "webservices.jar" file in the IDE class path and then run my Ant build
    script, it complains that it can not find the autotype task. So what I do
    is specify the classpath as part of my task definition in Ant.
    But the problem arises when the autotype task attempts to compile its
    generated java files. With debugging turned on in Ant, I see that the
    compiler's class path is inherited from the IDE. So it does NOT containthe
    webservices.jar and therefore pukes when it compiles the generated java
    files.
    Bottom line is, I need to specify the compiler class path that autotypewill
    use to compile its generated java files. Is there any way to accomplish
    this? Has anyone else had luck with running autotype under NetBeans???
    Thanks In Advance,
    Pat

  • ORABPEL-01005 class path is set correctly while deploying a BPEL composite.

    07:20:08 AM Received HTTP response from the server, response code=500
    07:20:08 AM Error deploying archive sca_HelloSoa1_rev1.0.jar to partition "default" on server soa_server1 http://slc01mrt.us.oracle.com:8001
    07:20:08 AM HTTP error code returned 500
    07:20:08 AM Error message from server:
    There was an error deploying the composite on soa_server1: Deployment Failed: Error occurred during deployment of component: HelloSoa1 to service engine: implementation.bpel, for composite: HelloSoa1: ORABPEL-01005
    Failed to compile bpel generated classes.
    failure to compile the generated BPEL classes for BPEL process "HelloSoa1" of composite "default/HelloSoa1!1.0*soa_3764b7a8-b2ca-43ba-a289-1f8e281a50bc"
    The class path setting is incorrect.
    Ensure that the class path is set correctly. If this happens on the server side, verify that the custom classes or jars which this BPEL process is depending on are deployed correctly. Also verify that the run time is using the same release/version.
    07:20:08 AM Check server log for more details.
    07:20:08 AM Error deploying archive sca_HelloSoa1_rev1.0.jar to partition "default" on server soa_server1 http://slc01mrt.us.oracle.com:8001
    07:20:08 AM #### Deployment incomplete. ####
    07:20:08 AM Error deploying archive file:/scratch/jdev11117/jdevuserhome/mywork/MMSOAHello/HelloSoa1/deploy/sca_HelloSoa1_rev1.0.jar
    (oracle.tip.tools.ide.fabric.deploy.common.SOARemoteDeployer)
    My BPEL has a Java Embedding I have posted the entire BPEL below:
    <?xml version = "1.0" encoding = "UTF-8" ?>
    <!--
    Oracle JDeveloper BPEL Designer
    Created: Thu Sep 12 22:41:52 PDT 2013
    Author: mmuppago
    Type: BPEL 1.1 Process
    Purpose: Synchronous BPEL Process
    -->
    <process name="HelloSoa1"
    targetNamespace="http://xmlns.oracle.com/MMSOAHello/HelloSoa1/HelloSoa1"
    xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
    xmlns:client="http://xmlns.oracle.com/MMSOAHello/HelloSoa1/HelloSoa1"
    xmlns:ora="http://schemas.oracle.com/xpath/extension"
    xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
    xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
    xmlns:xp20="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.Xpath20"
    xmlns:bpel2="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
    xmlns:oraext="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc"
    xmlns:dvm="http://www.oracle.com/XSL/Transform/java/oracle.tip.dvm.LookupValue"
    xmlns:hwf="http://xmlns.oracle.com/bpel/workflow/xpath"
    xmlns:ids="http://xmlns.oracle.com/bpel/services/IdentityService/xpath"
    xmlns:bpm="http://xmlns.oracle.com/bpmn20/extensions"
    xmlns:xdk="http://schemas.oracle.com/bpel/extension/xpath/function/xdk"
    xmlns:xref="http://www.oracle.com/XSL/Transform/java/oracle.tip.xref.xpath.XRefXPathFunctions"
    xmlns:ldap="http://schemas.oracle.com/xpath/extension/ldap">
    <bpelx:exec import="oracle.security.jps.*"/>
    <!--
    PARTNERLINKS 
    List of services participating in this BPEL process 
    -->
    <partnerLinks>
    <!--
    The 'client' role represents the requester of this service. It is
    used for callback. The location and correlation information associated
    with the client role are automatically set using WS-Addressing.
    -->
    <partnerLink name="hellosoa1_client" partnerLinkType="client:HelloSoa1" myRole="HelloSoa1Provider"/>
    </partnerLinks>
    <!--
    VARIABLES 
    List of messages and XML documents used within this BPEL process
    -->
    <variables>
    <!-- Reference to the message passed as input during initiation -->
    <variable name="inputVariable" messageType="client:HelloSoa1RequestMessage"/>
    <!-- Reference to the message that will be returned to the requester-->
    <variable name="outputVariable" messageType="client:HelloSoa1ResponseMessage"/>
    </variables>
    <!--
    ORCHESTRATION LOGIC 
    Set of activities coordinating the flow of messages across the 
    services integrated within this business process 
    -->
    <sequence name="main">
    <!-- Receive input from requestor. (Note: This maps to operation defined in HelloSoa1.wsdl) -->
    <receive name="receiveInput" partnerLink="hellosoa1_client" portType="client:HelloSoa1" operation="process" variable="inputVariable" createInstance="yes"/>
    <assign name="Assign1">
    <copy>
    <from expression="concat('Hello ', bpws:getVariableData('inputVariable','payload','/client:process/client:input'))"/>
    <to variable="outputVariable" part="payload"
    query="/client:processResponse/client:result"/>
    </copy>
    </assign>
    <bpelx:exec name="Java_Embedding1" version="1.5" language="java">
    <![CDATA[/*Write your java code below e.g.
    System.out.println("Hello, World");
    try {
    System.out.println("Hello from MM World");
    oracle.security.jps.util.SubjectUtil.getUserName(oracle.security.jps.util.SubjectUtil.getCurrentSubject());
    } catch(Exception ex) {
    System.out.println("Exception");
    ex.printStackTrace();
    }]]>
    </bpelx:exec>
    <!-- Generate reply to synchronous request -->
    <reply name="replyOutput" partnerLink="hellosoa1_client" portType="client:HelloSoa1" operation="process" variable="outputVariable"/>
    </sequence>
    </process>

    Hi,
    The problem you are referring above is definitely due to the java embedding you are using.
    This seems to be a simple Hello World example, and if you are looking for the same to work, you can simply use an assign activity to concat the input with the Hello world.
    If you are trying to use a java embedding activity which has some custom java coding in it, please refer to the following:
    Make sure all the dependent classes are explicitly mentioned with their packagename.ClassName.
    Also , make sure you make all the classes as jar and include it in sca-inf\lib directory of the code.
    a) See that your external / dependent Java applications dependent Jar files are copied in csa-inf/lib (e.g all jars like log4j, apache jars, wickets jar etc etc etc )
    b) also make sure u deploy the dependent java application as JAR using jdeveloper deploy wizard.... for example archive1.jar and then copy this jar as well in sca - inf / lib folder
    it will work ....
    Thanks,
    Deepak.

  • Jar's manifest Class-Path option

    Hey, hopefully this is my last question for a while.
    I downloaded a custom look and feel that's packaged in a jar file.
    Here's the directory structure.
    Main-Program\*.class
    Main-Program\MyProgram.jar (the created jar)
    Main-Program\Data\kunststoff.jar (downloaded look&feel jar)
    I can compile the class files like this:
    javac -classpath .;Data\kunststoff.jar MainClass.java
    and run it like this:
    java.exe -classpath .;Data\kunststoff.jar MainClass
    This works fine. But I want my program to be an executable jar.
    So I create the exec. jar like usual
    jar cf0 MyProgram.jar *.class
    jar umf mainclass.txt MyProgram.jar
    When I package the jar using the manifest file I include the Class-Path var:
    Manifest-Version: 1.0
    Main-Class: Database
    Class-Path: .;Data\kunststoff
    Now when I try to execute the jar it gives me the error:
    "Could not find the main class. Program will exit!"
    Any ideas? thanks.

    Manifest-Version: 1.0
    Main-Class: Database
    Class-Path: .;Data\kunststoff>
    Better change that to "Class-Path: Data/kunststoff.jar"
    (http://java.sun.com/docs/books/tutorial/jar/basics/manifest.html)
    And remember to have a line break after it..
    Now when I try to execute the jar it gives me the
    error:
    "Could not find the main class. Program will exit!">
    But the main class should still be found even if the class-path entry was not totally correct, does Database.class show in jar tf MyProgram.jar?

  • Possible 'Class Path' Issues

    Hi Guys,
    I have problems compiling a file and I suspect it could be something related to classpaths. I am using NetBeans 6.9.1 as my IDE. When I set JDK 1.6 as my platform and complile, there are no issues, the programs compiles fine.
    My 'classpath' and 'path' are as follows:
    classpath:
    .;C:\Program Files\Java\jre1.6.0_07\lib\ext.;c:\java\classes;
    path:
    \....\....\....C:\Program Files\Java\jdk1.6.0_21\
    If I were to set the JDK as in 1.5, I seem to get the follwing error:
    ' cannot access org.red5.server.api.IScope
    bad class file: C:\Program
    Files\Red5\red5.jar(org/red5/server/api/IScope.class)
    class file has wrong version 50.0, should be 49.0
    Please remove or make sure it appears in the correct subdirectory of the classpath.
    import org.red5.server.api.IScope;
    1 error
    To rectify the problem I maded changes to my classpath and path, and yet the problem persists. The changes I made
    are as follows:
    classpath:
    .;C:\Program Files\Java\jre1.6.0_07\lib\ext.;C:\Program Files\Java\jre1.5.0_22\lib\ext.;c:\java\classes;
    path:
    \....\....\....C:\Program Files\Java\jdk1.6.0_21;C:\Program Files\Java\jdk1.5.0_22;C:\....\
    I hope someone can advise me on how I get rectify the problem and get the program to compile with JDK 1.5. Thanks.

    he wants to use JDK 1.5.Do read the thread before you post. He is* using JDK 1.5 when he gets the error message. He said so. This is the problem.* Not the solution. When he uses 1.6 he doesn't get the error.
    His environment is a bit messed up because he has PATH entries for both JDK versions.There is precisely zero evidence for that assertion.
    If he wants to compile and test with JDK 1.5, then removing 1.6 would make sense.No it wouldn't. He is using classes compiled for 1.6 with a 1.5 compiler. His problem is with red5.jar(org/red5/server/api/IScope.class) whose class version is 50.0. It's all written there above. If he wants to use that .jar file he has to use 1.6. Or else recompile that .jar file with 1.5, if he has the sources.

  • Problem: Multiple jar files in Class-Path [ IOException: line too long]

    Hello Folks,
    I am trying to create a jar file using the following command:
    jar -cvfm mygrid.jar MANIFEST.MF -C grid-jar/ .
    My MANIFEST.MF file is as following:
    Manifest-Version: 1.0
    Main-Class: com.gridftp.INSPgridFTP
    Class-Path: lib/activation.jar lib/ant.jar lib/antlr.jar lib/axis.jar lib/castor-0.9.3.jar lib/cog-abstraction-common-2.0.jar lib/cog-abstraction-examples-2.1.jar lib/cog-certmanagement-1.0.jar lib/cog-certrequest-1.0.jar lib/cog-grapheditor-0.46.jar lib/cog-gridfaces-1.0.jar lib/cog-gridshell-1.0.jar lib/cog-jglobus-1.2-050621.jar lib/cog-karajan-0.31.jar lib/cog-provider-clref-gt3_0_2.jar lib/cog-provider-clref-gt3_2_0.jar lib/cog-provider-clref-gt3_2_1.jar lib/cog-provider-clref-gt4_0_0.jar lib/cog-provider-condor-2.0.jar lib/cog-provider-gt2-2.0.jar lib/cog-provider-gt2ft-1.0.jar lib/cog-provider-gt3_0_2-2.0.jar lib/cog-provider-gt3_2_0-2.0.jar lib/cog-provider-gt3_2_1-2.0.jar lib/cog-provider-gt4_0_0-2.2.jar lib/cog-provider-local-2.0.jar lib/cog-provider-ssh-2.0.jar lib/cog-provider-webdav-1.0.jar lib/cog-resources-1.0.jar lib/cog-setup-0.91.jar lib/cog-util-0.91.jar lib/commons-discovery.jar lib/commons-httpclient.jar lib/commons-logging.jar lib/concurrent.jar lib/cryptix32.jar lib/cryptix-asn1.jar lib/cryptix.jar lib/j2ssh-common-0.2.2.jar lib/j2ssh-core-0.2.2.jar lib/jaas.jar lib/jakarta-regexp-1.2.jar lib/jakarta-slide-webdavlib-2.0.jar lib/jaxrpc.jar lib/jce-jdk13-125.jar lib/jgss.jar lib/jug-1.0.1.jar lib/junit.jar lib/log4j-1.2.8.jar lib/mail.jar lib/puretls.jar lib/saaj.jar lib/wsdl4j.jar lib/xercesImpl.jar lib/xml4j.jar lib/xml-apis-1.1.jar lib/xmlsec.jar lib/xpp3-1.1.3.4d_b4_min.jar lib/xstream-1.1.1-patched.jar .
    The grid-jar directory structure is:
    | - com -- all classes are under this dir.
    | - lib -- all the required jar files are in this dir.
    There are 59 jar files in the lib directory. When I try to create the jar file, I get the following exception:
    jar -cvfm mygrid.jar MANIFEST.MF -C grid-jar/ .
    java.io.IOException: line too long
    at java.util.jar.Attributes.read(Attributes.java:356)
    at java.util.jar.Manifest.read(Manifest.java:167)
    at java.util.jar.Manifest.<init>(Manifest.java:52)
    at sun.tools.jar.Main.run(Main.java:124)
    at sun.tools.jar.Main.main(Main.java:904)
    Any idea, why do I get this exception? Is there any restriction as to how many jar files (or characters) can be there in the Class-Path value in the MANIFEST.MF file?
    Please help.
    Thanks,
    Ana

    use as the following way to resolve the problem:
    (1) use separate lines, to avoid too long a line for java package name lists
    (2) type a preceding space before each folloing lines, for example:
    Class-Path: ...jar ...jar ...jar
    ...jar ..jar
    ...jar ...jar
    ...jar ...jar
    Hello Folks,
    I am trying to create a jar file using the following
    command:
    jar -cvfm mygrid.jar MANIFEST.MF -C grid-jar/ .
    My MANIFEST.MF file is as following:
    Manifest-Version: 1.0
    Main-Class: com.gridftp.INSPgridFTP
    Class-Path: lib/activation.jar lib/ant.jar
    lib/antlr.jar lib/axis.jar lib/castor-0.9.3.jar
    lib/cog-abstraction-common-2.0.jar
    lib/cog-abstraction-examples-2.1.jar
    lib/cog-certmanagement-1.0.jar
    lib/cog-certrequest-1.0.jar
    lib/cog-grapheditor-0.46.jar
    lib/cog-gridfaces-1.0.jar lib/cog-gridshell-1.0.jar
    lib/cog-jglobus-1.2-050621.jar
    lib/cog-karajan-0.31.jar
    lib/cog-provider-clref-gt3_0_2.jar
    lib/cog-provider-clref-gt3_2_0.jar
    lib/cog-provider-clref-gt3_2_1.jar
    lib/cog-provider-clref-gt4_0_0.jar
    lib/cog-provider-condor-2.0.jar
    lib/cog-provider-gt2-2.0.jar
    lib/cog-provider-gt2ft-1.0.jar
    lib/cog-provider-gt3_0_2-2.0.jar
    lib/cog-provider-gt3_2_0-2.0.jar
    lib/cog-provider-gt3_2_1-2.0.jar
    lib/cog-provider-gt4_0_0-2.2.jar
    lib/cog-provider-local-2.0.jar
    lib/cog-provider-ssh-2.0.jar
    lib/cog-provider-webdav-1.0.jar
    lib/cog-resources-1.0.jar lib/cog-setup-0.91.jar
    lib/cog-util-0.91.jar lib/commons-discovery.jar
    lib/commons-httpclient.jar lib/commons-logging.jar
    lib/concurrent.jar lib/cryptix32.jar
    lib/cryptix-asn1.jar lib/cryptix.jar
    lib/j2ssh-common-0.2.2.jar lib/j2ssh-core-0.2.2.jar
    lib/jaas.jar lib/jakarta-regexp-1.2.jar
    lib/jakarta-slide-webdavlib-2.0.jar lib/jaxrpc.jar
    lib/jce-jdk13-125.jar lib/jgss.jar lib/jug-1.0.1.jar
    lib/junit.jar lib/log4j-1.2.8.jar lib/mail.jar
    lib/puretls.jar lib/saaj.jar lib/wsdl4j.jar
    lib/xercesImpl.jar lib/xml4j.jar lib/xml-apis-1.1.jar
    lib/xmlsec.jar lib/xpp3-1.1.3.4d_b4_min.jar
    lib/xstream-1.1.1-patched.jar .
    The grid-jar directory structure is:
    | - com -- all classes are under this dir.
    | - lib -- all the required jar files are in
    e in this dir.
    There are 59 jar files in the lib directory. When I
    try to create the jar file, I get the following
    exception:
    jar -cvfm mygrid.jar MANIFEST.MF -C grid-jar/ .
    java.io.IOException: line too long
    at
    at
    at
    at
    java.util.jar.Attributes.read(Attributes.java:356)
    at
    at
    at java.util.jar.Manifest.read(Manifest.java:167)
    at
    at
    at java.util.jar.Manifest.<init>(Manifest.java:52)
    at sun.tools.jar.Main.run(Main.java:124)
    at sun.tools.jar.Main.main(Main.java:904)
    Any idea, why do I get this exception? Is there any
    restriction as to how many jar files (or characters)
    can be there in the Class-Path value in the
    MANIFEST.MF file?
    Please help.
    Thanks,
    Anajust

  • Dont want to hard code the -Djava.class.path...notation question

    Hello everyone,
    I have a c++ program that is compiled into a DLL file. It calls the JNI_CreateJavaVM. I have the whole thing working but now I need to port it and the jar file to another machine.
    right now i am setting the options this way:
    #define USER_CLASSPATH "c:\\javaClasses\\intec.jar.zip" /* where PRLocalBridge.class is */
    #define PRCLASS "com/intec/intecapi/PRLocalBridge"
    bool PRLocalBridgeMain(){
         JavaVMOption options[1];
         options[0].optionString = "-Djava.class.path=" USER_CLASSPATH;
         vm_args.version = JNI_VERSION_1_4;//0x00010002;
         vm_args.options = options;
         vm_args.nOptions = 0;
         vm_args.ignoreUnrecognized = JNI_TRUE;
        /* Create the Java VM */
        res = JNI_CreateJavaVM(&jvm, (void**)&env,&vm_args);
        if (res < 0) {
         return (bool*)errorHandler('b', CANT_INVOKE_JVM);
        cls = env->FindClass(PRCLASS);
    }where USER_CLASSPATH is hardcoded directly to where the jar
    file is located. in other machines, it may not be loaded
    in that file structure. how do i softcode the path?
    ive put the jar in my classpath but that doesnt seem to work
    (unless i didnt have USER_CLASSPATH set properly). Thanks
    in advance :)
    txjump

    hi bschauwe,
    thanks for the suggestions! i was hoping you would reply. You have helped some others with classpath questions. :)
    since its a dll, can you pass it values?
    we do have an ini file that is already created but the file parser is in java so i would have to write another one in c. id like to stay away from that though. cause if it gets messed up or goes missing, clients wont be able to reach the java program, and in turn the database.
    the classpath environment variable sounds like a good idea...will check into that. eventually we plan to wrap our software up in installshield so that would really be nice. clients could be ignorant of environment variables and still be able to run everything.
    my solution for now has been to find my jar file by recursively searching the c drive. and use GetFilePath() to get the full path and pass that to JNI_CreateJavaVM. i did get it to work...just wondering if this is a good idea.
    i was thinking that if the dll is in the same folder as the jar file i could just use dot notation but that just doesnt seem like a good idea to make that assumption. but i think java does something similar 'cause Sun says not to move the java.dll file.
    thanks for your input,
    txjump

  • Help: manifest class path attribute - OC4J 9.0.3

    I have tried everything I can think of. I have even downloaded the developers version of JRun to ensure my code does deploy under the J2EE spec.
    Per compleating deployment under JRun, I have migrated back to OC4J and made the approperate modifications to orion-web.xml to include the following entry:
    <web-app-class-laoder include-manifest-class-path="true" />
    Even with this entry I get the same class not found statements. I am out of ideas.
    Anyone got some sugestions?
    Info: Ear deployment, static pages deploy under all wars...
    Thanks.
    Andrew
    [email protected]

    I have tried everything I can think of. I have even downloaded the developers version of JRun to ensure my code does deploy under the J2EE spec.
    Per compleating deployment under JRun, I have migrated back to OC4J and made the approperate modifications to orion-web.xml to include the following entry:
    <web-app-class-laoder include-manifest-class-path="true" />
    Even with this entry I get the same class not found statements. I am out of ideas.
    Anyone got some sugestions?
    Info: Ear deployment, static pages deploy under all wars...
    Thanks.
    Andrew
    [email protected]
    Hi Andy -
    Can you check the attribute and make sure it's the following:
    <web web-app-class-loader include-war-manifest-class-path="true"/>
    ^^^
    You have have just typed it in quickly, but I noticed there's a typo in the entry you have above and you are missing the WAR piece of the attribute name.
    There's a how-to document on OTN which has an example of this.
    http://otn.oracle.com/tech/java/oc4j/htdocs/how-to-servlet-warmanifest.html
    cheers
    -steve- Hi Steve
    Where can I find the zip file I went through the link but doesn't have any link to zip file
    Thanks
    Ritesh

  • JBO:33001 bc4j.xcfg file not found in class path

    Hi,
    I am yet another victim of the age-old error JBO:33001 bc4j.xcfg file not found in class path, When i have my BC4JApp.jar in Tomcat Web-inf/lib directory. All the other jar files and class files in my webserver-application web-inf classes and lib directory works.
    But Tomcat server is not able to read this bc4j.xcfg file. I can see in my jar file that this bc4j.xcfg exists and in the specified package directory. still the problem persists. My BC4JApp.jar is perfectly working when i use JDeveloper. but not when i use tomcat4.0 and call a JSP using BC4JApp.jar from browser (My environment is Jdeveloper3.2, Tomcat4.0+IIS in middle tier and oracle 8i as DB, everything on windows2k)
    I have gone through almost all the threads possible that relates to this error in this form. None of them have a answer except to say "put the file in classpath". and last reply is "will fix in jDeveloper 9i. So what happens to us who are working in Jdeveloper 3.2?
    1. I have this file in my jar file.
    2. I also tried creating a seperate directory manually, with the same name as my package under web-inf/classes, web-inf/lib , just under web-inf directory and atlast under approot directory also. I tried having my package directory containing bc4j.xcfg in these folders one at a time and also tried having this directory in all these folders at the same time.
    Still no solution.
    Itz frustrating that neither proper documentation nor a right url page nor i am aware of available addressing this. page links given in above threads only gives me the wonderful page of ie's "Page cannot be displayed".
    Is there a answer to this error and my problem. If this doesn't work, then i have to all the way develop from scratch creating my jsp using JDBC calls and Stored packages etc.
    I don't want to give up on this Jdeveloper at this final moment because if this bc4j.xcfg file is found, my application will work perfectly. on these final moments, if this doesn't work, i am frightened to imagine to develop my application in standard way. Atlast, if thatz the option left,we have to do that bcos our production date is close by.
    Please can some one in this forum or Jdeveloper help me to solve this problem. I am desperate and very urgent.
    Waiting for a reply from Jdev team very much...
    ( I just posted in the other thread which is pretty old, dated backto May 2001, which was relevant to this error. Just to make sure it is noticed, I am posting it seperately too)
    Thanks
    Hari(2/3/02)

    Hi All,
    For those who are following this thread, I got a solution for this error with the help of Jdev Team.
    This solution may work, if you have deployed your application in Tomcat4.0.1. This is the environment in which I work and tested.
    As you may be aware, Tomcat ignores value in CLASSPATH variable.
    To see any files that are existing or newly deployed, it has it own way of detecting it.
    Addition information on Tomcat working, you can follow this link,
    http://jakarta.apache.org/tomcat/tomcat-4.0-doc/index.html
    Coming to point, Tomcat has got five classloaders and each classloader invoked, looks in their related directories for files in following order.
    1. /WEB-INF/classes of your web-application
    2. /WEB-INF/lib/*.jar of your web application
    3. BootStrap classes of your JVM (Tomcat's $JAVA_HOME/jre/lib/ext)
    4. System class loader classes($CATALINA_HOME/bin/bootstrap.jar,CATALINA_HOME/lib/tools.jar)
    5. $CATALINA_HOME/common/classes
    6. $CATALINA_HOME/common/lib/*.jar
    7. $CATALINA_HOME//classes
    8. $CATALINA_HOME/lib/*.jar
    So All your individual application related files should be deployed in your application's WEB-INF/classes or WEB-INF/lib directory accordingly.
    If your application files are unpacked, they should be deployed or copied under WEB-INF/classes directory
    if the files are within a jar, they should be under WEB-INF/lib directory.
    If your Jar-files contains bc4j components, then those jar files should be deployed under WEB-INF/lib directory. Also,do the next step to copy all relavant BC4J runtime libraries under lib directory.
    IMPORTANT: Please remember to copy and paste all the required BC4j runtime libraries in the Same WEB-INF/lib directory along with your application jar files. This is the real reason which can solve this JBO:33001 to disappear. It worked for me.
    To configure your directory for tag-lib uri's, use web.xml to set the taglib-uri attribute.
    Put your web.xml and DataTags.tld in the WEB-INF directory.
    Your simple web.xml may look like as follows.
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
         <taglib>
              <taglib-uri>
                   /webapp/DataTags.tld
              </taglib-uri>
              <taglib-location>
                   /WEB-INF/DataTags.tld
              </taglib-location>
         </taglib>
    </web-app>
    You may then modify this web.xml to suit further requirements of your application.
    Remember to stop and restart the Tomcat Server (service) by using shutdown and startup scripts after updating any jar files/class files/ JSP or source files deployed in Tomcat.
    Sometimes, only this helps even though your context's reloadable attribute is set to true in Tomcat Server's server.xml file.
    Hope this above information helps you to solve this error in Tomcat environment. My Sincere thanks once again to Juan and Jdev team for their help and efforts to solve this problem.
    Thanks
    Hari

  • Java 5.0 does not recognize wrapped Class-Path in Manifest.MF of .jar file?

    Java: build 1.5.0_05-b05
    Ant: 1.6.2
    I use Ant <jar> task to create a standalone application in a .jar file. I have a very long "Class-Path" in the Manifest.MF file. The long Class-Path is wrapped at every 70th character by the <jar> task. I cannot run "java -jar <the jar file>", because Java runtime cannot find classes.
    I found the following Q&A from ANT's FAQ page,
    Q: Whenever I use the Ant jar or manifest related tasks, long lines in my manifest are wrapped at 70 characters and the resulting jar does not work in my application server. Why does Ant do this?
    A: Ant implements the Java Jar file specification. Please refer to the notes section where it discusses the maximum allowable length of a line and the concept of continuation characters.
    If a jar file produced by Ant does not work in your appserver, and that failure is due to the wrapped manifest, then you need to consult your appserver provider, as it is a bug in their appserver. Far more likely, however, is a problem in your specification of your classpath. It is not Ant's wrapping of your classpath that is the problem.
    Do not raise a bug about this issue until you have checked to ensure that the problem is not due to your classpath specification.
    Any idea?

    "will be searched ALSO."...
    From: http://java.sun.com/docs/books/tutorial/ext/basics/load.html
    Understanding Extension Class Loading
    The extension framework makes use of the new class-loading mechanism in the JavaTM 1.2 platform. When the runtime environment needs to load a new class for an application, it looks for the class in the following locations, in order:
    1. Bootstrap classes: the runtime classes in rt.jar and internationalization classes in i18n.jar.
    2. Installed extensions: classes in JAR files in the lib/ext directory of the JRE.
    3. The class path: classes, including classes in JAR files, on paths specified by the system property java.class.path. If a JAR file on the class path has a manifest with the Class-Path attribute, JAR files specified by the Class-Path attribute will be searched also.
    [snip]

  • I bought an eBook from iTunes. I can view/read it perfectly on my iPhone but when I try to open the eBook file on my iPad, I get the error message, "Cannot open book. This book is protected by an incompatible technology." Any ideas for me? thx

    i bought an eBook from iTunes. I can view/read it perfectly on my iPhone but when I try to open the eBook file on my iPad, I get the error message, "Cannot open book. This book is protected by an incompatible technology." Any ideas for me? thx

    Welcome to the Apple Community.
    I have seen previous versions mentioned in a pop up message before on iCloud.com, but I'm not really sure at all how it would help, as I couldn't get it to do anything.
    The best advice I have at this time is to back up your work on your iOS device by regularly saving it to iTunes, if anything goes wrong you can then either load it into the numbers app again on the device or recover it via iTunes on your computer.
    My syncs are immediate, I never get chance to see if it works in the background, sorry.

  • Baseline update keeps failing due to forge class path issues ?

    I'm trying ATG 10.2 setup with Endeca 3.1.2, discover store runs fine, but when I try to run baseline update on ATG CRS store, I see a NoClassDefFound error on slf4j libraries.  I'm not very familiar with endeca, so please let me know if my approach does not make sense. 
    First I looked at baseline_update.sh and see it's calling runcommand.sh.  So I did an echo on the last line of runcommand.sh and I can see slf4j api's getting included...
    /home/oraten/Software/endeca/PlatformServices/6.1.4/j2sdk/bin/java  -Djava.util.logging.config.file=./../config/script/logging.properties -cp "/home/oraten/Software/endeca/PlatformServices/6.1.4/lib/java/eacclient.jar:/home/oraten/Software/endeca/PlatformServices/6.1.4/lib/java/jaxrpc.jar:/home/oraten/Software/endeca/PlatformServices/6.1.4/lib/java/mail.jar:/home/oraten/Software/endeca/PlatformServices/6.1.4/lib/java/saaj.jar:/home/oraten/Software/endeca/PlatformServices/6.1.4/lib/java/activation.jar:/home/oraten/Software/endeca/PlatformServices/6.1.4/lib/java/axis.jar:/home/oraten/Software/endeca/PlatformServices/6.1.4/lib/java/commons-discovery-0.2.jar:/home/oraten/Software/endeca/PlatformServices/6.1.4/lib/java/commons-logging-1.0.4.jar:./../config/script:./../config/lib/java/bsh-2.0b4.jar:./../config/lib/java/casStubs.jar:./../config/lib/java/commons-codec-1.5.jar:./../config/lib/java/commons-io-1.4.jar:./../config/lib/java/commons-lang-2.4.jar:./../config/lib/java/eacComponents-3.1.2.jar:./../config/lib/java/eacHandlers-3.1.2.jar:./../config/lib/java/eacToolkit-3.1.2.jar:./../config/lib/java/httpclient-4.1.jar:./../config/lib/java/httpcore-4.1.jar:./../config/lib/java/httpmime-4.1.1.jar:./../config/lib/java/ifdi-dt-utilities-1.0.0.20121016.jar:./../config/lib/java/ifdi-fcm-1.0.0.20121016.jar:./../config/lib/java/jdom-1.1.jar:./../config/lib/java/spring-2.5.6.jar:./../config/lib/java/spring-delegate-adapter-1.0.1.jar:./../config/lib/java/*.zip:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//asm-3.3.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//commons-cli-1.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//commons-codec-1.3.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//commons-httpclient-3.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//commons-io-1.4.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//commons-lang-2.4.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//cxf-api-2.6.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//cxf-rt-bindings-soap-2.6.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//cxf-rt-bindings-xml-2.6.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//cxf-rt-core-2.6.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//cxf-rt-databinding-jaxb-2.6.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//cxf-rt-frontend-jaxws-2.6.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//cxf-rt-frontend-simple-2.6.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//cxf-rt-transports-http-2.6.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//cxf-rt-ws-addr-2.6.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//cxf-rt-ws-policy-2.6.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//dom4j-1.6.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//FastInfoset-1.2.7.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//google-collections-1.0.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//hsqldb-2.2.5-09042011.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//http-client-11.1.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//httpclient-4.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//httpcore-4.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//itl-api-common-3.1.2.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//itl-cmd-3.1.2.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//itl-common-3.1.2.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//jaxb-impl-2.1.12.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//jaxen-1.1.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//jcl-over-slf4j-1.5.2.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//jul-to-slf4j-1.5.2.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//log4j-1.2.15.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//neethi-3.0.2.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//orawsdl-11.1.1-PATCH-13336266.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//recordstore-api-3.1.2.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//recordstore-cmd-3.1.2.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//service-locator-3.1.2.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//slf4j-api-1.5.2.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//slf4j-log4j12-1.5.2.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//spring-2.5.6.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//stax2-api-3.1.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//woodstox-core-asl-4.1.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//xercesImpl-2.9.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//xml-resolver-1.2.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//xmlschema-core-2.0.2.jar" com.endeca.soleng.eac.toolkit.Controller --app-config AppConfig.xml --config-override environment.properties BaselineUpdate run
    [12.28.13 17:38:42] INFO: Checking definition from AppConfig.xml against existing EAC provisioning.
    [12.28.13 17:38:43] INFO: Definition has not changed.
    [12.28.13 17:38:43] INFO: Starting baseline update script.
    [12.28.13 17:38:43] INFO: Acquired lock 'update_lock'.
    [12.28.13 17:38:44] INFO: [ITLHost] Starting shell utility 'cleanDir_processing'.
    [12.28.13 17:38:45] INFO: [ITLHost] Starting shell utility 'move_-_to_processing'.
    [12.28.13 17:38:45] INFO: [ITLHost] Starting copy utility 'fetch_config_to_input_for_forge_Forge'.
    [12.28.13 17:38:46] INFO: [ITLHost] Starting backup utility 'backup_log_dir_for_component_ConfigurationGeneratorForge'.
    [12.28.13 17:38:48] INFO: [ITLHost] Starting component 'ConfigurationGeneratorForge'.
    [12.28.13 17:38:57] SEVERE: Batch component  'ConfigurationGeneratorForge' failed. Refer to component logs in /home/oraten/Software/endeca/apps/CRS/./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|
    [12.28.13 17:38:57] 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/oraten/Software/endeca/apps/CRS/./logs/forges/ConfigurationGeneratorForge on host ITLHost.
    [12.28.13 17:38:57] INFO: Released lock 'update_lock'.
    As mentioned in the above error, next I looked at ConfigurationGeneratorForge.log and see that slf4j libraries are not part of javaClassPath, which is setup in DataIngest.xml file (FORGE_FCM_CLASSPATH)...
    INFO 12/28/13 23:33:01.376 UTC (1388273581376) FORGE {config}: forge 6.1.4.734339 ("i86pc-linux")
    INFO 12/28/13 23:33:01.376 UTC (1388273581376) FORGE {config}: Copyright 2001-2012 Oracle Endeca Technologies, Inc.
    INFO 12/28/13 23:33:01.376 UTC (1388273581376) FORGE {config}: Command Line: /home/oraten/Software/endeca/PlatformServices/6.1.4/bin/forge -vi --javaClasspath /home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-forge-adapter/recordstore-forge-adapter-3.1.2.jar:./config/lib/java/spring-2.5.6.jar:./config/lib/java/eacToolkit-3.1.1.jar:./config/lib/java/spring-delegate-adapter-1.0.1.jar:./config/script:.:./config/lib/java/ifdi-fcm-1.0.0.20121016.jar --javaArgument -DENDECA_PROJECT_NAME=CRS --javaArgument -Dendeca.project.dir=/home/oraten/Software/endeca/apps/CRS --javaArgument -Xmx1024m --javaArgument -Djava.util.logging.config.file=./config/script/logging.properties --logDir /home/oraten/Software/endeca/apps/CRS/./logs/forges/ConfigurationGeneratorForge --outputPrefix CRS --inputDir /home/oraten/Software/endeca/apps/CRS/data/processing --outputDir /home/oraten/Software/endeca/apps/CRS/data/processing --stateDir /home/oraten/Software/endeca/apps/CRS/state --numPartitions 1 --tmpDir /home/oraten/Software/endeca/apps/CRS/data/temp -o /home/oraten/Software/endeca/apps/CRS/logs/forges/ConfigurationGeneratorForge/ConfigurationGeneratorForge.log /home/oraten/Software/endeca/apps/CRS/config/pipeline/configurationGenerator.epx
    INFO 12/28/13 23:33:01.377 UTC (1388273581377) FORGE {config}: Initialized cURL, version: libcurl/7.16.4 OpenSSL/0.9.8 zlib/1.2.3
    INFO 12/28/13 23:33:01.381 UTC (1388273581381) FORGE {config}: Creating pipeline 'Configuration Generator'.
    INFO 12/28/13 23:33:01.391 UTC (1388273581391) FORGE {config}: Starting: JavaManipulator 'LoadSchemaRecordStore'.
    INFO 12/28/13 23:33:01.391 UTC (1388273581391) FORGE {config}: Starting: RecordCache 'SchemaRecordStoreCache'.
    INFO 12/28/13 23:33:01.392 UTC (1388273581392) FORGE {config}: DelimitedInputStream (URL '/home/oraten/Software/endeca/apps/CRS/config/api_input/schema.csv'): generating header information from first line of data: 'attribute.name,attribute.type,attribute.display_name,attribute.offline_sort,attribute.record_filterable,attribute.rollup_key,attribute.search_interface,attribute.search.searchable,attribute.search.wildcard,attribute.show_with_list ,attribute.show_with_record,attribute.source_name,attribute.property.data_type,attribute.dimension.autogen,attribute.dimension.compute_refinement_counts,attribute.dimension.dyn_ranking_enabled,attribute.dimension.dyn_ranking_refinement_count,attribute.dimension.dyn_ranking_more,attribute.dimension.dyn_ranking_sort,attribute.dimension.hidden,attribute.dimension.hierarchy_dim_search,attribute.dimension.hierarchy_record_search,attribute.dimension.multiselect_type,attribute.dimension.refinements_sort_order sku.margin,property,,true,,,,,,,,sku.margin,decimal,,,,,,,,,,, '.
    WARN 12/28/13 23:33:01.392 UTC (1388273581392) FORGE {config}: Column 26 has empty name
    WARN 12/28/13 23:33:01.392 UTC (1388273581392) FORGE {config}: Column 28 has empty name
    WARN 12/28/13 23:33:01.392 UTC (1388273581392) FORGE {config}: Column 29 has empty name
    WARN 12/28/13 23:33:01.392 UTC (1388273581392) FORGE {config}: Column 30 has empty name
    WARN 12/28/13 23:33:01.392 UTC (1388273581392) FORGE {config}: Column 31 has empty name
    WARN 12/28/13 23:33:01.392 UTC (1388273581392) FORGE {config}: Column 32 has empty name
    WARN 12/28/13 23:33:01.392 UTC (1388273581392) FORGE {config}: Column 33 has empty name
    WARN 12/28/13 23:33:01.392 UTC (1388273581392) FORGE {config}: Column 34 has empty name
    WARN 12/28/13 23:33:01.392 UTC (1388273581392) FORGE {config}: Column 37 has empty name
    WARN 12/28/13 23:33:01.392 UTC (1388273581392) FORGE {config}: Column 38 has empty name
    WARN 12/28/13 23:33:01.393 UTC (1388273581392) FORGE {config}: Column 39 has empty name
    WARN 12/28/13 23:33:01.393 UTC (1388273581393) FORGE {config}: Column 40 has empty name
    WARN 12/28/13 23:33:01.393 UTC (1388273581393) FORGE {config}: Column 41 has empty name
    WARN 12/28/13 23:33:01.393 UTC (1388273581393) FORGE {config}: Column 42 has empty name
    WARN 12/28/13 23:33:01.393 UTC (1388273581393) FORGE {config}: Column 43 has empty name
    WARN 12/28/13 23:33:01.393 UTC (1388273581393) FORGE {config}: Column 44 has empty name
    WARN 12/28/13 23:33:01.393 UTC (1388273581393) FORGE {config}: Column 45 has empty name
    WARN 12/28/13 23:33:01.393 UTC (1388273581393) FORGE {config}: Column 46 has empty name
    INFO 12/28/13 23:33:01.393 UTC (1388273581393) FORGE {config}: RecordAdapter 'LoadSchemaCsv': opened '/home/oraten/Software/endeca/apps/CRS/config/api_input/schema.csv' for input
    INFO 12/28/13 23:33:01.393 UTC (1388273581393) FORGE {config}: Starting: RecordAdapter 'LoadSchemaCsv'.
    INFO 12/28/13 23:33:01.393 UTC (1388273581393) FORGE {config}: Starting: JavaManipulator 'MappedSchemaCsv'.
    INFO 12/28/13 23:33:01.393 UTC (1388273581393) FORGE {config}: Starting: RecordCache 'SchemaCsvCache'.
    INFO 12/28/13 23:33:01.393 UTC (1388273581393) FORGE {config}: Starting: RecordAssembler 'JoinSchemaCsvWithSchemaRecordStore'.
    INFO 12/28/13 23:33:01.394 UTC (1388273581394) FORGE {config}: Starting: JavaManipulator 'JoinedSchemaFeedWithRemappedSchemaCsv'.
    INFO 12/28/13 23:33:01.394 UTC (1388273581394) FORGE {config}: Starting: JavaManipulator 'LoadDimValsRecordStore'.
    INFO 12/28/13 23:33:01.394 UTC (1388273581394) FORGE {config}: DelimitedInputStream (URL '/home/oraten/Software/endeca/apps/CRS/config/api_input/dimension_values.csv'): generating header information from first line of data: 'dimval.dimension_spec,dimval.spec,dimval.display_name,dimval.parent_spec,dimval.match_type,dimval.display_order,dimval.classify_synonym,dimval.search_synonym,dimval.range.comparison_type,dimval.range.lower_bound,dimval.range.lower_bound_inclusive,dimval.range.upper_bound,dimval.range.upper_bound_inclusive '.
    INFO 12/28/13 23:33:01.394 UTC (1388273581394) FORGE {config}: RecordAdapter 'LoadDimValsCsv': opened '/home/oraten/Software/endeca/apps/CRS/config/api_input/dimension_values.csv' for input
    INFO 12/28/13 23:33:01.394 UTC (1388273581394) FORGE {config}: Starting: RecordAdapter 'LoadDimValsCsv'.
    INFO 12/28/13 23:33:01.394 UTC (1388273581394) FORGE {config}: Starting: RecordAssembler 'JoinDimValFeeds'.
    INFO 12/28/13 23:33:01.394 UTC (1388273581394) FORGE {config}: Starting: JavaManipulator 'LoadPrecedenceRulesRecordStore'.
    INFO 12/28/13 23:33:01.394 UTC (1388273581394) FORGE {config}: DelimitedInputStream (URL '/home/oraten/Software/endeca/apps/CRS/config/api_input/precedence_rules.csv'): generating header information from first line of data: 'precedence.source_dimension_name,precedence.source_dimval_spec,precedence.target_dimension_name,precedence.type '.
    INFO 12/28/13 23:33:01.394 UTC (1388273581394) FORGE {config}: RecordAdapter 'LoadPrecedenceRulesCsv': opened '/home/oraten/Software/endeca/apps/CRS/config/api_input/precedence_rules.csv' for input
    INFO 12/28/13 23:33:01.394 UTC (1388273581394) FORGE {config}: Starting: RecordAdapter 'LoadPrecedenceRulesCsv'.
    INFO 12/28/13 23:33:01.394 UTC (1388273581394) FORGE {config}: Starting: RecordAssembler 'JoinPrecedenceRuleFeeds'.
    INFO 12/28/13 23:33:01.395 UTC (1388273581395) FORGE {config}: Starting: JavaManipulator 'ConfigurationAdapter'.
    INFO 12/28/13 23:33:01.395 UTC (1388273581395) FORGE {config}: RecordCache 'SchemaRecordStoreCache (LoadSchemaRecordStore)' loading records.
    INFO 12/28/13 23:33:02.368 UTC (1388273582368) FORGE {config}: (AdapterRunner): Adapter class: com.endeca.esource.springadapter.SpringDelegateAdapter
    ERROR 12/28/13 23:33:02.369 UTC (1388273582369) FORGE {config}: (AdapterRunner): org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'configurationAdapter' defined in class path resource [config/script/fcm.context.xml]: Cannot resolve reference to bean 'forgeConfigurationManager' while setting bean property 'forgeConfigurationManager'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'forgeConfigurationManager' defined in class path resource [config/script/fcm.context.xml]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [com.endeca.itl.fcm.ForgeConfigurationManager]: Constructor threw exception; nested exception is java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory com.endeca.edf.adapter.AdapterException: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'configurationAdapter' defined in class path resource [config/script/fcm.context.xml]: Cannot resolve reference to bean 'forgeConfigurationManager' while setting bean property 'forgeConfigurationManager'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'forgeConfigurationManager' defined in class path resource [config/script/fcm.context.xml]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [com.endeca.itl.fcm.ForgeConfigurationManager]: Constructor threw exception; nested exception is java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory at com.endeca.esource.springadapter.SpringDelegateAdapter.loadApplicationContext(SpringDelegateAdapter.java:121) at com.endeca.esource.springadapter.SpringDelegateAdapter.loadDelegateAdapter(SpringDelegateAdapter.java:73) at com.endeca.esource.springadapter.SpringDelegateAdapter.execute(SpringDelegateAdapter.java:60) at com.endeca.edf.adapter.AdapterRunner.run(AdapterRunner.java:168) at com.endeca.edf.adapter.AdapterRunner.main(AdapterRunner.java:43) Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'configurationAdapter' defined in class path resource [config/script/fcm.context.xml]: Cannot resolve reference to bean 'forgeConfigurationManager' while setting bean property 'forgeConfigurationManager'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'forgeConfigurationManager' defined in class path resource [config/script/fcm.context.xml]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [com.endeca.itl.fcm.ForgeConfigurationManager]: Constructor threw exception; nested exception is java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:275) at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveValueIfNecessary(BeanDefinitionValueResolver.java:104) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyPropertyValues(AbstractAutowireCapableBeanFactory.java:1245) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1010) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:472) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409) at java.security.AccessController.doPrivileged(Native Method) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380) at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264) at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222) at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261) at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185) at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164) at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:429) at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:728) at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:380) at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:139) at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:93) at com.endeca.esource.springadapter.SpringDelegateAdapter.loadApplicationContext(SpringDelegateAdapter.java:119) ... 4 more Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'forgeConfigurationManager' defined in class path resource [config/script/fcm.context.xml]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [com.endeca.itl.fcm.ForgeConfigurationManager]: Constructor threw exception; nested exception is java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateBean(AbstractAutowireCapableBeanFactory.java:883) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:839) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:440) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409) at java.security.AccessController.doPrivileged(Native Method) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380) at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264) at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222) at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261) at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185) at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164) at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:269) ... 22 more Caused by: org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [com.endeca.itl.fcm.ForgeConfigurationManager]: Constructor threw exception; nested exception is java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:115) at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:61) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateBean(AbstractAutowireCapableBeanFactory.java:877) ... 33 more Caused by: java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory at com.endeca.itl.fcm.ForgeConfigurationManager.<init>(ForgeConfigurationManager.java:226) 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 org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:100) ... 35 more Caused by: java.lang.ClassNotFoundException: org.slf4j.LoggerFactory at java.net.URLClassLoader$1.run(URLClassLoader.java:202) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:190) at java.lang.ClassLoader.loadClass(ClassLoader.java:306) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301) at java.lang.ClassLoader.loadClass(ClassLoader.java:247) ... 41 more
    ERROR 12/28/13 23:33:03.374 UTC (1388273583374) FORGE {config}: The java process evaluating the java manipulator class 'com.endeca.esource.springadapter.SpringDelegateAdapter' failed. Check the file '/home/oraten/Software/endeca/apps/CRS/./logs/forges/ConfigurationGeneratorForge/Edf.Pipeline.RecordPipeline.JavaManipulator.LoadSchemaRecordStore.log' for more information.
    INFO 12/28/13 23:33:03.374 UTC (1388273583374) FORGE {config}: RecordCache 'SchemaRecordStoreCache (LoadSchemaRecordStore)' read  0 records.
    INFO 12/28/13 23:33:03.374 UTC (1388273583374) FORGE {config}: RecordCache 'SchemaRecordStoreCache (LoadSchemaRecordStore)' loaded 0 record, combined 0 records.
    INFO 12/28/13 23:33:03.374 UTC (1388273583374) FORGE {config}: RecordCache 'SchemaRecordStoreCache' heap used: 0.152344 MB (total: 160.199 MB).
    INFO 12/28/13 23:33:03.374 UTC (1388273583374) FORGE {config}: JavaManipulator 'LoadSchemaRecordStore': Finished
    INFO 12/28/13 23:33:03.374 UTC (1388273583374) FORGE {config}: RecordCache 'SchemaCsvCache (MappedSchemaCsv)' loading records.
    INFO 12/28/13 23:33:03.616 UTC (1388273583616) FORGE {config}: (AdapterRunner): Adapter class: com.endeca.itl.fcm.integration.cadk.ifdi.RecordPropertyRenamer
    ERROR 12/28/13 23:33:03.616 UTC (1388273583616) FORGE {config}: (AdapterRunner): java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory com.endeca.edf.adapter.AdapterRunner$LoadAdapterException: java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory at com.endeca.edf.adapter.AdapterRunner.loadAdapter(AdapterRunner.java:326) at com.endeca.edf.adapter.AdapterRunner.run(AdapterRunner.java:162) at com.endeca.edf.adapter.AdapterRunner.main(AdapterRunner.java:43) Caused by: java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory at com.endeca.itl.fcm.integration.cadk.ifdi.RecordPropertyRenamer.<init>(RecordPropertyRenamer.java:44) 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 com.endeca.edf.adapter.AdapterRunner.loadAdapter(AdapterRunner.java:317) ... 2 more Caused by: java.lang.ClassNotFoundException: org.slf4j.LoggerFactory at java.net.URLClassLoader$1.run(URLClassLoader.java:202) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:190) at java.lang.ClassLoader.loadClass(ClassLoader.java:306) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301) at java.lang.ClassLoader.loadClass(ClassLoader.java:247) ... 10 more
    ERROR 12/28/13 23:33:04.620 UTC (1388273584620) FORGE {config}: The java process evaluating the java manipulator class 'com.endeca.itl.fcm.integration.cadk.ifdi.RecordPropertyRenamer' failed. Check the file '/home/oraten/Software/endeca/apps/CRS/./logs/forges/ConfigurationGeneratorForge/Edf.Pipeline.RecordPipeline.JavaManipulator.MappedSchemaCsv.log' for more information.
    INFO 12/28/13 23:33:04.620 UTC (1388273584620) FORGE {config}: RecordCache 'SchemaCsvCache (MappedSchemaCsv)' read  0 records.
    INFO 12/28/13 23:33:04.620 UTC (1388273584620) FORGE {config}: RecordCache 'SchemaCsvCache (MappedSchemaCsv)' loaded 0 record, combined 0 records.
    INFO 12/28/13 23:33:04.621 UTC (1388273584621) FORGE {config}: RecordCache 'SchemaCsvCache' heap used: 0 MB (total: 160.199 MB).
    INFO 12/28/13 23:33:04.621 UTC (1388273584621) FORGE {config}: RecordAdapter 'LoadSchemaCsv': Finished
    INFO 12/28/13 23:33:04.621 UTC (1388273584621) FORGE {config}: JavaManipulator 'MappedSchemaCsv': Finished
    INFO 12/28/13 23:33:04.621 UTC (1388273584621) FORGE {baseline}: Starting stats clock at 'Sat Dec 28 17:33:04 2013'.
    INFO 12/28/13 23:33:04.621 UTC (1388273584621) FORGE {baseline}: Starting record pipeline 'Configuration Generator'.
    INFO 12/28/13 23:33:04.621 UTC (1388273584621) FORGE {baseline}: Time: 0 seconds (0 cpu seconds).  Units parsed: 0
    INFO 12/28/13 23:33:05.561 UTC (1388273585561) FORGE {baseline}: (AdapterRunner): Adapter class: com.endeca.esource.springadapter.SpringDelegateAdapter
    ERROR 12/28/13 23:33:05.562 UTC (1388273585562) FORGE {baseline}: (AdapterRunner): org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'configurationAdapter' defined in class path resource [config/script/fcm.context.xml]: Cannot resolve reference to bean 'forgeConfigurationManager' while setting bean property 'forgeConfigurationManager'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'forgeConfigurationManager' defined in class path resource [config/script/fcm.context.xml]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [com.endeca.itl.fcm.ForgeConfigurationManager]: Constructor threw exception; nested exception is java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory com.endeca.edf.adapter.AdapterException: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'configurationAdapter' defined in class path resource [config/script/fcm.context.xml]: Cannot resolve reference to bean 'forgeConfigurationManager' while setting bean property 'forgeConfigurationManager'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'forgeConfigurationManager' defined in class path resource [config/script/fcm.context.xml]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [com.endeca.itl.fcm.ForgeConfigurationManager]: Constructor threw exception; nested exception is java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory at com.endeca.esource.springadapter.SpringDelegateAdapter.loadApplicationContext(SpringDelegateAdapter.java:121) at com.endeca.esource.springadapter.SpringDelegateAdapter.loadDelegateAdapter(SpringDelegateAdapter.java:73) at com.endeca.esource.springadapter.SpringDelegateAdapter.execute(SpringDelegateAdapter.java:60) at com.endeca.edf.adapter.AdapterRunner.run(AdapterRunner.java:168) at com.endeca.edf.adapter.AdapterRunner.main(AdapterRunner.java:43) Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'configurationAdapter' defined in class path resource [config/script/fcm.context.xml]: Cannot resolve reference to bean 'forgeConfigurationManager' while setting bean property 'forgeConfigurationManager'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'forgeConfigurationManager' defined in class path resource [config/script/fcm.context.xml]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [com.endeca.itl.fcm.ForgeConfigurationManager]: Constructor threw exception; nested exception is java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:275) at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveValueIfNecessary(BeanDefinitionValueResolver.java:104) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyPropertyValues(AbstractAutowireCapableBeanFactory.java:1245) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1010) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:472) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409) at java.security.AccessController.doPrivileged(Native Method) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380) at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264) at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222) at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261) at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185) at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164) at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:429) at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:728) at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:380) at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:139) at org.springframework.context.support.ClassPathXmlApplicationContext.<init>(ClassPathXmlApplicationContext.java:93) at com.endeca.esource.springadapter.SpringDelegateAdapter.loadApplicationContext(SpringDelegateAdapter.java:119) ... 4 more Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'forgeConfigurationManager' defined in class path resource [config/script/fcm.context.xml]: Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [com.endeca.itl.fcm.ForgeConfigurationManager]: Constructor threw exception; nested exception is java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateBean(AbstractAutowireCapableBeanFactory.java:883) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:839) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:440) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory$1.run(AbstractAutowireCapableBeanFactory.java:409) at java.security.AccessController.doPrivileged(Native Method) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:380) at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:264) at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222) at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:261) at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:185) at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:164) at org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:269) ... 22 more Caused by: org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [com.endeca.itl.fcm.ForgeConfigurationManager]: Constructor threw exception; nested exception is java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:115) at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:61) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateBean(AbstractAutowireCapableBeanFactory.java:877) ... 33 more Caused by: java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory at com.endeca.itl.fcm.ForgeConfigurationManager.<init>(ForgeConfigurationManager.java:226) 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 org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:100) ... 35 more Caused by: java.lang.ClassNotFoundException: org.slf4j.LoggerFactory at java.net.URLClassLoader$1.run(URLClassLoader.java:202) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:190) at java.lang.ClassLoader.loadClass(ClassLoader.java:306) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301) at java.lang.ClassLoader.loadClass(ClassLoader.java:247) ... 41 more
    ERROR 12/28/13 23:33:06.568 UTC (1388273586568) FORGE {baseline}: The java process evaluating the java manipulator class 'com.endeca.esource.springadapter.SpringDelegateAdapter' failed. Check the file '/home/oraten/Software/endeca/apps/CRS/./logs/forges/ConfigurationGeneratorForge/Edf.Pipeline.RecordPipeline.JavaManipulator.ConfigurationAdapter.log' for more information.
    INFO 12/28/13 23:33:06.568 UTC (1388273586568) FORGE {baseline}: Processed 0 records.
    INFO 12/28/13 23:33:06.568 UTC (1388273586568) FORGE {baseline}: Stopping stats clock at 'Sat Dec 28 17:33:06 2013'.
    INFO 12/28/13 23:33:06.568 UTC (1388273586568) FORGE {baseline}: Finished processing records:
    INFO 12/28/13 23:33:06.568 UTC (1388273586568) FORGE {baseline}: Time: 1 seconds (0 cpu seconds).  Units parsed: 0
    INFO 12/28/13 23:33:06.568 UTC (1388273586568) FORGE {baseline}: Finishing record pipeline.
    INFO 12/28/13 23:33:06.568 UTC (1388273586568) FORGE {baseline}: RecordCache 'SchemaRecordStoreCache': Finished
    INFO 12/28/13 23:33:06.568 UTC (1388273586568) FORGE {baseline}: RecordCache 'SchemaCsvCache': Finished
    INFO 12/28/13 23:33:06.569 UTC (1388273586569) FORGE {baseline}: RecordAssembler 'JoinSchemaCsvWithSchemaRecordStore': Finished
    INFO 12/28/13 23:33:06.569 UTC (1388273586569) FORGE {baseline}: JavaManipulator 'JoinedSchemaFeedWithRemappedSchemaCsv': Finished
    INFO 12/28/13 23:33:06.569 UTC (1388273586569) FORGE {baseline}: JavaManipulator 'LoadDimValsRecordStore': Finished
    INFO 12/28/13 23:33:06.569 UTC (1388273586569) FORGE {baseline}: RecordAdapter 'LoadDimValsCsv': Finished
    INFO 12/28/13 23:33:06.569 UTC (1388273586569) FORGE {baseline}: RecordAssembler 'JoinDimValFeeds': Finished
    INFO 12/28/13 23:33:06.569 UTC (1388273586569) FORGE {baseline}: JavaManipulator 'LoadPrecedenceRulesRecordStore': Finished
    INFO 12/28/13 23:33:06.569 UTC (1388273586569) FORGE {baseline}: RecordAdapter 'LoadPrecedenceRulesCsv': Finished
    INFO 12/28/13 23:33:06.569 UTC (1388273586569) FORGE {baseline}: RecordAssembler 'JoinPrecedenceRuleFeeds': Finished
    INFO 12/28/13 23:33:06.570 UTC (1388273586570) FORGE {baseline}: JavaManipulator 'ConfigurationAdapter': Finished
    ERROR 12/28/13 23:33:06.570 UTC (1388273586570) FORGE {baseline}: Forge failed with 6 errors and 18 warnings.
    So to test out, I've swapped the value of FORGE_CLASSPATH (config/script/environment.properties) with the classpath used by runcommand and now I see that slf4j errors are gone, but now I see Adapter class not found error...
    INFO 12/28/13 23:54:30.947 UTC (1388274870947) FORGE {config}: forge 6.1.4.734339 ("i86pc-linux")
    INFO 12/28/13 23:54:30.947 UTC (1388274870947) FORGE {config}: Copyright 2001-2012 Oracle Endeca Technologies, Inc.
    INFO 12/28/13 23:54:30.947 UTC (1388274870947) FORGE {config}: Command Line: /home/oraten/Software/endeca/PlatformServices/6.1.4/bin/forge -vi --javaClasspath /home/oraten/Software/endeca/PlatformServices/6.1.4/lib/java/eacclient.jar:/home/oraten/Software/endeca/PlatformServices/6.1.4/lib/java/jaxrpc.jar:/home/oraten/Software/endeca/PlatformServices/6.1.4/lib/java/mail.jar:/home/oraten/Software/endeca/PlatformServices/6.1.4/lib/java/saaj.jar:/home/oraten/Software/endeca/PlatformServices/6.1.4/lib/java/activation.jar:/home/oraten/Software/endeca/PlatformServices/6.1.4/lib/java/axis.jar:/home/oraten/Software/endeca/PlatformServices/6.1.4/lib/java/commons-discovery-0.2.jar:/home/oraten/Software/endeca/PlatformServices/6.1.4/lib/java/commons-logging-1.0.4.jar:./../config/script:./../config/lib/java/bsh-2.0b4.jar:./../config/lib/java/casStubs.jar:./../config/lib/java/commons-codec-1.5.jar:./../config/lib/java/commons-io-1.4.jar:./../config/lib/java/commons-lang-2.4.jar:./../config/lib/java/eacComponents-3.1.2.jar:./../config/lib/java/eacHandlers-3.1.2.jar:./../config/lib/java/eacToolkit-3.1.2.jar:./../config/lib/java/httpclient-4.1.jar:./../config/lib/java/httpcore-4.1.jar:./../config/lib/java/httpmime-4.1.1.jar:./../config/lib/java/ifdi-dt-utilities-1.0.0.20121016.jar:./../config/lib/java/ifdi-fcm-1.0.0.20121016.jar:./../config/lib/java/jdom-1.1.jar:./../config/lib/java/spring-2.5.6.jar:./../config/lib/java/spring-delegate-adapter-1.0.1.jar:./../config/lib/java/*.zip:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//asm-3.3.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//commons-cli-1.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//commons-codec-1.3.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//commons-httpclient-3.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//commons-io-1.4.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//commons-lang-2.4.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//cxf-api-2.6.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//cxf-rt-bindings-soap-2.6.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//cxf-rt-bindings-xml-2.6.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//cxf-rt-core-2.6.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//cxf-rt-databinding-jaxb-2.6.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//cxf-rt-frontend-jaxws-2.6.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//cxf-rt-frontend-simple-2.6.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//cxf-rt-transports-http-2.6.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//cxf-rt-ws-addr-2.6.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//cxf-rt-ws-policy-2.6.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//dom4j-1.6.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//FastInfoset-1.2.7.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//google-collections-1.0.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//hsqldb-2.2.5-09042011.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//http-client-11.1.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//httpclient-4.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//httpcore-4.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//itl-api-common-3.1.2.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//itl-cmd-3.1.2.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//itl-common-3.1.2.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//jaxb-impl-2.1.12.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//jaxen-1.1.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//jcl-over-slf4j-1.5.2.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//jul-to-slf4j-1.5.2.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//log4j-1.2.15.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//neethi-3.0.2.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//orawsdl-11.1.1-PATCH-13336266.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//recordstore-api-3.1.2.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//recordstore-cmd-3.1.2.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//service-locator-3.1.2.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//slf4j-api-1.5.2.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//slf4j-log4j12-1.5.2.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//spring-2.5.6.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//stax2-api-3.1.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//woodstox-core-asl-4.1.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//xercesImpl-2.9.1.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//xml-resolver-1.2.jar:/home/oraten/Software/endeca/CAS/3.1.2.1/lib/recordstore-cmd//xmlschema-core-2.0.2.jar::./config/lib/java/ifdi-fcm-1.0.0.20121016.jar --javaArgument -DENDECA_PROJECT_NAME=CRS --javaArgument -Dendeca.project.dir=/home/oraten/Software/endeca/apps/CRS --javaArgument -Xmx1024m --javaArgument -Djava.util.logging.config.file=./config/script/logging.properties --logDir /home/oraten/Software/endeca/apps/CRS/./logs/forges/ConfigurationGeneratorForge --outputPrefix CRS --inputDir /home/oraten/Software/endeca/apps/CRS/data/processing --outputDir /home/oraten/Software/endeca/apps/CRS/data/processing --stateDir /home/oraten/Software/endeca/apps/CRS/state --numPartitions 1 --tmpDir /home/oraten/Software/endeca/apps/CRS/data/temp -o /home/oraten/Software/endeca/apps/CRS/logs/forges/ConfigurationGeneratorForge/ConfigurationGeneratorForge.log /home/oraten/Software/endeca/apps/CRS/config/pipeline/configurationGenerator.epx
    INFO 12/28/13 23:54:30.948 UTC (1388274870948) FORGE {config}: Initialized cURL, version: libcurl/7.16.4 OpenSSL/0.9.8 zlib/1.2.3
    INFO 12/28/13 23:54:30.952 UTC (1388274870952) FORGE {config}: Creating pipeline 'Configuration Generator'.
    INFO 12/28/13 23:54:30.965 UTC (1388274870965) FORGE {config}: Starting: JavaManipulator 'LoadSchemaRecordStore'.
    INFO 12/28/13 23:54:30.965 UTC (1388274870965) FORGE {config}: Starting: RecordCache 'SchemaRecordStoreCache'.
    INFO 12/28/13 23:54:30.965 UTC (1388274870965) FORGE {config}: DelimitedInputStream (URL '/home/oraten/Software/endeca/apps/CRS/config/api_input/schema.csv'): generating header information from first line of data: 'attribute.name,attribute.type,attribute.display_name,attribute.offline_sort,attribute.record_filterable,attribute.rollup_key,attribute.search_interface,attribute.search.searchable,attribute.search.wildcard,attribute.show_with_list ,attribute.show_with_record,attribute.source_name,attribute.property.data_type,attribute.dimension.autogen,attribute.dimension.compute_refinement_counts,attribute.dimension.dyn_ranking_enabled,attribute.dimension.dyn_ranking_refinement_count,attribute.dimension.dyn_ranking_more,attribute.dimension.dyn_ranking_sort,attribute.dimension.hidden,attribute.dimension.hierarchy_dim_search,attribute.dimension.hierarchy_record_search,attribute.dimension.multiselect_type,attribute.dimension.refinements_sort_order sku.margin,property,,true,,,,,,,,sku.margin,decimal,,,,,,,,,,, '.
    WARN 12/28/13 23:54:30.965 UTC (1388274870965) FORGE {config}: Column 26 has empty name
    WARN 12/28/13 23:54:30.965 UTC (1388274870965) FORGE {config}: Column 28 has empty name
    WARN 12/28/13 23:54:30.965 UTC (1388274870965) FORGE {config}: Column 29 has empty name
    WARN 12/28/13 23:54:30.965 UTC (1388274870965) FORGE {config}: Column 30 has empty name
    WARN 12/28/13 23:54:30.965 UTC (1388274870965) FORGE {config}: Column 31 has empty name
    WARN 12/28/13 23:54:30.965 UTC (1388274870965) FORGE {config}: Column 32 has empty name
    WARN 12/28/13 23:54:30.966 UTC (1388274870966) FORGE {config}: Column 33 has empty name
    WARN 12/28/13 23:54:30.966 UTC (1388274870966) FORGE {config}: Column 34 has empty name
    WARN 12/28/13 23:54:30.966 UTC (1388274870966) FORGE {config}: Column 37 has empty name
    WARN 12/28/13 23:54:30.966 UTC (1388274870966) FORGE {config}: Column 38 has empty name
    WARN 12/28/13 23:54:30.966 UTC (1388274870966) FORGE {config}: Column 39 has empty name
    WARN 12/28/13 23:54:30.966 UTC (1388274870966) FORGE {config}: Column 40 has empty name
    WARN 12/28/13 23:54:30.966 UTC (1388274870966) FORGE {config}: Column 41 has empty name
    WARN 12/28/13 23:54:30.966 UTC (1388274870966) FORGE {config}: Column 42 has empty name
    WARN 12/28/13 23:54:30.966 UTC (1388274870966) FORGE {config}: Column 43 has empty name
    WARN 12/28/13 23:54:30.966 UTC (1388274870966) FORGE {config}: Column 44 has empty name
    WARN 12/28/13 23:54:30.966 UTC (1388274870966) FORGE {config}: Column 45 has empty name
    WARN 12/28/13 23:54:30.966 UTC (1388274870966) FORGE {config}: Column 46 has empty name
    INFO 12/28/13 23:54:30.967 UTC (1388274870967) FORGE {config}: RecordAdapter 'LoadSchemaCsv': opened '/home/oraten/Software/endeca/apps/CRS/config/api_input/schema.csv' for input
    INFO 12/28/13 23:54:30.967 UTC (1388274870967) FORGE {config}: Starting: RecordAdapter 'LoadSchemaCsv'.
    INFO 12/28/13 23:54:30.967 UTC (1388274870967) FORGE {config}: Starting: JavaManipulator 'MappedSchemaCsv'.
    INFO 12/28/13 23:54:30.967 UTC (1388274870967) FORGE {config}: Starting: RecordCache 'SchemaCsvCache'.
    INFO 12/28/13 23:54:30.967 UTC (1388274870967) FORGE {config}: Starting: RecordAssembler 'JoinSchemaCsvWithSchemaRecordStore'.
    INFO 12/28/13 23:54:30.967 UTC (1388274870967) FORGE {config}: Starting: JavaManipulator 'JoinedSchemaFeedWithRemappedSchemaCsv'.
    INFO 12/28/13 23:54:30.967 UTC (1388274870967) FORGE {config}: Starting: JavaManipulator 'LoadDimValsRecordStore'.
    INFO 12/28/13 23:54:30.967 UTC (1388274870967) FORGE {config}: DelimitedInputStream (URL '/home/oraten/Software/endeca/apps/CRS/config/api_input/dimension_values.csv'): generating header information from first line of data: 'dimval.dimension_spec,dimval.spec,dimval.display_name,dimval.parent_spec,dimval.match_type,dimval.display_order,dimval.classify_synonym,dimval.search_synonym,dimval.range.comparison_type,dimval.range.lower_bound,dimval.range.lower_bound_inclusive,dimval.range.upper_bound,dimval.range.upper_bound_inclusive '.
    INFO 12/28/13 23:54:30.967 UTC (1388274870967) FORGE {config}: RecordAdapter 'LoadDimValsCsv': opened '/home/oraten/Software/endeca/apps/CRS/config/api_input/dimension_values.csv' for input
    INFO 12/28/13 23:54:30.968 UTC (1388274870968) FORGE {config}: Starting: RecordAdapter 'LoadDimValsCsv'.
    INFO 12/28/13 23:54:30.968 UTC (1388274870968) FORGE {config}: Starting: RecordAssembler 'JoinDimValFeeds'.
    INFO 12/28/13 23:54:30.968 UTC (1388274870968) FORGE {config}: Starting: JavaManipulator 'LoadPrecedenceRulesRecordStore'.
    INFO 12/28/13 23:54:30.968 UTC (1388274870968) FORGE {config}: DelimitedInputStream (URL '/home/oraten/Software/endeca/apps/CRS/config/api_input/precedence_rules.csv'): generating header information from first line of data: 'precedence.source_dimension_name,precedence.source_dimval_spec,precedence.target_dimension_name,precedence.type '.
    INFO 12/28/13 23:54:30.968 UTC (1388274870968) FORGE {config}: RecordAdapter 'LoadPrecedenceRulesCsv': opened '/home/oraten/Software/endeca/apps/CRS/config/api_input/precedence_rules.csv' for input
    INFO 12/28/13 23:54:30.968 UTC (1388274870968) FORGE {config}: Starting: RecordAdapter 'LoadPrecedenceRulesCsv'.
    INFO 12/28/13 23:54:30.968 UTC (1388274870968) FORGE {config}: Starting: RecordAssembler 'JoinPrecedenceRuleFeeds'.
    INFO 12/28/13 23:54:30.968 UTC (1388274870968) FORGE {config}: Starting: JavaManipulator 'ConfigurationAdapter'.
    INFO 12/28/13 23:54:30.969 UTC (1388274870969) FORGE {config}: RecordCache 'SchemaRecordStoreCache (LoadSchemaRecordStore)' loading records.
    INFO 12/28/13 23:54:31.242 UTC (1388274871242) FORGE {config}: (AdapterRunner): Adapter class: com.endeca.esource.springadapter.SpringDelegateAdapter
    ERROR 12/28/13 23:54:31.243 UTC (1388274871243) FORGE {config}: (AdapterRunner): Adapter class not found: 'com.endeca.esource.springadapter.SpringDelegateAdapter'. Check that the classname and classpath are correct. com.endeca.edf.adapter.AdapterRunner$LoadAdapterException: Adapter class not found: 'com.endeca.esource.springadapter.SpringDelegateAdapter'. Check that the classname and classpath are correct. at com.endeca.edf.adapter.AdapterRunner.loadAdapter(AdapterRunner.java:320) at com.endeca.edf.adapter.AdapterRunner.run(AdapterRunner.java:162) at com.endeca.edf.adapter.AdapterRunner.main(AdapterRunner.java:43) Caused by: java.lang.ClassNotFoundException: com.endeca.esource.springadapter.SpringDelegateAdapter at java.net.URLClassLoader$1.run(URLClassLoader.java:202) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:190) at java.lang.ClassLoader.loadClass(ClassLoader.java:306) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301) at java.lang.ClassLoader.loadClass(ClassLoader.java:247) at java.

    This forum is for Endeca Information Discovery, which is a different product. For the ATG/Endeca product, I think the forum you want is:
    Technical Questions

  • Bridge will not open after upgrading Reason: Incompatible library version OSX 10.6.8

    I decided I would upgrade Bridge CC today, and it turns out that was a very bad idea. I have a ton of work and Bridge will not open. I can't revert back to the older bridge CC.
    PLEASE HELP!!!
    Reason: Incompatible library version: dvanet requires version 7.0.0 or later, but libcurl.4.dylib provides version 6.0.0

    I decided I would upgrade Bridge CC today, and it turns out that was a very bad idea. I have a ton of work and Bridge will not open. I can't revert back to the older bridge CC.
    PLEASE HELP!!!
    Reason: Incompatible library version: dvanet requires version 7.0.0 or later, but libcurl.4.dylib provides version 6.0.0

Maybe you are looking for

  • Kernel options to make a laptop cooler (less warm)

    With just chromium with 6 tabs open (no flash) my Dell E5400 is cruising at 60ºC--70ºC. Other than chroium there is MonsterWM, dzen2 and netcfg in the background. So nothing too cpu intensive. With which options should I compile my kernel to make my

  • How can i delete an uploaded file?

    I uploaded a ppt file to share in a presentation, but i can't delete him. Who helps?

  • E-mail not displaying in order or new to old.

    I am using Safari 5.1.10 and all of a sudden my e-mail is displaying out of order of date. Old e-mails are mixing in with new ones. How do I fix this?

  • Hp HD 2200 Webcam lagging, can't find drivers for it

    Hi, I have a Hp HD 2200 webcam and it lags really badly and doesn't seem to be outputting full 720p (as advertised). Thanks in advanced This question was solved. View Solution.

  • Interactive Region - set filter automatically

    Hi all, I've a small problem ... I've a database link to an MSSQL Server. I need to query some data from there with an regular expression. First I created a view in my Oracle database to fetch the data from MSSQL. In ApEx I'm using the view to show t