Library -lc: not found when compiling ncurses 5.7 in solaris 10

Hi,
I'm using Solaris 10 x86_64 and I am having problems compiling ncurses 5.7. This is the error message when I try to execute make:
gcc ../objects/tic.o ../objects/dump_entry.o -I../progs -I../../progs -DHAVE_CONFIG_H -I../../progs/../include -I. -I../include -D__EXTENSIONS__ -D_FILE_OFFSET_BITS=64 -DNDEBUG -I/usr/local/include/ncurses -O2 --param max-inline-insns-single=1200 -static -L../lib -lncurses -L../lib -lncurses -dynamic   -o tic
ld: fatal: library -lc: not found
ld: fatal: File processing errors. No output written to tic
collect2: ld returned 1 exit status
make[1]: *** [tic] Error 1
make[1]: Leaving directory `/Documents/ncurses-5.7/ncurses-5.7/objdir/progs'
make: *** [all] Error 2
I've read that this error happens because you cannot statically compile with the c library in Solaris and that this is not exactly an ncurses bug. I am quite new to Solaris and I do not understand this entirely? Can anyone help me fix this? And perhaps give some explanation as well?
Your help would be much appreciated.

I'm not familiar with all the variations here, but I suspect gcc may be erroring out saying that it doesn't have a static copy of libc, Correct, from the truss output:
7060:     open("/opt/local/lib/libc.a", O_RDONLY)          Err#2 ENOENT
7060:     open("/usr/sfw/lib/libc.a", O_RDONLY)          Err#2 ENOENT
7060:     open("../lib/libc.a", O_RDONLY)               Err#2 ENOENT
7060:     open("../lib/libc.a", O_RDONLY)               Err#2 ENOENT
7060:     open("/usr/sfw/lib/gcc/i386-pc-solaris2.11/3.4.3/libc.a", O_RDONLY) Err#2 ENOENT
7060:     open("/usr/sfw/lib/gcc/i386-pc-solaris2.11/3.4.3/../../../../i386-pc-solaris2.11/lib/libc.a", O_RDONLY) Err#2 ENOENT
7060:     open("/usr/sfw/lib/gcc/i386-pc-solaris2.11/3.4.3/../../../libc.a", O_RDONLY) Err#2 ENOENT
7060:     open("/usr/ccs/lib/libc.a", O_RDONLY)          Err#2 ENOENT
7060:     open("/lib/libc.a", O_RDONLY)               Err#2 ENOENT
7060:     open("/usr/lib/libc.a", O_RDONLY)          Err#2 ENOENT
7060:     open("/usr/sfw/lib/libc.a", O_RDONLY)          Err#2 ENOENT
# find / -name libc.a
There's also a possibility of problems with templates:
7058:     access("/usr/ccs/bin/ld.rpo", R_OK)          Err#2 ENOENT
7058:     access("P,/usr/ccs/lib:/lib:/usr/lib:/usr/sfw/lib.rpo", R_OK) Err#2 ENOENT
7058:     access("/usr/ccs/lib:/lib:/usr/lib:/usr/sfw/lib.rpo", R_OK) Err#2 ENOENT
7058:     access("tic.rpo", R_OK)                    Err#2 ENOENT
7058:     access("/usr/lib/crt1.rpo", R_OK)          Err#2 ENOENT
7058:     access("/usr/lib/crti.rpo", R_OK)          Err#2 ENOENT
7058:     access("/usr/lib/values-Xa.rpo", R_OK)          Err#2 ENOENT
7058:     access("/usr/sfw/lib/gcc/i386-pc-solaris2.11/3.4.3/crtbegin.rpo", R_OK) Err#2 ENOENT
7058:     access("../objects/tic.rpo", R_OK)          Err#2 ENOENT
7058:     access("../objects/dump_entry.rpo", R_OK)     Err#2 ENOENT
7058:     access("/usr/sfw/lib/gcc/i386-pc-solaris2.11/3.4.3/crtend.rpo", R_OK) Err#2 ENOENT
7058:     access("/usr/lib/crtn.rpo", R_OK)          Err#2 ENOENT
while Studio 12 may be falling back to dynamic linkages for libraries where it doesn't have a static copy.Studio 12
truss -f -o /tmp/out gmake
grep libc.a out
all show ENOENT
There shouldn't be a problem with having the application libraries static, but the OS libraries will not be.:-)
alan

Similar Messages

  • Python headers not found when compiling gimp2.7

    Hello. I am trying to compile gimp 2.7 and when I run configure I get an error "python headers not found". I've read that in arch you get the headers together with the rest of the package so there is no need for a -dev package. I have installed python several times with pacman, but the problem persists.

    Edit the PKGBUILD and insert this:
    PYTHON=python2 PYTHON_VERSION=2.7
    infront of the "./configure" part. So it looks like this:
    PYTHON=python2 PYTHON_VERSION=2.7 ./configure --prefix=/usr --- snip ---
    happy compiling

  • Classes not found when compiling for jdk1.3.1_01 on red hat 7.2

    I have just installed jdk1.3.1_01 (rpm) on linux red hat 7.2
    I have written a small program to test, however, the compiler isn't able to locate the classes.
    import javax.swing.*;
    public class JTest {
    public static void main( String args[] )
    JOptionPane.showMessageDialog( null, "Hello", "Test Dialog",
    JOptionPane.INFORMATION_MESSAGE );
    System.exit( 0 );
    When compiled it generates the error:
    JTest.java:10: error:Variable "JOptionPane" is not defined in current context
    I have the path and classpath set to what I think are the correct directory paths.
    Any advice would be much appreciated!
    Thanks..

    Sorry, typo in the classpath... but now when I compile
    I get error: "segmentation fault" then nothing else.
    This also happens when I execute a precompiled app (eg
    "java OldApp").This is to do with GLIBC-2.2, I believe. :/ (Pointed out by Niteen. :)
    "ulimit -s 2048" should fix this. Adding this line to /etc/profile or your ~/.profile shall automatically run this command every log in.
    Bhav

  • Java.lang symbols not found when compiling package classes

    I have a set of classes that I have wrapped up in a package. The package name and
    directory structure follow the standard required for each. These classes contain many
    java.lang.Math functions and java.lang.Double calls.
    Am I correct in that the java.lang functions will be imported automatically? When I
    compile a class that is in the package, it looks for the Math.pow (for example)
    function in the package instead of java.lang. I have tried putting the following include
    at the top:
    include java.lang.*;and I still get the "cannot resolve symbol" error. Only when I use
    include java.lang.Math;
    include java.lang.Double;does it compile properly. Is this indicative of a problem with my classpath? It is
    currently set to look in whatever the current directory is, the directory with src.jar,
    and my dev directory that contains the package I am working on.
    Please advise! Thanks in advance!
    Rodman

    Thanks for the quick reply! I looked in the package directory and found the Math.java and
    Double.java files. I'm not sure why they were there. Thanks again!

  • Classpath set BUT still javax.servlet package not found when compiling

    Hello,
    I'm trying to compile a servlet and use tomcat 5 to run it. After I set the classpath to include the servlet-api.jar file, the compiler still tells me it cannot find package. I'm not sure what else to do. Please Help.
    Thanks Smoker

    Then you haven't set the actual classpath that the compiler is using. Just because you say you have set the 'classpath' doesn't mean you've properly told the compiler that.
    Such as, what did you do, set the CLASSPATH environment variable? Don't do that - ever. If that's what you did, and you're using an IDE, the IDE project is ignoring that environment variable anyway. You have to configure the project appropriately (which for one thing sets up the 'classpath' it uses), which varies depending on the IDE. That's an IDE question though, not a Java one.

  • Ld: fatal: library -lthread: not found

    My project is a multithreaded application that requires compiling c++
    programs using orbix, roguewave libraries with some additional static
    libraries we developed. However, during linking. I am getting fatal
    errors:
    ld: fatal: library -lthread: not found
    ld: fatal: File processing errors. No output written to a.out
    *** Error code 1
    I am using Makefiles to compile my programs. To compile, using Sun
    Workshop C++ 5.0 compiler, I am using a number of flags like this:
    CC -c �.. -mt -DREENTRANT -I(header files -orbix, rw, my headers�)
    -Bstatic �..-Bdynamic�.. xx.cpp -o xx.o
    And to link, its
    CC -mt -DREENTRANT -Bdynamic (orbix, rw, Pthread libs) -Bstatic
    (My_libs.a) -Bstatic (My_objects)-o xx.exe
    This could be due to some kind of conflict between the dynamic and
    static parts - but I have no clue. Could you suggest how I could solve this problem? How would you explain this?
    Thanks,
    -Jacob

    /* Please look at the following simple program */
    #include <iostream>
    #include <fstream>
    #include "netdb.h"
    using namespace std;
    int
    main()
         fstream s;
         cout << "Hello World" << endl;
         cout << __lock;
         cout << __unlock;
         struct servent* se;
         se = getservbyname("control_test", "tcp");
    Compiling the above code with one of the following sequences of commands
              # CC -c -g -mt main.cc ; CC -mt -lsocket main.o
         or     # CC -c -g -O0 -mt main.cc ; CC -xnolib -mt -lsocket main.o -lCstd -lCrun -lm -lw -lcx -lc -lthread
    on a Solaris 7, gives me an executable which stale locks immediately
    in the beginning of execution, when the fstream object is created.
    I first observed this error in a more complex and really multithreaded
    programm where the fstream object was created dynamically in one
    subthread.
    I'm short before deciding to drop using the fstream and work out
    the project with the old stream interface. Please note that I'm using
    ISO ANSI representation of streams in this code that means it
    is a std::basic_fstream<char ... > which locks the __stream_mutex
    inherited by ios_base. The executable breaks exactly at the
    beginning of the basic_ios::init function as described in
    /opt/SUNWspro/SC5.0/include/ios.cc
    I hope that someone previously encountered and probably solved this
    problem (not worked around please).
    CU AXEL

  • Errors were found when compiling the workflow. The workflow files were saved but cannot be run.

    Greetings All,
    I am having issues with a SharePoint Designer workflow.  This is a SharePoint 2013 environment, I'm using SharePoint Designer 2013 and working on a SharePoint 2010 workflow.  I'm developing this as a SharePoint 2010 workflow because I need to do
    impersonation.
    The environment and workflow have been running, in the past week, without issue.  I went to add a couple steps and now I cannot publish the workflow.  While in SharePoint Designer, I receive the error:
    "Errors were found when compiling the workflow.  The workflow files were saved but cannot be run."  When I click the Advanced button on the error dialog, the message is "Unexpected error on server associating the workflow." 
    That is all the error information I have available; nothing is in the log files.
    I have investigated this error and tried the following:
    Cleared the SharePoint Designer cache.
    The WebApp.UserDefinedWorkflowMaximumComplexity was at 7000 so I increased it to 10000.  Restarted the servers (which may not have been necessary) and tried again receiving the same error.  I then increased it to 30000 with the same error result.
    Since this is a large workflow, I tried created a workflow with a single action, write to workflow log, with the same error results.
    I reboot the servers and try again and now I can publish the small test workflow but not the original.  However, neither will run.  When I attempt to manually run the small test workflow on an item, I get an error: "Sorry something went wrong.
    An unexpected error occurs.  I checked the log files for the correlation id and nothing, nothing was logged for the error. ~arg~
    Also, now no workflows can be published in this web app.  Not just the one I was working on but none of them!
    Does anyone have a clue what has happened to the SharePoint 2010 workflow service?  Or some suggestions for me to try?
    Thank you in advance for your help!
    Bob Mixon

    try these links:
    http://sp2013.pro/2013/04/solution-errors-were-found-when-compiling-the-workflow-the-workflow-files-were-saved-but-cannot-be-run-cannot-set-unknown-member/
    http://code2care.org/pages/sharepoint-errors-were-found-when-compiling-the-workflow-the-workflow-files-were-saved-but-cannot-be-run/
    http://sharepoint.stackexchange.com/questions/119909/sharepoint-designer-error-errors-were-found-when-compiling-the-workflow
    http://stackoverflow.com/questions/26413125/errors-were-found-when-compiling-the-workflow-in-sharepoint-2013
    Hi Sagar,
    I appreciate it but if you see my original post, this is a SharePoint 2010 workflow that cannot be published; which has now caused all SharePoint 2010 workflows in the same web app to error.
    Your first link is specific to SharePoint 2013 workflows.
    Your second link refers to the UserDefinedWorkflowMaximumComplexity.  If you read my original post, I've already tried this and I've tried to publish a small (single activity) workflow.
    Your third link also refers to large workflows with many approval activities.  My workflow doesn't contain any approval activities.
    And you fourth link refers to 2013 workflows not 2010.
    My issue is with publishing and running a SharePoint 2010 workflow in SharePoint 2013.
    Thank you...

  • Your photo library was not found. Do you want to find your iPhoto Library?

    Your photo library was not found. Do you want to find your iPhoto Library?
    Do you want to create or find?
    This is the message I get when I try to open iphoto.
    1. this is the first time since I've used iphoto that this has happened.
    2. I would like to know why.
    3. I am not sure which choice to make.
    4. recent changes involving photos would be deleting several photos....I used a program called Grand Perspective and began to delete photos from there
    5. although I'm interested in fixing this problem, I would like to learn more about 'libraries' and the way iphoto works. Previous to owning a Mac, I used Picasa with my pc and I don't remember it using as much space on my hard drive. iphoto has a large number of duplicated photos of which I've been unable to resolve easily and it is approx. 60 G of space. I would like to have access to my images (30,000) through external hard drives but not necessarily have them all on my mac. I believe that is what Picasa does. I'm using the new Picasa for Mac but want to continue to use iphoto as well.
    If I did not form this question well enough, please let me know how to clarify. I'm trying to remedy this while answering a million Why? why? Why? questions from my 4 year old!
    Thank you.
    iphoto 7.1.5

    I would like to learn more about 'libraries'
    Step one is to learn about iPhoto - it is not a photo viewer like Picasa - it is a photo manager and uses an SQL database - the content and structure of this database are critical (as with any database application) to the operation of iPhoto - any changes made to either the content or structure of the database using external programs including (especially) the finder can corrupt the database and cause you to lose data
    recent changes involving photos would be deleting several photos....I used a program called Grand Perspective and began to delete photos from there
    This is how you destroyed your iPhoto library and made it unusable
    As to space - the iPhoto database contains at a minimum a copy of the original photo (in the default and recommended operating environment) and a small thumbnail. When any modification to the photo is made a modified version is created so there might be three versions (no duplicates) of a photo within the iPhoto library - none of them are extraneous and none of them can be removed without corrupting the iPhoto library
    Once a photo is imported into iPhoto (assuming default settings which are strongly recommended) the original source photo outside of iPhoto can be archived, deleted or otherwise handles - iPhoto has no further need for it.
    The iPhoto library can be located on an external hard drive so long as that hard drive is always available when iPhoto is running
    In general it is not advised to run two different photo organizers against the same photos - so if you use both Picasa and iPhoto you are likely to create future problems (although Google claims it is possible - just remember that you can not successfully make any change of any sort to any photo with the iPhoto library using Picasa or any other program - if you only use Picasa to look at photos you may be ok - if you never make any mistakes
    As to your immediate problem - you have destroyed you iPhoto library by deleting files from it. If you want to use iPhoto you will have to start over - find the originals folder within the iPhoto library and launch iPhoto while depressing the option (alt) key and create a new library - import the photos from the originals folder into iPhoto and do not go inside the iPhoto library or modify the contents of the iPhoto library in the future.
    LN
    Message was edited by: LarryHN

  • Errors were found when compiling workflow in SharePoint Designer 2010

    Hello there,
    I've run into a interesting issue in SharePoint Designer 2010 when publishing a workflow. I now get the below error
    Normally when I get this message I simply clear the SharePoint Designer 2010 cache described in this
    article, however, in this case the issue still continued. Hence I started the process of trial and error and quickly realized that the Update Item action was the culprit. In this action I am updating approximately 70 columns. Currently, I have two such
    actions running in sequence. When I added the third Update Item action to do the same, I started getting this error.
    Has anyone else experienced this before? In the workflow I am currently working on I am going to have to using the Update Item action several times and update approximately 70 columns hence I am open to other ideas to do the same.
    Thanks in advance.

    Hi Entan Ming,
    Thanks for your reply, Hope you are aware that while we create any new workflow using SharePoint Designer 2013. There are two ways (We can say Platforms) to create the new workflow 1. SharePoint
    2010 and 2. SharePoint 2013.
    If I choose second one I. e SharePoint 2013, and try to create, save and publish workflow it`s working fine. But whenever I select option no. 1  i.e. SharePoint 2010  Platform to create
    the workflow, I am able to Create it , save it , but while I try to publish it I got an error:
    Errors were found when compiling the workflow. The workflow files were saved but cannot be run.
    When I click on Advance I got message:
    Unexpected error on server associating the workflow
    My question is that, I am not able to publish any workflow in SharePoint 2010 Platform, using SharePoint Designer 2013.  
    Before publishing a workflow, I click on ‘Check for errors’ button, there was no any error found.
    Thanks & Regards Mr. Bajirao Shinde

  • Errors were found when compiling the workflow

    My company has consolodated many SharePoint sites into one with many subsites to save money. I ported my existing libraries from theold site to the new site (Same version of SP). The workflows did not go with the libraries, as expected. I re-created each
    workflow, and every time have gotten the same error message: "Errors were found when compiling the workflow. The workflow files were saved but cannot run."
    When I click Advanced I see some variation of the following:
    (-1, -1) Compilation failed. Could not find file 'C:\Users\TEMP.*domain*\AppData\Local\Temp\ **and then a different .dll file every time'
    I have not seen any other examples of this online. For some, creating a new task and history list for the workflow allowed it to compile, but not always.

    Hi,
    According to your post, my understanding is that Errors are found when compiling the workflow.
    I recommend that you can check whether the file exists under the path 'C:\Users\TEMP.*domain*\AppData\Local\Temp\”.
    If it exists, you can create a silmple workflow to check whether it works.
    If it does work, you can add executionTimeout property in web.config file to increase the timeout interval(Make a copy of the web.config file before editing anything).
    For more information, please refer to:
    Manjuke's Blog: Fixed: SharePoint Designer Error - Unexpected error on server associating the workflow
    SharePoint Designer 2010 Errors were found when compiling the workflow. The workflow files were saved but cannot be run. Unexpected error on server associating the workflow.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Obant reports ORABPEL-00005 (collaxa library directory not found)

    Hi,
    I´m trying to deploy some tasks using obant and several build.xml´s. I´ve done this for dozen times now, but today I got an error message that says:
    build.xml:42: ORABPEL-00005
    Collaxa-Library-Verzeichnis nicht gefunden.
    Das angegebene BPM-Library-Verzeichnis "lib/" wurde nicht gefunden.
    Here a maybe-translation:
    build.xml:42: ORABPEL-00005
    Collaxa-Library-Directory not found
    The indicated BPM-Library-Directory "lib/" was not found
    Well, the funny thing is, that when I´m running "obant" from command-line everything works fine - but when I´m calling the it from another ant-script it fails. The corresponding line in build.xml points to the bpelc-task:
    <target name="main">
    <bpelc input="${basedir}/bpel.xml" rev="${rev}" deploy="${deploy}" />
    </target>
    I´ve inserted an <echo ... /> to get the values of those variables (basedir/rev/deploy) used and everything seems to be in order. Here´s how I call this build.xml.
    main/build.xml:
         <target name="deployBPELServices">
              <property name="deploy" id="deploy" value="testDomain"/>
              <ant dir="services/all" antfile="build.xml" target="all">
                   <reference refid="deploy"/>
              </ant>
         </target>
    main/services/all/build.xml:
    <property name="deploy" id="deploy" value="default"/>
    <property name="rev" value="1.0"/>
         <target name="BpelProcess1">
              <ant dir="${basedir}/../BpelProcess1/"/>
         </target>     
    <target name="all" depends="BpelProcess1"/>
    main/services/BpelProcess1/build.xml:
    <target name="main">
    <bpelc input="${basedir}/bpel.xml" rev="${rev}" deploy="${deploy}" />
    </target>
    Usualy I start the deployment by using "obant deployBPELServices", which fails. When I´m using "obant" directly from main/services/all it works flawless.
    Any ideas or suggestions?
    Thnx in advance,
    Max

    Hi Clemens,
    Yes, the sample´s build.xml were my reference on how to set up this whole thing. I did it this the very same procedure for the last year with 26 BPEL-processes and yesterday just added a new process and this happend. Nevertheless, also if I remove the changes made to the main build.xml it doesn´t work (tested on 2 systems). Well at least, obviously this is my fault, not BPEL´s :) Whatever, I succeeed with the following:
    Instead of using
    <target name="deployBPELServices">
    <property name="deploy" id="deploy" value="testDomain"/>
    <ant dir="services/all" antfile="build.xml" target="all">
    <reference refid="deploy"/>
    </ant>
    </target>
    I´m now doing it this way:
    <target name="deployBPELServices">
    <property name="deploy" id="deploy" value="testDomain"/>
    <exec dir="services/all" executable="cmd">
    <arg line="/c ${ORABPEL}/bin/obant.bat -Ddeploy=${deploy}"/>
    </exec>
    </target>
    ${ORABPEL} points to my BPEL installation.
    Thnx anyway :)
    Greetings,
    Max

  • Parent key 1393696 not found when adding child 1393727.

    By posting, I received this :
    An error in the system has occurred. Please contact the system administrator if the problem persists.
    type: java.lang.IllegalArgumentException
    java.lang.IllegalArgumentException: Parent key 1393696 not found when adding child 1393726.
    at com.jivesoftware.util.LongTree.addChild(LongTree.java:99)
    at com.jivesoftware.forum.database.DbTreeWalker.addChild(DbTreeWalker.java:233)
    at com.jivesoftware.forum.database.DbForumThread.addMessage(DbForumThread.java:617)
    at com.jivesoftware.forum.proxy.ForumThreadProxy.addMessage(ForumThreadProxy.java:145)
    at com.jivesoftware.forum.action.PostAction.createMessage(PostAction.java:1083)
    at com.jivesoftware.forum.action.PostAction.execute(PostAction.java:946)
    at com.jivesoftware.forum.action.PostAction.doPost(PostAction.java:666)
    at sun.reflect.GeneratedMethodAccessor110.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at com.opensymphony.xwork.DefaultActionInvocation.invokeAction(DefaultActionInvocation.java:300)
    at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:166)
    at com.opensymphony.xwork.interceptor.AroundInterceptor.intercept(AroundInterceptor.java:35)
    at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:164)
    at com.opensymphony.xwork.interceptor.AroundInterceptor.intercept(AroundInterceptor.java:35)
    at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:164)
    at com.opensymphony.xwork.interceptor.AroundInterceptor.intercept(AroundInterceptor.java:35)
    at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:164)
    at com.jivesoftware.forum.action.JiveExceptionInterceptor.intercept(JiveExceptionInterceptor.java:63)
    at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:164)
    at com.jivesoftware.base.action.JiveObjectLoaderInterceptor.intercept(JiveObjectLoaderInterceptor.java:56)
    at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:164)
    at com.opensymphony.xwork.interceptor.AroundInterceptor.intercept(AroundInterceptor.java:35)
    at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:164)
    at oracle.wocapps.forum.action.OracleLocaleInterceptor.intercept(OracleLocaleInterceptor.java:74)
    at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:164)
    at com.opensymphony.xwork.interceptor.AroundInterceptor.intercept(AroundInterceptor.java:35)
    at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:164)
    at com.opensymphony.webwork.interceptor.FileUploadInterceptor.intercept(FileUploadInterceptor.java:71)
    at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:164)
    at com.opensymphony.xwork.interceptor.AroundInterceptor.intercept(AroundInterceptor.java:35)
    at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:164)
    at com.opensymphony.xwork.interceptor.AroundInterceptor.intercept(AroundInterceptor.java:35)
    at com.opensymphony.xwork.DefaultActionInvocation.invoke(DefaultActionInvocation.java:164)
    at com.opensymphony.xwork.DefaultActionProxy.execute(DefaultActionProxy.java:116)
    at com.opensymphony.webwork.dispatcher.ServletDispatcher.serviceAction(ServletDispatcher.java:272)
    at com.jivesoftware.base.util.JiveWebWorkServlet.service(JiveWebWorkServlet.java:62)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
    at com.jivesoftware.util.SetResponseCharacterEncodingFilter.doFilter(SetResponseCharacterEncodingFilter.java:53)
    at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
    at com.opensymphony.module.sitemesh.filter.PageFilter.parsePage(PageFilter.java:118)
    at com.opensymphony.module.sitemesh.filter.PageFilter.doFilter(PageFilter.java:52)
    at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:17)
    at com.jivesoftware.util.SetRequestCharacterEncodingFilter.doFilter(SetRequestCharacterEncodingFilter.java:48)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:299)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:187)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)

    Check the adapter that is attached to the child table , compile it again and try adding .
    BTW which connector you are using and paste the error trace from log files
    Thanks
    Suren

  • How can I get my ES2 loops to play correctly? I keep getting the message that the audio is not found when I drag the loops from my audio browser even though they play fine in the preview.

    How can I get my ES2 loops to play correctly? I keep getting the message that the audio is not found when I drag the loops from my audio browser even though they play fine in the preview.

    It's exactly as I stated. Whenever I try to drag these kinds of loops (ESX24 / software instrument loops? the ones marked in green with the white music note next to them) from the loop browser into the timeline a message comes up saying Audio Not Found for that loop.  And a new track is created automatically when loops are dragged into the timeline, so I'm not creating some other random / synth instrument track so I'm not sure  what the deal is... But perhaps I'll try creating a software instrument track first and then drag the loop into that track and see what happens - maybe there's something with the default settings that automatically creates audio tracks whenever loops are imported?

  • I get error message''one file not found'' when tring to sync Ipod Nano 6th gen to I tunes. Help

    I get error message''one file not found'' when tring to sync Ipod nano 6th gen to Itunes. Help

    See:
    iTunes cannot sync... apps not determined installed on...: Apple Support Communities
    installed apps could not be determined...: Apple Support Communities

  • Keep getting Disc Burner or software not found when trying to burn a CD

    I am not able to burn a playlist to a CD and get an error at the top of Itunes window "Disc Burner or Software Not Found". I have been able to burn CDs in the past with this same computer but had some issues with songs in itunes. Support had me uninstall Itunes and reinstall. I have also uninstalled the device in the device manager and re-installed it. I really don't know what to try except to ask for help here. I would appreciate any direction I can get. I have a Dell desktop XPS running on Windows 8.

    Hi daurel, 
    Thanks for participating in the Apple Support Communities. 
    It sounds like you receive the error "Disc Burner or Software Not Found" when trying to burn CDs. You mention that you've already tried removing and reinstalling iTunes, and other drivers, and these are good steps. 
    If the situation continues, be sure to try the tips in this article:
    iTunes for Windows: Optical drive is no longer recognized, or "Disc burner or software not found" alert after install - Apple Support
    Sincerely,
    Jeremy 

Maybe you are looking for

  • Emailing a report in Developer 6i

    Hi, Can any body tell, what are the steps to email a report in developer 6i in windows xp environment? regards, iftikhar ahmad

  • AppleTV Not playing .Mov files that will play in iTunes

    After Major Hard Disc issues I had to use a Data Rescue II to retrieve the files. All seems fine now except Data Recover II converted all of the m4v to mov files? They play fine from iTunes, but apple tv does is giving me an error that file format is

  • Pleas  can someone help me

    i have problem with my program i implement saveing method but when i open file( game.txt) it does not update my board it return same postion every time i same game chess class Jframe(Jfilechooser)(call an board array)----> Gui Japplet class( call and

  • Need Busines Content for PM- WCM

    Hi All, We are having a requirement to implement the SAP- PM module for BI. In R/3 , user have implemented SAP - PM -WCM(Work Clearance managment) , and we have to create the report for the same. I want to know about data sources which can give the i

  • Credit-Follow Up posting and Re-Posting of already posted figures.!

    I need you to advise on the following, if you can: All of sudden in an open service contracts i started getting credit following up postings and repostings of all posted items even there is no change made anywhere in the contract either in term, obje