Commons-lang library versions problem in 10.3

Hi,
my web application is failing because a call to the mentioned library is being routed to the old version Weblogic copy in bea/modules instead of my application WEB-INF/lib one.
This doesn’t change if I add the library package to prefer-application-packages. I suppose this is because the library is somehow used at startup.
Can anybody let me know which is the (hopefully non-hacky) way to make my application use the version I want of a library used also by Weblogic?
Thanks

java.lang.ClassCastException: org.apache.xerces.jaxp.DocumentBuilderFactoryImpl cannot be cast to javax.xml.parsers.DocumentBuilderFactory
at javax.xml.parsers.DocumentBuilderFactory.newInstance(DocumentBuilderFactory.java:123)
at com.bea.core.repackaged.springframework.beans.factory.xml.DefaultDocumentLoader.createDocumentBuilderFactory(DefaultDocumentLoader.java:88)Any idea what's causing com.bea.core.repackaged.springframework.beans.factory.xml.DefaultDocumentLoader to be loaded and where it's being loaded from? Since it's a com.bea class, I assume it's pulled from the server's classpath. It looks like you're running into [this scenario|http://e-docs.bea.com/wls/docs103/programming/classloading.html#wp1087985].
Besides I saw comments discouraging the use of that parameter saying it could bring a number of unpredictable consequences down the line.Personally, I always use prefer-web-inf-classes when working with WLS. It brings things more in-line with the recommended spec behavior and hence other servers like Tomcat.

Similar Messages

  • Weblogic 10.3 and commons-lang-2.4.jar

    Dear All,
    I made a web application. It uses some 3party libraries, they are in web-inf/lib directory:
    WEB-INF
    |-sun-web.xml
    |-web.xml
    |-weblogic.xml
    WEB-INF/lib
    |-commons-io-1.4.jar
    |-commons-lang-2.4.jar
    |-xbean.jar
    My web application is running on Glassfish application server. When I tried to to deploy it to Weblogic 10.3 server I got follow error message:
    java.lang.NoSuchMethodError: org.apache.commons.lang.StringUtils.containsIgnoreCase(Ljava/lang/String;Ljava/lang/String;)Z
         at hu.mol.eai.fileadapter.web.PollingTask.getJTAClass(PollingTask.java:589)
    The reason of the exception: there is an older version of commons-lang library in classpath and the application server loaded this library on startup. I found library in /bea_10.3/modules/com.bea.core.apache.commons.lang_2.1.0.jar.
    If I delete it and the newer version of library (commons-lang-2.4.jar) copy to the /bea_10.3/modules/ directory my web application is working.
    I think this solution is a hacking, because I overwrite an original library of application server. I is not too nice solution for a big company environment where there is a support agreement with Weblogic partner.
    Could you give me a good / nicer solution?
    thank you, zappee

    Thank you for your answer.
    And what can I do if my war file is in an ear file?
    Structure of my enterprise application:
    *.ear
    |-lib\commons-lang-2.4.jar
    |-lib\....jar
    |
    |-FileAdapterWeb.war
    |-FileAdapterCommons.jar
    |-FileAdapterPlugins.jar
    |-schema.jar
    |- ...
    I do not want to put commons-lang-2.4.jar into *.war and lib directory same time. The all components of my enterprise applications are going to use commons-lang-2.4.jar. For example: it uses FileAdapterWeb.war and FileAdapterPlugins.jar too.
    Is there a solution for me?
    thx, SoMa

  • Commons lang problems

    Hi there!
    Sorry if I post this in the wrong section. But I was unsure of which to choose so I took the most general.
    To my problem. I want to use commons lang (http://commons.apache.org/lang/) but I cant make it work. I made a simple testclass to show you the problem:
    import org.apache.commons.lang.builder.ToStringBuilder;
    public class Person
      private String name;
      private int age;
      public Person(String name, int age)
        this.name = name;
        this.age = age;
      public String getName()
        return name;
      public void setName(String newName)
        this.name = newName;
      public int getAge()
        return age;
      public void setAge(int newAge)
        this.age = newAge;
      public String toString()
        return new ToStringBuilder(this)
          .append("name", name)
          .append("age", age)
          .toString();
      public static void main(String[] args)
        Person p = new Person("Peter", 23);
        System.out.println(p);
    }And this is the output from when I run it:
    *$ javac -classpath /usr/share/java/commons-lang.jar Person.java && java Person*
    Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/lang/builder/ToStringBuilder
         at Person.toString(Person.java:36)
         at java.lang.String.valueOf(String.java:2615)
         at java.io.PrintStream.print(PrintStream.java:616)
         at java.io.PrintStream.println(PrintStream.java:753)
         at Person.main(Person.java:45)

    *$ javac -classpath /usr/share/java/commons-lang.jar Person.java && java -classpath /usr/share/java/commons-lang.jar Person*
    Exception in thread "main" java.lang.NoClassDefFoundError: PersonI have also tried with:
    CLASSPATH="/usr/share/java/commons-lang.jar" javac Person.java && java Person

  • Apache commons-lang version in Oracle SOA Suite 10.1.3.3.0

    What is the Apache commons-lang version used in Oracle SOA Suite 10.1.3.3.0?
    I was using commons-lang-2.4 classes in writing an Identity service plugin and ran into an issue.

    Did you find a solution to this issue? We are having a similar issue trying to deploy a Paypal IPN on OAS 10.1.2.3. The IPN messages coming from Paypal appear to be attempting an SSLv2 handshake. In our case SSLv2 is disabled due to our security requirements so the connection is killed by our App Server. We have found that manually sending the IPN messages works correctly.

  • Jakarta Commons Lang 1.01 vs. 2.0?

    I looked through the newsgroup, but didn't see this question come up.
    Currently, the latest version of the Jakarta Commons Lang package is 2.0,
    though Kodo 3.2.4 includes 1.0.1. Are there any known problems or
    incompatibilities with using Lang 2.0 with Kodo 3.2.4? We'd like to only
    include the Lang 2.0 package in our application.
    Also, the link in the documentation (Appendix F) to the Jakarta pages are
    broken:
    http://jakarta.apache.org/commons/collections.html should be
    http://jakarta.apache.org/commons/collections/
    http://jakarta.apache.org/commons/lang.html should be
    http://jakarta.apache.org/commons/lang/
    and
    http://jakarta.apache.org/commons/pool.html should be
    http://jakarta.apache.org/commons/pool/
    (basically, replace the .html with a /).
    ;ted

    There are no known incompatibilities, but in Kodo 3, we're actually
    repackaging all our open-source dependencies to get away from random
    appearances of incompatibilities.
    -Patrick
    Ted M. Young wrote:
    I looked through the newsgroup, but didn't see this question come up.
    Currently, the latest version of the Jakarta Commons Lang package is 2.0,
    though Kodo 3.2.4 includes 1.0.1. Are there any known problems or
    incompatibilities with using Lang 2.0 with Kodo 3.2.4? We'd like to only
    include the Lang 2.0 package in our application.
    Also, the link in the documentation (Appendix F) to the Jakarta pages are
    broken:
    http://jakarta.apache.org/commons/collections.html should be
    http://jakarta.apache.org/commons/collections/
    http://jakarta.apache.org/commons/lang.html should be
    http://jakarta.apache.org/commons/lang/
    and
    http://jakarta.apache.org/commons/pool.html should be
    http://jakarta.apache.org/commons/pool/
    (basically, replace the .html with a /).
    ;ted

  • Error starting Software Update Manager (SUM) Can't retrieve C library version

    Hi,
    I am trying to update my SAP Solution Manager 7.1 SP04 to SP11 on a Debain squeeze. I did create a stack.xml and downloaded SUM SP10 (SUM10SP10_4-20006543.SAR)
    unpacked location is /usr/sap/S01/SUM
    I tried to run ./STARTUP with user s01adm but I got the following error:
    <!--LOGHEADER[START]/-->
    <!--HELP[Manual modification of the header may cause parsing problem!]/-->
    <!--LOGGINGVERSION[2.0.7.1006]/-->
    <!--NAME[/usr/sap/S01/SUM/sdt/log/SDTServer.log]/-->
    <!--PATTERN[SDTServer.log]/-->
    <!--FORMATTER[com.sap.tc.logging.TraceFormatter(%d [%s]: %m)]/-->
    <!--ENCODING[UTF8]/-->
    <!--LOGHEADER[END]/-->
    May 6, 2014 3:23:52 PM [Info]: *************************************************
    May 6, 2014 3:23:52 PM [Info]: Starting SL Controller listening on port 4241 ...
    May 6, 2014 3:23:52 PM [Info]: Starting StorageService ...
    May 6, 2014 3:23:52 PM [Info]: Initializing SecurityManager ...
    May 6, 2014 3:23:54 PM [Info]: Server certificate fingerprint is 3E 76 23 18 C1 74 AC B9 5D E4 CC 88 BF FE 3A 08
    May 6, 2014 3:23:54 PM [Info]: Configuring HTTPManager ...
    May 6, 2014 3:23:54 PM [Info]: Starting WebstartService ...
    May 6, 2014 3:23:54 PM [Info]: Starting RoleService ...
    May 6, 2014 3:23:54 PM [Info]: Starting AlertService ...
    May 6, 2014 3:23:54 PM [Info]: Starting NotesService ...
    May 6, 2014 3:23:54 PM [Info]: Starting ProcessService ...
    May 6, 2014 3:23:54 PM [Info]: Starting MIDService ...
    May 6, 2014 3:23:54 PM [Info]: Starting FileService ...
    May 6, 2014 3:23:54 PM [Info]: LogService switched off.
    May 6, 2014 3:23:54 PM [Info]: Starting MailService ...
    May 6, 2014 3:23:54 PM [Info]: Starting services ...
    May 6, 2014 3:23:54 PM [Info]: Starting service "UseCaseService" ...
    May 6, 2014 3:23:55 PM [Info]: Starting MIDService ...
    May 6, 2014 3:23:59 PM [Error]: Can't retrieve C library version.
    May 6, 2014 3:23:59 PM [Error]: Error while initializing service context.
    May 6, 2014 3:23:59 PM [Error]: Can't initilize sdt service provider
    May 6, 2014 3:23:59 PM [Error]: Creation of use case executor failed.
    May 6, 2014 3:23:59 PM [Fatal]: Error during controller startup.
    May 6, 2014 3:23:59 PM [Fatal]: SL Controller exiting.
    This is what /usr/sap/S01/SUM/sdt/trc/DETECT.TRC reports:
    <!--LOGHEADER[START]/-->
    <!--HELP[Manual modification of the header may cause parsing problem!]/-->
    <!--LOGGINGVERSION[2.0.7.1006]/-->
    <!--NAME[/usr/sap/S01/SUM/sdt/trc/DETECT.TRC]/-->
    <!--PATTERN[DETECT.TRC]/-->
    <!--FORMATTER[com.sap.tc.logging.TraceFormatter(%d [%s]: %-100l [%t]: %m)]/-->
    <!--ENCODING[UTF8]/-->
    <!--LOGHEADER[END]/-->
    May 6, 2014 3:23:56 PM [Error]:                                                                    com.sap.sdt.dmt.DMTFactoryManager [Thread[main,5,main]]: Property file dmt.properties not found in class path
    May 6, 2014 3:23:57 PM [Error]:                                                                  com.sap.sdt.jspm.JspmFactoryManager [Thread[main,5,main]]: Property file jspm.properties not found in class path
    May 6, 2014 3:23:57 PM [Error]:                                                                    com.sap.sdt.dmt.DMTFactoryManager [Thread[main,5,main]]: Property file dmt.properties not found in class path
    May 6, 2014 3:23:58 PM [Error]:                                                                  com.sap.sdt.jspm.JspmFactoryManager [Thread[main,5,main]]: Property file jspm.properties not found in class path
    May 6, 2014 3:23:59 PM [Error]:            com.sap.sdt.tools.sysinfo.unx.UnixDetermineOSInfo.setupUNIX(UnixDetermineOSInfo.java:131) [Thread[main,5,main]]: Can't retrieve C library version.
    May 6, 2014 3:23:59 PM [Error]:                                                         com.sap.sdt.server.core.admin.SDTServerAdmin [Thread[main,5,main]]: com.sap.sdt.tools.sysinfo.DetermineOSException: Can't retrieve C library version.
      at com.sap.sdt.tools.sysinfo.unx.UnixDetermineOSInfo.setupUNIX(UnixDetermineOSInfo.java:131)
      at com.sap.sdt.tools.sysinfo.unx.UnixDetermineOSInfo.<init>(UnixDetermineOSInfo.java:64)
      at com.sap.sdt.tools.sysinfo.unx.UnixOSInfoFactory.getOSInfo(UnixOSInfoFactory.java:29)
      at com.sap.sdt.j2ee.services.OSInfoServiceRetriever.retrieveOSInfo(OSInfoServiceRetriever.java:47)
      at com.sap.sdt.j2ee.services.SDTServiceProvider.detectOSInformation(SDTServiceProvider.java:587)
      at com.sap.sdt.j2ee.services.SDTServiceProvider.initServiceContext(SDTServiceProvider.java:414)
      at com.sap.sdt.j2ee.services.SDTServiceProvider.initialize(SDTServiceProvider.java:180)
      at com.sap.sdt.executor.service.ServiceAndBeanProviderFactory.getServiceAndBeanProvider(ServiceAndBeanProviderFactory.java:120)
      at com.sap.sdt.executor.usecase.UseCaseExecutionInitializer.getServiceBeanProviderWrapper(UseCaseExecutionInitializer.java:268)
      at com.sap.sdt.executor.usecase.UseCaseExecutionInitializer.initialize(UseCaseExecutionInitializer.java:155)
      at com.sap.sdt.executor.factory.UseCaseExecutorFactory.createUseCaseExecutor(UseCaseExecutorFactory.java:56)
      at com.sap.sdt.dsu.service.UseCaseService.createUseCaseExecutor(UseCaseService.java:1014)
      at com.sap.sdt.dsu.service.UseCaseService.initDetectUseCaseExecutor(UseCaseService.java:1027)
      at com.sap.sdt.dsu.service.UseCaseService.init(UseCaseService.java:166)
      at com.sap.sdt.server.core.services.Service.start(Service.java:94)
      at com.sap.sdt.server.core.admin.SDTServerAdmin.startServices(SDTServerAdmin.java:1155)
      at com.sap.sdt.server.core.admin.SDTServerAdmin.start(SDTServerAdmin.java:367)
      at com.sap.sdt.server.core.admin.SDTServerAdmin.runServer(SDTServerAdmin.java:847)
      at com.sap.sdt.server.core.admin.SDTServerAdmin.start(SDTServerAdmin.java:217)
      at com.sap.sdt.server.core.admin.SDTServerAdmin.main(SDTServerAdmin.java:126)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      at com.sap.sdt.bootstrap.BootStrap.start(BootStrap.java:169)
      at com.sap.sdt.bootstrap.Startup.start(Startup.java:140)
      at com.sap.sdt.bootstrap.Startup.main(Startup.java:356)
    May 6, 2014 3:23:59 PM [Error]:                 com.sap.sdt.j2ee.services.SDTServiceProvider.initialize(SDTServiceProvider.java:184) [Thread[main,5,main]]: Error while initializing service context.
    May 6, 2014 3:23:59 PM [Error]: com.sap.sdt.executor.service.ServiceAndBeanProviderFactory.getServiceAndBeanProvider(ServiceAndBeanProviderFactory.java:125) [Thread[main,5,main]]: Can't initilize sdt service provider
    May 6, 2014 3:23:59 PM [Error]:           com.sap.sdt.dsu.service.UseCaseService.initDetectUseCaseExecutor(UseCaseService.java:1031) [Thread[main,5,main]]: Creation of use case executor failed.
    May 6, 2014 3:23:59 PM [Fatal]:                 com.sap.sdt.server.core.admin.SDTServerAdmin.startServices(SDTServerAdmin.java:1165) [Thread[main,5,main]]: Error during controller startup.
    May 6, 2014 3:23:59 PM [Fatal]:                 com.sap.sdt.server.core.admin.SDTServerAdmin.startServices(SDTServerAdmin.java:1166) [Thread[main,5,main]]: SL Controller exiting.
    Any idea what could be wrong?
    Thanks,
    Sven

    SUM checks the libc version by parsing the output of 'ldd --version'.
    The java code looks like this:
    String[] parsedOutput = getCommandOutput("ldd", new ValueIF[] { new StringValue("--version") }).split("libc\\) ");
       if (parsedOutput.length > 1) {
       this.cLibraryVersion = parsedOutput[1];
      } else {
       throw new DetermineOSException("msg.tools.sysInfo.0078");
    With newer releases of libc, the output of ldd --version no longer contains a string matching the pattern "libc\\) ", so this fails.
    A rather quick-and-dirty workaround:
    - rename the ldd executable to ldd.exe
    - create the following shell script named ldd in /usr/bin:
    #!/bin/sh
    if [ $1 == "--version" ] ; then
      echo "libc) 2.17"
    else
      /usr/bin/ldd.exe $@
    fi
    As SUM ignores the PATH variable it is not possible to place the modified ldd into some other directory.
    br,
    Sebastian

  • Common iPhoto Library for 3 users

    I am trying to set up my iPhoto Library (08) so that three different authorized users can download pictures and use a common iPhoto library from their respective desktops. I have already set up the sharing of the file but each user has their individual library
    Thanks

    What you mean by 'share'.
    If you want the other users to be able to see the pics, but not add to, change or alter your library, then enable Sharing in your iPhoto (Preferences -> Sharing), leave iPhoto running and use Fast User Switching to open the other accounts. In that account, enable 'Look For Shared Libraries'. Your Library will appear in the other source panes.
    Any user can drag a pic from the Shared Library to their own in the iPhoto Window.
    Remember iPhoto must be running in both accounts for this to work.
    If you want the other user to have the same access to the library as you: to be able to add, edit, organise, keyword etc. The problem here is that OS X works very hard to keep your data safe and secure from the other users. You're trying to beat what's built in to the system. So, to beat the system
    Quit iPhoto in both accounts
    Move the iPhoto Library Folder to an external HD set to ignore permissions. You could also use a Disk Image or even partition your Hard Disk.
    In each account in turn: Hold down the option (or alt) key and launch iPhoto. From the resulting dialogue, select 'Choose Library' and navigate to the new library location. From that point on, this will be the default library location. Both accounts will have full access to the library, in fact, both accounts will 'own' it.
    However, there is a catch with this system and it is a significant one. iPhoto is not a multi-user app., it does not have the code to negotiate two users simultaneously writing to the database, and trying will cause db corruption. So only one user at a time, and back up, back up back up.
    Lastly: This method seems a little clunky at first, but works very well. Most importantly, it uses the System to do the job for you.
    Create a new Account on your Mac, call it Media. Create an iPhoto Library there. (BTW: This will work for iTunes too.)
    Enable Sharing on the Library:(Preferences -> Sharing), leave iPhoto running and use Fast User Switching to open the other accounts. In those accounts, enable 'Look For Shared Libraries'. The Library will appear in the other source pane.
    This means that all users will be able to see the pics. If you want to use a pic then simply drag it from the shared Library to your own in the iPhoto Window. This means that each user can have their own edits.
    If you want to add photos to the Library: Log into the Media account for that purpose.
    To make it all seamless: Set your Mac to log into the Media Account automatically. Set iPhoto to launch on log-in. Then switch to your own account using Fast User Switching.
    Net result: a Library that's permanently available to all users but also protected. Each user can have their own versions of the pics if they want.
    No partitioning, no permissions issues. Uses no extra disk space. What's not to like?
    Regards
    TD

  • Dashcode quits at the startup, Incompatible library version

    Hi all, I'm on Snow Leopard (10.6.8) and I have a problem with Dashcode.
    It quits at the startup because:
    Dyld Error Message:   Library not loaded: /usr/lib/libcurl.4.dylib  
    Referenced from: /Applications/Utilities/Dashcode.app/Contents/MacOS/../Frameworks/CYKit.
    Reason: Incompatible library version: CYKit requires version 7.0.0 or later, but libcurl.4.dylib provides version 6.0.0
    How do I do?
    Is it possible to update this Library?
    Sorry if the question is dummy, I'm totally newbie...
    thank you in advance for your help

    Hi! no one can give me some help? please...

  • Jakarta Commons Lang

    Hi,
    I am using JSP and Mysql for my application. I have a form with textarea fields. When user clicks submit, the values entered, are stored into the database. Currently am not able to use escape characters such as "'" or " "" "..
    I have already download Jakarta Commons Lang jar file and have also updated my classpath. My problem is, how will I use this jar file with JSP to solve the problem.
    Pls Help,
    Aarushi

    What exactly is the problem?
    Saving the value to the database?
    Displaying the value back on the screen?
    How are you saving the value?
    Are you using a prepared statement with parameters or just concatenating together a SQL string?
    If the problem is that you need the user to be able to type ' and " into the textfields, then PreparedStatements should solve that issue.
    Cheers,
    evnafets

  • OCCI version problem

    Hi,
    I am having a version problem with 9i.
    How can i compile OCCI with 9i database installetion?
    Which library would i need?
    my server is a SOL-Sparc-64 machine
    and oracle database server is installed there versiion oracle 9i 32bit.
    I tried to compile but it gives me error like....
    Undefined first referenced
    symbol in file
    main /usr/local/lib/gcc/sparc-sun-solaris2.9/3.4.2/crt1.o
    __1cG__CrunKpure_error6F_v_ /data/Indranil/prasenjit/clientlib/libocci.so
    __1cDstdbC__RTTI__1nDstdMlength_error__ /data/Indranil/prasenjit/clientlib/libocci.so
    __1cDstdMout_of_range2T6M_v_ /data/Indranil/prasenjit/clientlib/libocci.so
    __1cDstdMbasic_string4Ccn0ALchar_traits4Cc__n0AJallocator4Cc___2G6Mpkc_r1_ /data/Indranil/prasenjit/clientlib/libocci.so
    __1cG__CrunIex_alloc6FI_pv_ /data/Indranil/prasenjit/clientlib/libocci.so
    __1cG__CrunIex_throw6Fpvpkn0AQstatic_type_info_pF1_v_v_ /data/Indranil/prasenjit/clientlib/libocci.so
    __1cDstdMbasic_string4Ccn0ALchar_traits4Cc__n0AJallocator4Cc___2G6Mrk1_r1_ /data/Indranil/prasenjit/clientlib/libocci.so
    __1cDstdMbasic_string4Ccn0ALchar_traits4Cc__n0AJallocator4Cc___2t6MpkcIrkn0C__v_ /data/Indranil/prasenjit/clientlib/libocci.so
    __1cH__rwstdRexcept_msg_string2t6MIE_v_ /data/Indranil/prasenjit/clientlib/libocci.so
    Please tell me how to do it.
    Edited by: user652233 on Oct 16, 2008 1:18 AM

    Hello,
    I am trying to compile my C++ code (using OCCI) on Sun Solaris 5.9 (SPARC64PLUS) environment.
    We have compiled and tested it on RHEL 5 Linux.
    The Oracle (10g R3) database is on RHEL 5 server while OCCI/C++ application would be running on Sun Solaris 5.9 server.
    Since we have no Oracle installation on the Sun Solaris 5.9 server, there are no OCCI related libraries on this server and hence we are not able to compile our C++ code on Sun Solaris 5.9
    Can someone help me on how/where to download OCCI libraries (compile time as well as run time) for Solaris 5.9 ? I could find only Windows and RHEL versions of OCCI libraries on the Oracle website.
    Also, how stable is OCCI on Solaris 5.9 ?
    Regards,

  • Unable to load Adobe InDesign CC 2014 Type Library (Version 1.0)

    Good evening,
    I've just upgraded ID from CC to CC 2014 and now a script that had always run without issue now won't work. I get an error saying 'Unable to load Adobe InDesign CC 2014 Type Library (Version 1.0)'
    The bit of code I was running was executing a little VB script copying files:
            var vbScript = 'Set fs = CreateObject("Scripting.FileSystemObject")\r';
            vbScript +=  'fs.CopyFile "' + f.fsName.replace("\\", "\\\\") + '", "' + destinationFolder.fsName.replace("\\", "\\\\") + "\\" + f.name + '"';
            app.doScript(vbScript, ScriptLanguage.visualBasic);
    From trawling the net I can see stuff about the 'Resources for Visual Basic.tlb' file. I can see this in the C:\ProgramData\Adobe\InDesign\Version 10.0\en_GB\Scripting Support\10.1 folder but clearly it isn't registered or something similar.
    Can anyone help me get past this problem?
    Thanks for any help.

    Thanks for your prompt reply.
    Do you mean copy the 'Resources for Visual Basic.tlb' into the Version 9 folder?
    If so I already have the file in there: "C:\ProgramData\Adobe\InDesign\Version 9.0\en_US\Scripting Support\9.0\Resources for Visual Basic.tlb" as well as the file in this location: "C:\ProgramData\Adobe\InDesign\Version 10.0\en_US\Scripting Support\10.1\Resources for Visual Basic.tlb"
    The only difference between the 2 installs that I can see is that v10 also has a locale for en_GB.

  • Incompatible library version of fontconfig

    Hello,
    Just in case there's a quick fix... I'm getting this message on my mac which was running this application (called "root") without problems until about 2 weeks ago. I guess some software update must have overwritten the right version of fontconfig. Maybe someone has advice?
    Cheers,
    Ricardo
    $ root
    dyld: Library not loaded: /usr/X11/lib/libfontconfig.1.dylib
    Referenced from: /usr/X11/lib/libXft.2.dylib
    Reason: Incompatible library version: libXft.2.dylib requires version 5.0.0 or later, but libfontconfig.1.dylib provides version 3.0.0
    Trace/BPT trap

    This is the root homepage:
    http://root.cern.ch/
    And yes, it's also the name of the admin account. I just posted to the unix forum, thanks for the tip.

  • How do I share a common iTunes library with another family member

    How do I share a common iTunes library with another family member

    One of these articles might help (seeing that you didn't divulge any info on what sort of set up you have):
    http://support.apple.com/kb/ht2688
    https://www.apple.com/au/support/itunes/library/
    http://support.apple.com/kb/ht1203

  • HT1229 My iPhoto Library (version 8.1.2) is 280GB (greater than 50% of my 500GB total storage memory on my iMac.  It was too large for me to drag it to a new hard drive so the Apple geniuses did it for me.  However they did not delete the Library from my

    My iPhoto Library (version 8.1.2) is 280GB (greater than 50% of my 500GB total storage memory on my iMac.  It was too large for me to drag it to a new hard drive so the Apple geniuses did it for me.  However they did not delete the Library from my iMac (that's my responsibility).  I dragged it to Trash and when it started to move I clicked over to the new hard drive to confirm it had indeed been copied.  I became nervous when I didn't see among the few files on this otherwise empty new hard drive anything that resembled a 280GB Library so I cancelled the migration to trash.
    How can I be sure that my iphoto has been copied and that all my "metadata" survived in tact?

    the new backup drive
    I thought the new drive would be your data drive to host the iPhoto library. Do you also use it for TimeMachine backups?
    I am unable to search either in email as well as Finder.  I AM able to search within iPhoto though, thankfully
    Spotlight may still be busy rebuildig its index.
    You could try to rebuild the Spotlight Index, if you do see no progress:
    Spotlight: How to re-index folders or volumes
    I hope, other frequent posters will drop in. I have not used iPhoto 8.x in long time.

  • HT204074 I have a PC at work and a Mac at home. Both run Itunes under same Apple ID account.  How can I sync both computers to a common song library?  ITunes Match?

    I have a PC at work and a Mac at home. Both run Itunes under same Apple ID account.  Each computer's itunes library is common by around 75% of the songs.  How can I sync both computers to a common song library, so that all songs can be updated for both computers?  Will ITunes Match do that?

    I solved this by reset of the Wifi (unplug cable and power to both modem and wifi ... wait 60 sec ... plug in modem cable and power ... plug in wifi power and LAN to modem ... restart AppleTV and Mac ... Turn Home Share 'OFF' in iTunes then back "ON" ... it took ~60 sec for the AppleTV to pick up my Mac in computers.

Maybe you are looking for

  • Ant File Problem in Eclipse

    Hey guys, I am having alot of trouble getting a simple ant buildfile to work in eclipse. I am following the tutorial on here (the part about ant files): http://help.eclipse.org/help32/index.jsp?topic=/org.eclipse.platform.doc.user/gettingStarted/qs-9

  • Lg g3 static in earpiece during phone calls

    I am on my second LG G3 and i want some answers as to why i have static in my earpiece when i am on the phone...not listening to music i've not even tried that yet not had either one of them long enough to do that .  i really don't want another phone

  • Get-aduser - Export-CSV -- POWERSHELL

    I need help in getting this command to export the data into a CSV. Get-ADUser -Filter * -Properties whenCreated | Where-Object {$_.whenCreated -ge ((Get-Date).AddDays(-30)).Date} | FL SamAccountName, Name, DistinguishedName, whenCreated | Export-Csv

  • Cross-Platform Password Creator/Storage/AutoFiller

    I wanted to know if anyone can recommend an application that's compatible on a Mac and a PC, that I could use to generate, store, and even auto-fill website passwords...Something along the lines of '1Passwrd' (Mac App) or 'Roboform' (PC App)... Any s

  • How to make a noneditable Combobox?

    I was stunned to find my new application with 52 comboboxes all editable by default.  My customers went ballistic when they saw that.  Why aren't comboboxes non-editable?  I looked everywhere for the last 4 hours and couldn't find anything related to