MacPorts 4.6 on Lion - dependency libiconv not found?

I'm running OS X 10.7.3 and have successfully installed xtool 4.6 and the command line utilities for it. I have a local repository established, yet when I run this command: sudo ports install xdotool, the port is found, but I see this:
sudo port install xdotool
--->  Computing dependencies for xdotool
Error: Dependency 'libiconv' not found.
Error: Status 1 encountered during processing.
yet when I look in /usr/lib, I see this:
ls -l /usr/lib/libiconv*
lrwxr-xr-x  1 root  wheel       16 Feb 21  2012 /usr/lib/libiconv.2.4.0.dylib -> libiconv.2.dylib
-r-xr-xr-x  1 root  wheel  2105216 Feb 21  2012 /usr/lib/libiconv.2.dylib
lrwxr-xr-x  1 root  wheel       20 Feb 21  2012 /usr/lib/libiconv.dylib -> libiconv.2.4.0.dylib
I've seen posts that people have broken terminal and other packages by removing and reinstalling libiconv. What is the correct way to resolve the missing dependency, without breaking other installed packages?
Thanks.

MacPorts maintains its own libraries in /opt. You'll have to ask MacPorts why it doesn't install this dependency or use system libraries.

Similar Messages

  • Classes on which ur servlet depends is not found in classpath

              i am trying to deploy a servlet in exploded form in weblogic 7.0.Its is deployed correctly but when i call the servlet from a html file i.e. index.html it throws an error http:<Error> <HTTP> <101250>
              stating that the classes on which my servlet class depends is not found in classpath.I have set classpath manually and also created a domain name "ApplicationDomain" and i have put my application "WebApp" in application's directory in the domain
              it throw the folowiing error with exceptions
              <May 28, 2003 12:09:54 PM IST> <Error> <HTTP> <101250> <[ServletContext(id=1642082,name=WebApp,context-path=)]: Servlet
              class myclasses.Gservlet for servlet Gservlet could not be loaded because a class on which it depends was not found in t
              he classpath D:\bea\user_projects\Applicationdomain\applications\WebApp;D:\bea\user_projects\Applicationdomain\applicati
              ons\WebApp\WEB-INF\classes.
              java.lang.NoClassDefFoundError: myclasses/Gservlet (wrong name: Gservlet)>
              <May 28, 2003 12:09:54 PM IST> <Error> <HTTP> <101018> <[ServletContext(id=1642082,name=WebApp,context-path=)] Servlet f
              ailed with ServletException
              javax.servlet.ServletException: [ServletContext(id=1642082,name=WebApp,context-path=)]: Servlet class myclasses.Gservlet
              for servlet Gservlet could not be loaded because a class on
              

    Configuration file bc4j.xcfg not found in the classpath.

  • Servlet Class dependency is not found at weblogic startup.

    I have the following ear file which includes:
    web-inf\lib (contains all the needed utilities jar)
    *ejb.jar
    *webapp.war (The WEB-INF\lib dir inside war file contains all the needed utilities
    jars.
    I get the following BEA-101250 error saying that a servlet could not be loaded
    because a class that it depends on is not in the classpath. But I think I place
    all the needed jars in the startWebLogic.cmd file as well as in the WEB-INF\lib
    of the ear and war files. However, if a classs that a servlet depends on is not
    found, why doesn't weblogic simply tells us what that class is (instead of guessing
    to death)? How can I find which class that the servlet depends on is not found?
    Thanks.
    BEA-101250
    Error: [context]: Servlet class className for servlet svltName could not be loaded
    because a class on which it depends was not found in the classpath classPath.\nt.
    Description
    [context]: Servlet class className for servlet svltName could not be loaded because
    a class on which it depends was not found in the classpath classPath.\nt.
    Cause
    One of the classes the servlet class uses was not recognized by the Web application
    classloader.
    Action
    Make sure the class is available either in WEB-INF/classes or WEB-INF/lib or
    system classpath.

    Hmm, do you perhaps have the prefer web-inf-classes set in weblogic.xml?
    -- Rob
    rock wrote:
    I place all the utilties class in the top level APP-INF/lib. Same error. I installed
    this application on JBoss and everything runs fine. I really don't know what
    classes or jar that weblogic says that a servlet depends on.
    There are only a finite number of places where you can put all the needed jars
    in which that servlet depends:
    1. myapp.ear/APP-INF/lib
    2. myapp.ear/WEB-INF/lib
    3. or put it to a directory in the ear and refer to each jars in the CLASS-PATH
    line of the MANIFEST.MF file.
    4. myweb.war/WEB-INF/lib
    5. EJBs are in myapp.ear top directory
    6. Refer to all the jars in startWebLogic.cmd script as it starts.
    I still don't know what jars I am missing.
    Thanks.
    Rob Woollen <[email protected]> wrote:
    rock wrote:
    Rob,
    I remove all the classpath, but when I deploy the ejb complains thatit missed
    all the needed utilities class. Ok, stop there. If the utilities classes need to be seen by both the
    EJBs and webapp, then placing them in WEB-INF/lib is not enough. That
    makes them available only to the webapp.
    If you're using 8.1, then the solution is pretty simple. Move your
    utility classes into a top-level directory named APP-INF/lib
    ie
    ear/APP-INF/lib/utils.jar
    ear/fooejb.jar
    ear/fooweb.war
    If you're using < 8.1, then you can still move the jars to APP-INF/lib,
    but you'll need to add manifest class-path entries to the EJB and webapp.
    -- Rob
    I again place it on - the ear deploys fine (ejbs
    and war). But the starting servlet could not loaded because it cannotfinds a
    class that it depends on. I think I reference all the classes or jarsthat it
    needs - so I need it to tell me which one. I don't know why weblogicmakes it
    so difficult. It took me a month already and all I need to do is findthe class
    that it complains about.
    Rob Woollen <[email protected]> wrote:
    Yes, it would be nicer if that exception had more information.
    You told the web container the servlet-class in your web.xml. THe
    web
    container tried to load it and got a NoClassDefFoundError.
    Unfortuantely that exception doesn't include much information.
    NoClassDefFoundErrors are caused by something in a parent loader
    depending on something in a child classloader.
    Step #1 is for you to remove everything you've added to the $CLASSPATH.
    If that doesn't solve your problem, post again.
    -- Rob
    rock wrote:
    I have the following ear file which includes:
    web-inf\lib (contains all the needed utilities jar)
    *ejb.jar
    *webapp.war (The WEB-INF\lib dir inside war file contains all the
    needed
    utilities
    jars.
    I get the following BEA-101250 error saying that a servlet could notbe loaded
    because a class that it depends on is not in the classpath. But Ithink I place
    all the needed jars in the startWebLogic.cmd file as well as in theWEB-INF\lib
    of the ear and war files. However, if a classs that a servlet dependson is not
    found, why doesn't weblogic simply tells us what that class is (insteadof guessing
    to death)? How can I find which class that the servlet depends onis not found?
    Thanks.
    BEA-101250
    Error: [context]: Servlet class className for servlet svltName couldnot be loaded
    because a class on which it depends was not found in the classpathclassPath.\nt.
    Description
    [context]: Servlet class className for servlet svltName could notbe loaded because
    a class on which it depends was not found in the classpath classPath.\nt.
    Cause
    One of the classes the servlet class uses was not recognized by theWeb application
    classloader.
    Action
    Make sure the class is available either in WEB-INF/classes or WEB-INF/libor
    system classpath.

  • 'Item dependency "CURRENT_YEAR" not found in the EUL' error after 4i to 10g

    Hi All,
    I have successfully completed a Discoverer 4i to 10g (10.1.2.48.18) upgrade. There is only one EUL (EUL_US) and it has been upgraded to version 5.1.1. All the Workbooks are saved to the File System. However, during testing some of the Workbooks error when I try to open them in 10g - they still open successfully in 4i.
    <Dialog Box> Item dependency "CURRENT_YEAR" not found in the EUL
    <Dialog Box> Attempt to open Workbook failed
    CURRENT_YEAR is a function of custom Package RESEARCH.UDEF which is valid both at a database level and at a Discoverer Admin 10g Register PL/SQL Functions level.
    I tried deleting the Function "CURRENT_YEAR" from the 10g Admin Edition Tools -> Register PL/SQL Functions and then importing it again. I received the same Dependency error.
    Now the really bizarre thing.....
    The Workbook (2MG.DIS) has 2 Worksheets that both have Calculations that reference function CURRENT_YEAR. If I open the Workbook in Discoverer 4i, delete one Worksheet and save as 2MGb.DIS, then reopen the original and save the other Worksheet only as 2MGc.DIS. Both the individual Worksheets open in Discoverer 10g but the combined Workbook still gives the Dependency error. Weird huh?
    Any ideas help appreciated as I'm pulling my hair out here (and I need what I've got leftl!).
    Kind Regards,
    Gary.

    Hi all,
    The answer was really quite simple but it was what I hadn't included in my post that would have made it impossible for you to help.
    I hadn't mentioned that I was initially upgrading from 3i and it all seemed successful. I however was trying to open the Workbooks that had been created in Discoverer 3i directly in Discoverer 10g. That would explain the "bizarre" feature as I detailed in the post. As soon as I save the Workbook in 4i then I can open without issues in Discoverer 10g.
    Thanks for viewing my post and for your response Gianluca.
    Kind Regards,
    Gary.

  • Windows 7 Ultimate 64 bit Lion "Installer disc not found." What gives?

    I'm trying to install Windows 7 Ultimate 64 bit on a Late 2008 MacBook Pro running Lion. When I get to the partition step I get the message "Installer disc not found." I am logged in as an admisitrator. I'm using a brand new store bought DVD. Any advice?.

    Hello @rossinnit and welcome to the HP Forums!
    I'd like to help you get the Deskjet 2542 installed on your Windows 7 PC
    I'd recommend that you download and run the HP Printer Install Wizard, and that will seek out the drivers online (from the HP web page) and download them for you and then start the install as well.
    With that tool you can plug in the USB cable when it asks near the beginning to find the right drivers.
    Let me know how things go for you!
    Please click “Accept as Solution ” if you feel my post resolved your issue, as it will help others find the solution faster
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    **MissTeriLynn**
    I work on behalf of HP

  • Dependent class not found in the classpath

    Hi, Recently I was implemented a Class that implement "CallbackHandler".
    This class help me to build a security header for a SOAP Message, but when I execute this one in a OC4J, I obtain the next error:
    oracle.classloader.util.AnnotatedClassNotFoundException:
    Dependent class: oracle.security.wss.WSSecurity
    Loader: oracle.ws.security:10.1.3
    Code-Source: /E:/jdeveloper/webservices/lib/wssecurity.jar
    Configuration: <code-source> (ignore manifest Class-Path) in META-INF/boot.xml in E:\jdeveloper\j2ee\home\oc4j.jar
    This load was initiated at oracle.ws.security:10.1.3 using the Class.forName() method.
    The missing class is available from the following locations:
    I'm using JDeveloper 10.1.3.4. Any help?
    Edited by: user5540744 on 04-jul-2011 4:53

    Here is the work around:
    If you add the generated xxx_wsdl.jar to your buildpath in the ant build file, this warning goes away.

  • Dependent table not found

    I have just installed XE 2.1 and cannot find the dependent table. How do I find the correct version of the database?
    Edited by: user10192822 on Aug 20, 2010 3:40 PM

    user10192822 wrote:
    I have just installed XE 2.1 and cannot find the dependent table. How do I find the correct version of the database?
    Edited by: user10192822 on Aug 20, 2010 3:40 PMselect version from v$database;

  • Lion InstallESD.dmg not found after download and install on my macbook pro; I need it for built a install-dvd

    I want to built a install-DVD from Lion. The finder doesn't find the *.dmg-file from Lion on my MacBook Pro. Who knows a solution? How can I download the Install-Image again wthout to update my Notebook with Lion again. In the appstore my purchase is marked with "installiert". If I click with the right button to get another option for a download - no command.

    I've tried your suggestion to sporty54 but, when I Option click the purchases icon in the App Store, it only shows my other installed items as here:-
    I don't know what 'MAS' refers to.  Is this another place on my iMac where I should look and, if so, where is it?

  • Error "Cannot join tables. Item dependency 'TatZ' not found in EUL"

    I have created a Discoverer Report in a development instance of
    Oracle. After I create the Data views and Item classes in my
    production instance (using the same names) I attempt to run the
    report. I then get the error stated in the subject and the
    report won't load. I can recreate the report in production and
    it works fine. I can even take the new report and it will run
    in the development instance. Both instances are using the same
    end user layer. Anyone got any ideas?
    Thanks
    Gary

    Hi Gary,
    I've experienced the same error.
    I developed a report in 3.1.44 in my development environment and
    then tried to open it in the identic production environment what
    I realized after talking to a user who had the 3.1.25 version
    was that he got a message saying that I had forgotten to import
    a function in the production environment!
    We had separate EULs so I suppose this isn't your problem, but
    if you have the possibility to try opening the report in the
    older version perhaps you'll get a more informative message.
    Regards,
    Monica

  • Depending libraries not found

    Hello,
    JDev: 11.1.1.4.0
    WLS: 10.1.3.4
    OS: Windows 7
    In our Application we have multiple projects : 1 model, 1 ViewController (for the base application), x ViewController projects for the different taskflows.
    We want to be able to deploy all projects seperately, to allow for easy patching of the application.
    To test this, I created another application with just a model and 1 viewcontroller project (standard ADF Application Template).
    I created an ADF Jar for the model and deployed it to the integrated WLS.
    I created an EAR for the ViewController, which doesn't include the JAR nor the classes of the model, and also deployed it to the integrated WLS.
    Supprise : My app doesn't find the configuration file /model/common/bc4j.xcfg. This file is presented in the JAR (verified).
    I'm pretty sure that the link between the ear file and the jar file is gone.
    So I started creating a METAINF.MF file for the JAR with the content:
    Manifest-Version: 1.0
    Created-By: Filip Huysmans
    Implementation-Title: aModel Shared Library
    Extension-Name: aModel
    Specification-Version: 1.0.0
    Implementation-Version: 1.0.0
    Implementation-Vendor: HuysmansI added a weblogic-application.xml file to the ViewController project with the content:
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <weblogic-application xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                          xsi:schemaLocation="http://www.bea.com/ns/weblogic/weblogic-application http://www.bea.com/ns/weblogic/weblogic-application/1.0/weblogic-application.xsd"
                          xmlns="http://www.bea.com/ns/weblogic/weblogic-application">
      <library-ref>
        <library-name>aModel</library-name>
        <exact-match>false</exact-match>
      </library-ref>
    </weblogic-application>But even then, I got the same result.
    Adding to that, in the WLS console, on the Overview tab of my shared library (JAR), I don't see my ViewController application as being an application that references this library (table at the end of the page).
    What do I do wrong?
    Is there any good guide (with examples) on how to do this?
    Thank you in advance.
    Filip Huysmans.

    Thank you both for your explanations and help!
    @igor:
    I run the script from NB, I have't installed ant separatly to run in from the console
    1) Can I enable the debug option in NB, too? I haven't found a possibility to edit ant options there.
    2) How can I execute the fx:jar alone?
    I think I haven't quite understand yet how my changes in build.xml interact with build-impl.xml and jfx-impl.xml and where I have to put the fx:jar.
    Do I have to create a new target in build.xml and insert it there? I don't think so, because all the other preperations from the xml's weren't done in this case.
    Do I have to overwrite the -do-jar-with-manifest target and insert it there?
    Or put it just under the project-tag in build.xml and it is connected automatically with the building process from the xml's?
    I made a minimal Test-project: A new JavaFX-Project with one external jar (log4j). After building without changes I had the same error as above :-(
    Here is the log from netbeans after running the target "jar":
    init:
    Deleting: \NetBeansProjects\Test\build\built-jar.properties
    deps-jar:
    Updating property file: \NetBeansProjects\Test\build\built-jar.properties
    compile:
    Building jar: \NetBeansProjects\Test\dist\Test.jar
    Copy libraries to \NetBeansProjects\Test\dist\lib.
    Building jar: \NetBeansProjects\Test\dist\Test.jar
    Detected JavaFX Ant API version 1.1
    Deleting: \NetBeansProjects\Test\dist\Test.jar
    Deleting: \NetBeansProjects\Test\dist\lib\Test.jar
    Deleting: \NetBeansProjects\Test\dist\README.TXT
    Skip jar copy to itself: Test.jar
    Skip jar copy to itself: lib/log4j-1.2.16.jar
    jfx-deployment:
    jar:
    BUILD SUCCESSFUL (total time: 1 second)Why is the "Building jar"-section twice? And where does it come from, I haven't found this logging in the xml's? Why is the Test.jar deleted after building? Im am confused...
    @jsmith:
    I hope that it will run with NB, but otherwise I will try your solution with the javafxpackager - thanks!

  • Material in two plants, I run MRP with the BOM is not found in prod plant

    Hi all,
    I have plant 1020 material 12345
    Plant 1020 is the production plant for material 12345
    The material 12345 exists in plant 1070.
    The material 12345 in plant 1070 has no MRP.
    Plant 1020 material 12345 config in MM03
    MRP1 --> MRP Type = PD
    MRP1 --> MRP Controller = G03
    MRP3 --> Planning material = PLAN_1020_GR03
    MRP3 --> Planning plant = 1020
    Plant 1070 material 12345 config in MM03
    MRP1 --> MRP Type = P3
    MRP1 --> MRP Controller = 017
    MRP3 --> Planning material = empty
    MRP3 --> Planning plant = empty
    The BOM in cs11 for plant 1020 material 12345
    has 3 components
    Comp#1
    Comp#2
    Comp#3
    The Dependency is code
    TABLE TB_1020_SUPERBOM (PP_nuance_interne = $ROOT.PP_nuance_interne,
    PP_dim_billette_bom = $ROOT.PP_dim_billette_bom,
    PP_CODE_LONG_BILL = $ROOT.PP_CODE_LONG_BILL,
    pp_component_bom =$self.pp_component_bom).
    The dependency is not found because it is looking for it in the plant 1070 and not the plant 1020.
    When the MRP runs for a Delivery type stock transfer order I get
    CONFIG_1020_BILLET <---- This is the BOM item component field in CS11 in the Basic data tab
    Comp#2
    Comp#3
    instead of
    Comp#1
    Comp#2
    Comp#3
    When I run MRP for the same material, if there's no
    "Delivery based on Stock transfert orders" the MRP associates the correct components
    Hope this explains m'I situation.
    Regards!
    Curtis

    Hi,
    If you want a reply in one line, it would be SAP R/3 does not supoort this feature.
    You will have to go for APO module.
    There are few things which can be done in R/3 side, as in maintaining a scope for MRP run in OM0E, maintaining special procurement key etc etc, but all these will not do any check of stock in another plant & can only help in a very limited way if all any for your specific need.
    But SAP R/3 provides a cross plant evaluation via MD48 to know the stock & demands at all plants, this can help only for evaluation purpose.
    Hope it clarifies.
    Regards,
    Vivek

  • XSLTINPUTHANDLER not found in WAR file.

    I am doing a build on Unix box and deploying it as WAR. Till yesterday my XML to PDF was working till the point of invoking the acrobat reader. But since this morning I have started getting this error during startup
    <Jun 8, 2004 10:01:43 AM PDT> <Error> <HTTP> <101250> <[ServletContext(id=292903
    3,name=web.war,context-path=/c2c)]: Servlet class com.sony.spe.c2c.util.PDFServl
    et for servlet PDFservlet could not be loaded because a class on which it depend
    s was not found in the classpath /opt/bea/user_projects/itsm/ITSM_Server/.wlnotd....................
    Then I get when calling the XML to PDF servlet...
    <Jun 8, 2004 10:01:43 AM PDT> <Error> <HTTP> <101250> <[ServletContext(id=292903
    3,name=web.war,context-path=/c2c)]:
    Servlet class com.sony.spe.c2c.util.PDFServlet for servlet PDFservlet could not be loaded because a class on which it depends was not found in the classpath /opt/bea/user_projects/itsm/ITSM_Server/.wlnotd
    I checked the path and the class does exist ..whats happening? It fact during build PDFServlet compiles fine.

    The second error message should be
    java.lang.NoClassDefFoundError: org/apache/fop/apps/XSLTInputHandler
    at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubI
    mpl.java:791)
    at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.
    java:517)

  • Struts class not found for war file

    Hello,
    I am tring to deploy my struts web application in weblogic 8.1. I have all the
    library files in web-inf\lib directory. It gave me the error that class not found
    for some class in struts library. The console also told me the classpath. But
    I can use javap to find the class using the same classpath. Could any one point
    me some direction what I am doing wrong here.
    Thanks.
    Here is the error message:
    java.lang.NoClassDefFoundError: org/apache/commons/beanutils/Converter.>
    <Nov 13, 2003 11:05:29 AM EST> <Error> <HTTP> <BEA-101216> <Servlet: "action"
    fa
    iled to preload on startup in Web application: "voppocWebApp".
    javax.servlet.ServletException: [HTTP:101250][ServletContext(id=9921725,name=vop
    pocWebApp,context-path=/voppocWebApp)]: Servlet class org.apache.struts.action.A
    ctionServlet for servlet action could not be loaded because a class on which it
    depends was not found in the classpath C:\bea\weblogic81\server\bin\myserver\upl
    oad\voppocWebApp.war;C:\bea\weblogic81\server\bin\.\myserver\.wlnotdelete\extrac
    t\myserver_voppocWebApp_voppocWebApp\jarfiles\WEB-INF\lib\activation30425.jar;C:
    \bea\weblogic81\server\bin\.\myserver\.wlnotdelete\extract\myserver_voppocWebApp
    _voppocWebApp\jarfiles\WEB-INF\lib\commons-beanutils30426.jar;C:\bea\weblogic81\
    server\bin\.\myserver\.wlnotdelete\extract\myserver_voppocWebApp_voppocWebApp\ja
    rfiles\WEB-INF\lib\commons-collections30427.jar;C:\bea\weblogic81\server\bin\.\m
    yserver\.wlnotdelete\extract\myserver_voppocWebApp_voppocWebApp\jarfiles\WEB-INF
    \lib\commons-digester30428.jar;C:\bea\weblogic81\server\bin\.\myserver\.wlnotdel
    ete\extract\myserver_voppocWebApp_voppocWebApp\jarfiles\WEB-INF\lib\commons-file
    upload30429.jar;C:\bea\weblogic81\server\bin\.\myserver\.wlnotdelete\extract\mys
    erver_voppocWebApp_voppocWebApp\jarfiles\WEB-INF\lib\commons-lang30430.jar;C:\be
    a\weblogic81\server\bin\.\myserver\.wlnotdelete\extract\myserver_voppocWebApp_vo
    ppocWebApp\jarfiles\WEB-INF\lib\commons-logging30431.jar;C:\bea\weblogic81\serve
    r\bin\.\myserver\.wlnotdelete\extract\myserver_voppocWebApp_voppocWebApp\jarfile
    s\WEB-INF\lib\commons-validator30432.jar;C:\bea\weblogic81\server\bin\.\myserver
    \.wlnotdelete\extract\myserver_voppocWebApp_voppocWebApp\jarfiles\WEB-INF\lib\ja
    karta-oro30433.jar;C:\bea\weblogic81\server\bin\.\myserver\.wlnotdelete\extract\
    myserver_voppocWebApp_voppocWebApp\jarfiles\WEB-INF\lib\jdbc2_0-stdext30434.jar;
    C:\bea\weblogic81\server\bin\.\myserver\.wlnotdelete\extract\myserver_voppocWebA
    pp_voppocWebApp\jarfiles\WEB-INF\lib\mailapi30435.jar;C:\bea\weblogic81\server\b
    in\.\myserver\.wlnotdelete\extract\myserver_voppocWebApp_voppocWebApp\jarfiles\W
    EB-INF\lib\struts30436.jar;C:\bea\weblogic81\server\bin\.\myserver\.wlnotdelete\
    extract\myserver_voppocWebApp_voppocWebApp\jarfiles\_wl_cls_gen.jar.
    java.lang.NoClassDefFoundError: org/apache/commons/beanutils/Converter.
    at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubI
    mpl.java:800)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppS
    ervletContext.java:3236)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlets(WebApp
    ServletContext.java:3181)

    Hello Mark,
    Your suggested solution (putting an empty commons-logging.properties into
    web-inf/classes or in a jar in web-inf/lib)
    does not make any change at all. It still complains about not being able to
    preload the servlet and still
    gives exceptions upong calling upon LogFactory.
    What I have been able to do is put the three classes from
    com.bea.wlw.netui.util.logging into a separate jar
    and add that to web-inf/lib.
    However I am sometimes getting funny exceptions upon undeploy
    (NoClassDefFoundError for org.apache.commons.collection.FastHashMap$KeySet).
    Regards,
    Robert Varga
    "Mark Griffith" <[email protected]> wrote in message
    news:[email protected]...
    From a FAQ on netui:
    1. Why do I get a ServletException while trying to deploy a struts web
    application on a Workshop/Integration/Portal domain?
    In the "<WL-HOME>/server/lib/knex.jar" file there is a properties file
    called "commons-logging.properties" which configures the
    com.bea.wlw.netui.util.logging.StrutsLogFactory class for Struts loggingas
    below:
    org.apache.commons.logging.LogFactory=com.bea.wlw.netui.util.logging.StrutsL
    ogFactory
    This class file is not available for a Struts web application that was not
    built using Workshop, the reason being the containing NetUI jar files are
    not present in the web application's WEB-INF/lib folder. This leads to a
    ServletException while deploying the web application. The solution is toadd
    a blank file (or a JAR containing the file) namedcommons-logging.properties
    to the server CLASSPATH, or to the WEB-INF/lib folder of the concerned web
    application. This issue will be fixed in Service Pack 2.
    cheers
    mbg
    "Robert Varga" <[email protected]> wrote in message
    news:[email protected]...
    Hi Rob,
    I also have a similar error with deploying a Struts web application into
    a
    8.1 Basic Workshop Domain created
    by 8.1 Platform.
    I get a ClassNotFoundException for 'com.wlw...StrutsLogFactory', whenStruts
    tries to load any Jakarta class
    from commons-beanutils or Struts which has logging.
    This happens because commons-logging picks up some property whichinstructs
    it to load that class, which is
    naturally not included in most web applications, since it is
    workshop-specific. This property definition, I think,
    is in <bea>\weblogic81\server\knex.jar, called
    commons-logging.properties,
    containing the following line:
    org.apache.commons.logging.LogFactory=com.bea.wlw.netui.util.logging.StrutsL
    ogFactory
    How can I override this in my webapp in a property file, so that when a
    Struts or Beanutils class calls
    LogFactory.getLog(org.apache.....<classname>.class), it would not try touse
    the property file and the
    class defined in knex.jar.
    Thanks in advance,
    Robert Varga
    "Rob Woollen" <[email protected]> wrote in message
    news:[email protected]...
    Actually it complained about a NoClassDefFoundError. Generally this
    is
    caused by something in a parent classloader that is found but then
    depends on something only loadable in a child classloader.
    eg.
    You have something in your $CLASSPATH that references something in the
    WEB-INF/lib. This will NoClassDefFoundError.
    So, as I recommended, remove everything you've added to the$CLASSPATH,
    add the jars to WEB-INF/lib. If you're still having problems, show me
    your $CLASSPATH, the contents of WEB-INF/lib, and the error message
    /stack trace.
    -- Rob
    yuruo chen wrote:
    Hello, Rob,
    I did put the common-beanutils and other jar files in the
    web-inf/lib
    directory.
    And from the weblogic console, I do see the jar file get included in
    the
    classpath.
    (those generated file name have some number attached at the end.)
    As
    I
    mentioned
    before, I can use javap find the class using this weblogic generatedclasspath.
    But weblogic complained that the class is not found.
    Rob Woollen <[email protected]> wrote:
    Remove anything you've added to the server's classpath.
    Add the required jar files to WEB-INF/lib
    -- Rob
    yuruo chen wrote:
    Hello,
    I am tring to deploy my struts web application in weblogic 8.1. I
    have
    all the
    library files in web-inf\lib directory. It gave me the error that
    class
    not found
    for some class in struts library. The console also told me the
    classpath.
    But
    I can use javap to find the class using the same classpath. Could
    any
    >>>>>
    one point
    me some direction what I am doing wrong here.
    Thanks.
    Here is the error message:
    java.lang.NoClassDefFoundError:
    org/apache/commons/beanutils/Converter.>
    <Nov 13, 2003 11:05:29 AM EST> <Error> <HTTP> <BEA-101216>
    <Servlet:
    >>>>>
    "action"
    fa
    iled to preload on startup in Web application: "voppocWebApp".
    javax.servlet.ServletException:
    [HTTP:101250][ServletContext(id=9921725,name=vop
    pocWebApp,context-path=/voppocWebApp)]: Servlet classorg.apache.struts.action.A
    ctionServlet for servlet action could not be loaded because a classon which it
    depends was not found in the classpath
    C:\bea\weblogic81\server\bin\myserver\upl
    >
    oad\voppocWebApp.war;C:\bea\weblogic81\server\bin\.\myserver\.wlnotdelete\extrac
    >
    t\myserver_voppocWebApp_voppocWebApp\jarfiles\WEB-INF\lib\activation30425.jar;C:
    >
    \bea\weblogic81\server\bin\.\myserver\.wlnotdelete\extract\myserver_voppocWebApp
    >
    _voppocWebApp\jarfiles\WEB-INF\lib\commons-beanutils30426.jar;C:\bea\weblogic81\
    >
    server\bin\.\myserver\.wlnotdelete\extract\myserver_voppocWebApp_voppocWebApp\ja
    >
    rfiles\WEB-INF\lib\commons-collections30427.jar;C:\bea\weblogic81\server\bin\.\m
    >
    yserver\.wlnotdelete\extract\myserver_voppocWebApp_voppocWebApp\jarfiles\WEB-INF
    >
    \lib\commons-digester30428.jar;C:\bea\weblogic81\server\bin\.\myserver\.wlnotdel
    >
    ete\extract\myserver_voppocWebApp_voppocWebApp\jarfiles\WEB-INF\lib\commons-file
    >
    upload30429.jar;C:\bea\weblogic81\server\bin\.\myserver\.wlnotdelete\extract\mys
    >
    erver_voppocWebApp_voppocWebApp\jarfiles\WEB-INF\lib\commons-lang30430.jar;C:\be
    >
    a\weblogic81\server\bin\.\myserver\.wlnotdelete\extract\myserver_voppocWebApp_vo
    >
    ppocWebApp\jarfiles\WEB-INF\lib\commons-logging30431.jar;C:\bea\weblogic81\serve
    >
    r\bin\.\myserver\.wlnotdelete\extract\myserver_voppocWebApp_voppocWebApp\jarfile
    >
    s\WEB-INF\lib\commons-validator30432.jar;C:\bea\weblogic81\server\bin\.\myserver
    >
    \.wlnotdelete\extract\myserver_voppocWebApp_voppocWebApp\jarfiles\WEB-INF\lib\ja
    >
    karta-oro30433.jar;C:\bea\weblogic81\server\bin\.\myserver\.wlnotdelete\extract\
    >
    myserver_voppocWebApp_voppocWebApp\jarfiles\WEB-INF\lib\jdbc2_0-stdext30434.jar;
    >
    C:\bea\weblogic81\server\bin\.\myserver\.wlnotdelete\extract\myserver_voppocWebA
    >
    pp_voppocWebApp\jarfiles\WEB-INF\lib\mailapi30435.jar;C:\bea\weblogic81\server\b
    >
    in\.\myserver\.wlnotdelete\extract\myserver_voppocWebApp_voppocWebApp\jarfiles\W
    >
    EB-INF\lib\struts30436.jar;C:\bea\weblogic81\server\bin\.\myserver\.wlnotdelete\
    extract\myserver_voppocWebApp_voppocWebApp\jarfiles\_wl_cls_gen.jar.
    java.lang.NoClassDefFoundError:
    org/apache/commons/beanutils/Converter.
    atweblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubI
    mpl.java:800)
    atweblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppS
    ervletContext.java:3236)
    atweblogic.servlet.internal.WebAppServletContext.preloadServlets(WebApp
    ServletContext.java:3181)

  • Why i get servlet exception/login servlet not found exception  with .ear ?

    I am able to deploy my war and after that generating the ear from that. both works fine in local system.
    But when i run (Jboss as service[Java Service Wrapper]) it takes war without any problem.But with ear file i am getting servlet not found exception.I can't understand where this problem is coming from.
    Even if i take my JSPWIki ear which is running well in production server, this also gives same error.
    One more thing, the files, what i am running well in local system i.e. war and ear working fine. (can't test in production server so testing in same kind of testing server) there also getting login servlet not found exception. Even in same location other files which are deployed are working fine.out of 4 at least one is working fine.
    I don't undersatnd where this whole problem is .
    Please guiide me where sholud i concentrate to solve this problem.
    thnaks
    Vijendra

    I took the source code including the dll files already added to the project from here:
    spazzarama/Direct3DHook
    The solution include two projects the one name Capture is class library type and the dll that make the exception is in this project.
    I tried now to use the program Dependency Walker on this dll file and it found error/s:
    This is the log:
    Error: At least one required implicit or forwarded dependency was not found.
    Error: At least one module has an unresolved import due to a missing export function in an implicitly dependent module.
    Error: Modules with different CPU types were found.
    Warning: At least one delay-load dependency module was not found.
    Screenshot:
    It happen only when using/detecting Direct3D 11 . So far only in Direct3D 11, When i use it with a game that run Direct3D 9 it's working fine.
    The question is how can i solve this dll problem ? Any site/place to download this dll from ?

  • Trying to install Mountain Lion, getting Disk not formatted properly

    I am currently running osx 10.6.8, trying to install Mountain Lion and when I am selecting the drive to install too I get:
    "This disk is not formatted as Mac OS Extended (Journaled)..."
    This is my master HD so i cant really just reformat it? Im not great with macs so step-by-step would help.
      Model Name:          MacBook Pro
      Model Identifier:          MacBookPro8,1
      Processor Name:          Intel Core i7
    System Version:          Mac OS X 10.6.8 (10K549)
      Kernel Version:          Darwin 10.8.0

    Open Disk Utility, select your Macintosh HD volume. In the status area at the bottom check that it is partitioned using GUID. Now click on the Journal icon in the toolbar above. This should fix it for you without having to reformat the drive.
    Since you have the downloaded Mountain Lion installer I suggest you make a copy of it in your Downloads folder. Then do the following:
    Make Your Own Mountain/Lion Installer
    1. After downloading Mountain/Lion you must first save the Install Mac OS X Mountain/
        Lion application. After Mountain/Lion downloads DO NOT click on the Install button.
        Go to your Applications folder and make a copy of the Mountain/Lion installer. Move
        the copy into your Downloads folder. Now you can click on the Install button. You
        must do this because the installer deletes itself automatically when it finishes
        installing.
    2. Get a USB flash drive that is at least 8 GBs. Prep this flash drive as follows:
      a. Open Disk Utility in your Utilities folder.
      b. After DU loads select your flash drive (this is the entry with the mfgr.'s ID and size) from the left
          side list. Click on the Partition tab in the DU main window.
      c. Under the Volume Scheme heading set the number of partitions from the drop down menu to one.     
          Set the format type to Mac OS Extended (Journaled.) Click on the Options button, set the
          partition scheme to GUID then click on the OK button. Click on the Partition button and wait until
          the process has completed.
      d. Select the volume you just created (this is the sub-entry under the drive entry) from the left side
          list. Click on the Erase tab in the DU main window.
      e. Set the format type to Mac OS Extended (Journaled.) Click on the Options button, check the
          button for Zero Data and click on OK to return to the Erase window.
      f. Click on the Erase button. The format process can take up to an hour depending upon the flash
         drive size.
    3. Locate the saved Mountain/Lion installer in your Downloads folder. CTRL- or RIGHT-click on the installer and select Show Package Contents from the contextual menu. Double-click on the Contents folder to open it. Double-click on the SharedSupport folder. In this folder you will see a disc image named InstallESD.dmg.
    4. Plug in your freshly prepared USB flash drive. You are going to clone the content of the InstallESD.dmg disc image to the flash drive as follows:
      a. Double-click on the InstallESD.dmg file to mount it on your Desktop.
      b. Open Disk Utility.
      c. Select the USB flash drive from the left side list.
      d. Click on the Restore tab in the DU main window.
      e. Select the USB flash drive volume from the left side list and drag it to the Destination entry field.
      f. Drag the mounted disc icon from the Desktop into the Source entry field.
      g. Double-check you got it right, then click on the Restore button.
    When the clone is completed you have a fully bootable installer that you can use without having to re-download Mountain/Lion.
    Note: The term Mountain/Lion used above means Lion or Mountain Lion.

Maybe you are looking for

  • Playing mp4 audio gives error message "Video can't be played because the file is corrupt"

    Playing a particular mp4 audio file directly from a website link gives error message "Video can't be played because the file is corrupt". However other mp4 audio files from this same website do work correctly. What can I do to get all the the mp4 aud

  • Upgraded to iTunes 10.4.1 on Windows 7 and now my iPhone 4 won't sync.

    I know that there are many issues with this upgrade but was wondering if anybody had this specific problem and has a solution. The message I get from my laptop is that there is insufficient space on the disk which is patently wrong - there is ample s

  • Specify file name of the document returned on the HTTP post

    Hello, we are submitting a PDF form by calling submitForm function: doc.submitForm         cURL: "http://localhost/script",         cSubmitAs: "XML" The server returnes data of type "Content-type: application/pdf" and as a result this aplication/pdf

  • Theme Transport

    Hey I've been working on a Look and Feel project for the past few weeks , and my theme is nearly done (just missing some minor changes). we are now tryng to transport the theme to other portal. we have some errors mainly on the following areas:    -

  • Framework Order validy period

    Hi there, I have a Framework order that was made out in 2005 with validy period 01.07.2005 - 30.07.2006. Despite the fact that the validity period has past we can still Invoice Verify against this purchase order. What is the reason for this? And how