Failed to load META-INF/application.xml when upgrading to wls9.2

We are migrating our weblogic server from 8.1 to 9.2. Tried to use DDConverter to convert the EJB deployment descriptor, but when I ran weblogic.appc, I got the following error :
<i><Error> <J2EE> <BEA-160197> <Unable to load descriptor D:\workspace\webshopEJB\wl9.2/META-INF/application.xml of module webshopLogic. The error is weblogic.descriptor.DescriptorException: Unmarshaller failed</i>
and
<i>Caused by: com.bea.xml.XmlException: failed to load java type corresponding to e=application@http://java.sun.com/xml/ns/j2ee</i>
Here is my application.xml
<b><?xml version="1.0" encoding="UTF-8"?>
<application xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.4">
<description>webshop EJB module</description>
<display-name>webshop Logic EJB</display-name>
<module>
<ejb>webshopLogic</ejb>
</module>
</application></b>
I checked for classpath, and still no clue about what's going wrong. Thanks in advance for any help.

I believe this likely is a classpath problem. I'd start by using the setWLSEnv.cmd or .sh script in the kit. That should set the classpath correctly.
Also, FWIW it wasn't required to run DDConverter. You could have used your 8.1 descriptors unchanged in 9.x as well.
-- Rob
WLS Blog http://dev2dev.bea.com/blog/rwoollen/

Similar Messages

  • No META-INF/application.xml was found in the EAR

    I create a EAR using:
    jar -cvf e:\workspace\otnapp\otnapp.ear
    Then, I depoy this EAR through:
    e:\jdk160_18\bin>java weblogic.Deployer -adminurl t3:\\localhost:7001 -user weblogic -passwork welcome1 -deploy -upload e:\workspace\otnapp\otnapp.ear
    But, I get errors as follow:
    java.io.IOException: No META-INF/application.xml was found in the EAR otnapp.ear
    How to change the jar in the command line?

    otnapp is an adf web application. META-INF is not in the E:\soaworkspace\otnapp.
    It is in the :
    E:\SOAworkspace\otnapp\.adf\META-INF
    E:\SOAworkspace\otnapp\Model\classes\META-INF
    E:\SOAworkspace\otnapp\src\META-INF
    None of them contains application.xml.
    I run jar in E:\soaworkspace\otnapp. But I get error : 'jar' is not recognized as an internal or external command, operable program or batch file.
    Microsoft Windows [Version 6.0.6001]
    Copyright (c) 2006 Microsoft Corporation. All rights reserved.
    C:\Users\Administrator>d:
    D:\>e:
    E:\>cd E:\soaworkspace\otnapp
    E:\SOAworkspace\otnapp>jar -cvf otnapp.ear
    'jar' is not recognized as an internal or external command, operable program or batch file.
    E:\SOAworkspace\otnapp>jar -cvf otnapp.ear */ .
    'jar' is not recognized as an internal or external command, operable program or batch file.
    E:\SOAworkspace\otnapp>set java_home
    JAVA_HOME=E:\OracleBI_win2008_32_20101206\jdk160_18
    path=
    CD:\apache-maven-2.0.11\bin;C:\app\Administrator\product\11.2.0\dbhome_1\bin;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;C:\Program Files\Common Files\Thunder Network\KanKan\Codecs;C:\apps\FME\;C:\Program Files\Subversion\bin;C:\Program Files\TortoiseSVN\bin;D:\win2008EclipseWorkspace;E:\OracleBI_win2008_32_20101206\Oracle_BI1\bin;E:\OracleBI_win2008_32_20101206\Oracle_BI1\opmn\bin;E:\OracleBI_win2008_32_20101206\Oracle_BI1\opmn\lib;E:\OracleBI_win2008_32_20101206\Oracle_BI1\perl\bin;%JAVA_HOME%\bin;CATALINA_HOME\bin;C:\Users\Administrator>E:\SOAworkspace\otnapp>

  • Unable to find/read file META-INF/ra.xml

    When using the oc4j_admin_client to deploy an ear to a oas cluster I get this error, but only sometimes. I cannot find anything on the web that explains what might be causing this to occur. I'm guessing it might be with the configuration of OAS but even so I have no idea where to look. If anyone out there can give some advice it would help. Thanks,
    [Summary] There are total 1 instances in the operation.
    [Summary] Operation failed on applicationServerName/instanceName
    [Summary] Operation on cluster FAILED since 1 instanced failed!
    FINE: CoreRemoteMBeanServer.release call release on CoreRemoteMBeanServer: oracle.oc4j.admin.management.mejb.MEjb@5c1ae90c
    FINE: CoreRemoteMBeanServer.release Call remove on MBeanServer EJB
    FINE: CoreRemoteMBeanServer.release Call close on RMI Context: javax.naming.InitialContext@1629ce8c
    SEVERE: J2EEDeploymentManager.deploy Deploy error: Operation failed with error:
    Unable to find/read file META-INF/ra.xml in D:\oracle\u01\oas\10.1.3\j2ee\instanceName\connectors\AppName\AppName archive (IO Error: D:\oracle\u01\oas\10.1.3\j2ee\instanceName\connectors\AppName\AppName (The system cannot find the pat
    h specified))
    oracle.oc4j.admin.deploy.api.J2EEDeploymentException: Operation failed with error:

    Hi forum-hog,
    I think this is due to a known product defect. The patch is available and can be downloaded and installed.
    Please try the following:
    1) Download and apply patch 9073284
    2) Perform the deployment again
    Hope this helps.
    Thanks,
    Cris

  • META-INF/context.xml, Tomcat, META-INF/services

    I presently have a Netbeans project laid out like this:
    src
    src\java
    web
    web\META-INF
    web\META-INF\context.xml
    etc. Tomcat finds that META-INF/context.xml OK and does what I expect with it.
    I have recently added something that is loaded by java.util.ServiceLoader, which requires a META-INF/services/x.y.z file containing the name(s) of the classes that implement x.y.z. After deployment, my webapp's ServiceLoader doesn't find it, because in the target it isn't in WEB-INF/classes/META-INF/services/x.y.z. If I put it into src/java/META-INF/services/x.y.z it works correctly, as it then ends up in the right place. However I'm now concerned that either Tomcat won't find the context.xml if I put it in the same place under src, because it would then not be in /META-INF/context.xml but rather /WEB-INF/classes/META-INF/context.xml, which in turn would mean that I would then need two META-INF directories. I'm about to test that conjecture about Tomcat finding it under WEB-INF/classes/META-INF, but I'm wondering whether I'm doing something basically wrong in the first place here.

    You seem to think that you can have only one META-INF directory; this is simply not true. Keep both your META-INF directories and put the files where they are expected. Yay for using overlapping names :/

  • Where to place /META-INF/context.xml ?

    Hi,
    Apologies, but this is a newbie question. In the tomcat docs, it states that
    "A /META-INF/context.xml file can be used to define Tomcat specific configuration..."
    Could you please tell me where /META-INF/context.xml is placed relative to web application root? In other words, if I have a web application in a directory /MyWebApp, should the /META-INF dir be in /MyWebApp/META-INF or should it be under /WEB-INF?
    Thanks.
    Ben

    You seem to think that you can have only one META-INF directory; this is simply not true. Keep both your META-INF directories and put the files where they are expected. Yay for using overlapping names :/

  • ERROR ITMS-9000: "META-INF/container.xml must contain one and only one root file reference."

    Hi all,
    After correcting a table-of-contents error in my .epub file, I am unable to upload it via iTunes Producer. It lists this error message:
    ERROR ITMS-9000: "META-INF/container.xml in 9780615431727.epub must contain one and only one root file reference." at Book (MZItmspBookPackage)
    The file has been verified and only has one root file reference in the container.xml file.
    Has anyone been able to find a solution to this problem?
    Thanks!

    Hello Forum Users…
    For those of you who have run into the upload roadblock, getting an error message similar to this:
    Package Summary:
    1 package(s) were not uploaded because they had problems:
              /Users/slm/Desktop/MUSIC to PICTURE for IBOOK/2012 MTP for iTUNES Bookstore/9780615600918.itmsp - Error Messages:
                        Apple's web service operation was not successful
                        Unable to authenticate the package: 9780615600918.itmsp
                        ERROR ITMS-9000: "OPS/ibooks.ncx(5): 'p50': fragment identifier is not defined in 'OPS/content9.xhtml'" at Book (MZItmspBookPackage)
    Following is a "specific" fix, but the idea of the fix will help you with your specifics too.
    I tried for 17 days to upload a book that looked and worked perfectly in iPAD via Preview.
    After many discussions with Apple, who to their credit stayed with me over 2-3 days, I decided to play a hunch.
    I went into a duplicated copy of the book and on every page, (because the error message was not telling the whole story), looked for what InDesign would call "Overset Text."
    Now... the "flaw" in iBOOK Author (hint) is that it won't advise you of this "overset text" as does InDesign.
    And to compound the matter, the exported ePUB document WORKS in iPAD Preview.
    See Screenshots from InDesign:
      Okay... Couldn't add it but it is a Warning Box that says there is overset text. (Characters which exceed the text box.)
    Nevertheless, I played this hunch, and sure enough found a few boxes with the + in them.  In other words I clicked on EVERY text holder and every text block in the entire document.
    Where I found + signs, I simply deleted some carriage returns from the iBOOK file... (please note… carriage returns and literally empty spaces that caused the overset text) and then erased all previous copies of the Music to Picture Book on my hard drive,  iTUNES and iPAD.
    The result?  A "text-book" upload with no snags!  As my Son would say… "Victory!"
    So, first make sure that you are using only PNGs, Jpegs and Movie files to iBook Specs.  Then... make sure there are no overset text boxes, which you must do manually.
    Enjoy & Godspeed!
    Steve
    Stephen Melillo, Composer
    STORMWORKS®
    209 Spinnaker Run
    Smithfield, VA 23430-5623
    USA
    v/f 757-356-1928
    stormworld.com
    “History is a vast early warning system.” Norman Cousins, editor and author (1915-1990)
    "This will be our reply to violence: to make music more intensely, more beautifully, more devotedly than ever before." Leonard Bernstein
    “If you have a chance to help someone, and you don’t, you are wasting your time on this earth.”  Roberto Clemente

  • Failed to load weblogic-ejb-jar.xml

    Hi,
    I try to deploy an EJB on Weblogic 9.1, but the weblogic-ejb-jar seems to cause this exception :
    ======================================================
    [wlappc] <30 oct. 2006 12 h 13 CET> <Error> <J2EE> <BEA-160187> <weblogic.appc failed to compile your application. Recompile with the -verbose option for more details. Please see the error message(s) below.>
    [wlappc] com.bea.xml.XmlException: failed to load java type corresponding to e=weblogic-ejb-jar@http://www.bea.com/ns/weblogic/910
    [wlappc] at com.bea.staxb.runtime.internal.UnmarshalResult.getPojoBindingType(UnmarshalResult.java:325)
    [wlappc] at com.bea.staxb.runtime.internal.UnmarshalResult.determineTypeForGlobalElement(UnmarshalResult.java:292)
    [wlappc] at com.bea.staxb.runtime.internal.UnmarshalResult.determineTypeForGlobalElement(UnmarshalResult.java:302)
    [wlappc] at com.bea.staxb.runtime.internal.UnmarshalResult.determineRootType(UnmarshalResult.java:283)
    [wlappc] at com.bea.staxb.runtime.internal.UnmarshalResult.unmarshalDocument(UnmarshalResult.java:153)
    [wlappc] at com.bea.staxb.runtime.internal.UnmarshallerImpl.unmarshal(UnmarshallerImpl.java:65)
    [wlappc] at weblogic.descriptor.internal.MarshallerFactory$1.createDescriptor(MarshallerFactory.java:138)
    [wlappc] at weblogic.descriptor.DescriptorManager.createDescriptor(DescriptorManager.java:271)
    [wlappc] at weblogic.descriptor.DescriptorManager.createDescriptor(DescriptorManager.java:240)
    [wlappc] at weblogic.descriptor.DescriptorManager.createDescriptor(DescriptorManager.java:300)
    [wlappc] at weblogic.application.descriptor.AbstractDescriptorLoader.createDescriptor(AbstractDescriptorLoader.java:344)
    [wlappc] at weblogic.application.descriptor.CachingDescriptorLoader.createDescriptor(CachingDescriptorLoader.java:188)
    [wlappc] at weblogic.application.descriptor.AbstractDescriptorLoader.createDescriptor(AbstractDescriptorLoader.java:328)
    [wlappc] at weblogic.application.descriptor.AbstractDescriptorLoader.getDescriptor(AbstractDescriptorLoader.java:237)
    [wlappc] at weblogic.application.descriptor.AbstractDescriptorLoader.getRootDescriptorBean(AbstractDescriptorLoader.java:217)
    [wlappc] at weblogic.ejb.spi.EjbJarDescriptor.parseWeblogicEjbJarBean(EjbJarDescriptor.java:171)
    [wlappc] at weblogic.ejb.container.dd.xml.DDUtils.processWLEjbJarXMLWithSchema(DDUtils.java:706)
    [wlappc] at weblogic.ejb.container.dd.xml.DDUtils.parseWLDD(DDUtils.java:535)
    [wlappc] at weblogic.ejb.container.dd.xml.DDUtils.createDescriptorFromJarFile(DDUtils.java:358)
    [wlappc] at weblogic.ejb.container.dd.xml.DDUtils.createReadOnlyDescriptorFromJarFile(DDUtils.java:141)
    [wlappc] at weblogic.ejb.container.ejbc.EJBCompiler.parseDescriptors(EJBCompiler.java:1345)
    [wlappc] at weblogic.ejb.container.ejbc.EJBCompiler.compileEJB(EJBCompiler.java:431)
    [wlappc] at weblogic.application.compiler.AppcUtils.compileEJB(AppcUtils.java:292)
    [wlappc] at weblogic.application.compiler.EJBCompiler.compile(EJBCompiler.java:95)
    [wlappc] at weblogic.application.compiler.flow.AppCompilerFlow.compileInput(AppCompilerFlow.java:113)
    [wlappc] at weblogic.application.compiler.flow.AppCompilerFlow.compile(AppCompilerFlow.java:43)
    [wlappc] at weblogic.application.compiler.FlowDriver$FlowStateChange.next(FlowDriver.java:55)
    [wlappc] at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
    [wlappc] at weblogic.application.compiler.FlowDriver.run(FlowDriver.java:24)
    [wlappc] at weblogic.application.compiler.Appc.runBody(Appc.java:151)
    [wlappc] at weblogic.utils.compiler.Tool.run(Tool.java:158)
    [wlappc] at weblogic.utils.compiler.Tool.run(Tool.java:115)
    ======================================================
    Here is my weblogic-ejb-jar.xml file :
    ======================================================
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <weblogic-ejb-jar xmlns="http://www.bea.com/ns/weblogic/910"
              xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
              xsi:schemaLocation="http://www.bea.com/ns/weblogic/910
              http://www.bea.com/ns/weblogic/910/weblogic-ejb-jar.xsd">
    <weblogic-enterprise-bean>
    <ejb-name>MyMDB</ejb-name>
    <message-driven-descriptor>
         <resource-adapter-jndi-name>ActiveMQRA</resource-adapter-jndi-name>
         <connection-factory-jndi-name>myQCF</connection-factory-jndi-name>
    </message-driven-descriptor>
    <resource-description>
    <res-ref-name>jms/factory</res-ref-name>
    <jndi-name>myQCF</jndi-name>
    </resource-description>
    <resource-env-description>
    <resource-env-ref-name>jms/queue</resource-env-ref-name>
    <jndi-name>queue.out</jndi-name>
    </resource-env-description>
    </weblogic-enterprise-bean>
    </weblogic-ejb-jar>
    ======================================================
    So, it looks like this problem : http://forums.bea.com/bea/message.jspa?messageID=600018030&tstart=0
    I just need a confirmation :
    - is the "res-ref-name" format incorrect with '/' character ?
    - is the jndi-name format incorrect with '.' character ?
    Else, what is the problem with this DD ?
    Thanks,
    Rudy

    "shubha" <[email protected]> wrote:
    >
    hi ,
    Ejb with ejb-name 'hellobean' in ejb-jar.xml
    should be specified in weblogic-ejb-jar.xml with <weblogic-enterprise-bean></weblogic-enterprise-bean>
    i am having problem in deploying the most simple bean on wls7.0 .
    when i try to open the bean module with the weblogic builder i get the
    following
    message
    weblogic.ejb20.WLDeploymentException: Could not locate bean with ejb-name
    'hellobean'
    in weblogic-ejb-jar.xml
         at weblogic.ejb20.deployer.CompositeMBeanDescriptor.initialize60(CompositeMBeanDescriptor.java:249)
         at weblogic.ejb20.deployer.CompositeMBeanDescriptor.init(CompositeMBeanDescriptor.java:180)
         at weblogic.ejb20.deployer.CompositeMBeanDescriptor.<init>(CompositeMBeanDescriptor.java:171)
         at weblogic.marathon.model.EJBJarCMBean.setup(EJBJarCMBean.java:408)
         at weblogic.marathon.tasks.OpenModuleTask.figureOutModule(OpenModuleTask.java:76)
         at weblogic.marathon.tasks.OpenModuleTask.figureOutModule(OpenModuleTask.java:109)
         at weblogic.marathon.tasks.OpenModuleTask.runBackground(OpenModuleTask.java:64)
         at weblogic.jellybeans.core.task.TaskThread.execute(TaskThread.java:114)
         at weblogic.jellybeans.core.task.TaskThread.run(TaskThread.java:55)
    Could not locate bean with ejb-name 'hellobean' in weblogic-ejb-jar.xml
    Module hello1 descriptors failed to load
    if anyone has come across the same problem and have debugged it please
    help me
    out
    thanks in advance

  • **SOLUTION** DLLML.exe Fails to load at startup (application error)

    Hello everyone!
    I purchased the SB X-Fi Fatalty Champion Edition soon after release, and think this is the best card I have ever used to date. Absolutely love it, unbelievable sound.
    Now a year or two ago I noticed a certain file failing to load when I started windows.
    This file, DLLML.exe. To my understanding this file is used to load EAX emulation support into older games/modules (essential loads a "middle-man" file between the game's sound files/.dll's, and the hardware SPU [Sound Processing Unit, not a real acronym, but that's what I call it since GPU and CPU are similar distincti've acronyms so if you see it used anywhere, it came from me ] to allow EAX support in non-EAX enabled games), and/or to add EAX effects in your audio files using the Wave Studio app.
    I've pinpointed this issue to either a Windows Update, or the Creative auto-update (which could mean it is an error caused by an installaion combination of multiple apps at once) because this issue did not arise until I did these two things (did Windows Update, then Creative Auto-Update, then restarted computer).
    Now I've primarily had this issue with Windows XP x64 but I have had this issue at times with Windows XP x86 as well.
    After you install the software suite, it adds an entry in your Windows Startup to load the module (Start/Run. msconfig. Startup tab. Look for STARTUP ITEM: DLLML). The entry looks like this:
    WinXPx86 looks like: "C:\Program Files\Creative\Shared Files\Module Loader\DLLML.exe" RCSystem * -Startup
    WinXPx64 looks like: "C:\Program Files (x86)\Creative\Shared Files\Module Loader\DLLML.exe" RCSystem * -Startup
    Under most circumstances this module loads fine, but because Creative, for reasons why I have not delved into, loads some of their DLL files differently than the Windows standard, which may also be a cause of this issue (extremely unlikely, I believe it is one of the 2 things i mentioned above).
    Either way, after I did those 2 things, the DLLML.exe startup entry failed to load every time.
    But I fixed it.
    Now what you have to do to resolve this issue, involves editing the startup entry in the Windows Registry.
    If you are scared to go into it, have no idea what I am talking about, or never edited the Registry before, don't worry. If you follow these steps EXACTLY, you have nothing to fear.
    I will be using default installation parameters for file pathing, so if your Operating System is installed in a different dri've letter other than C:\, then just change the letter to the one your OS is installed onto.
    Capitals used for emphesis on actions to take:
    -Hit the START button, then select RUN
    --------If RUN is not in your start menu, you need to enable it by right-clicking and open area of your TASKBAR, select PROPERTIES. --------Click the START MENU tab, then the CUSTOMIZE button. Click the ADVANCED tab. In the START MENU ITEMS box, scroll down to the entry that says SHOW RUN. Check the checkbox to fill it. Then OK/APPLY/OK, and you should be back to the desktop. Then go to START/RUN
    -type the word REGEDIT
    --------This opens the Windows Registry.
    --------DO NOT change ANYTHING in this other than the exact directions I specify or you may corrupt your registry or even worse, corrupt your system, which means F&R time (Format & Reinstall). Treat it like a stripper. You can look all you want but don't touch or there could be dire consequences.
    --------Now the fastest way to find this is to manually navigate to the specific "key" or "entry" you need to modify. Mouse-click the +'s to navitage further into the "hi've" following these maps:
    -FOR WINDOWS XP x86 USERS NAVIGATE TO: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Run
    -FOR WINDOWS XP x64 USERS NAVITAGE TO: HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432\Microsoft\Wind ows\CurrentVersion\Run
    --------Now you are looking for a specific entry NAME called RCSYSTEM. Depending on which version you are running. They are:
    -FOR WINDOWS XP x86 USERS: "C:\Program Files\Creative\Shared Files\Module Loader\DLLML.exe" RCSystem * -Startup
    -FOR WINDOWS XP x64 USERS: "C:\Program Files (x86)\Creative\Shared Files\Module Loader\DLLML.exe" RCSystem * -Startup
    -------Now we are going to edit the entry. What we need to do is get rid of that * (asterix) character in the name. I don't know why it is there, I'm thinking it may be a coding error. But in my WinXPx64, this was the culprit.
    -Double-click the RCSYSTEM key to edit it, and edit it so it looks EXACTLY LIKE THIS (If you're paranoid about doing something bad, COPY and PASTE this line pertaining to your installed OS. KEEP IN MIND THE INSTALLATION DRIVE LETTER, CHANGE FIRST LETTER IF NESCESSARY)
    -FOR WINDOWS XP x86 USERS: "C:\Program Files\Creative\Shared Files\Module Loader\DLLML.exe" RCSystem -Startup
    -FOR WINDOWS XP x64 USERS: "C:\Program Files (x86)\Creative\Shared Files\Module Loader\DLLML.exe" RCSystem -Startup
    -click OK button. Now it is changed.
    -------And we're DONE EDITING the Registry entry!
    -now go to FILE in the top-left menu, then select EXIT
    -RESTART your computer
    -------You should not receive the "DLLML.exe failed to load" (application error) again!!
    To check to see if it loaded into your system properly (as if not getting the error message anymore was proof enough it loaded properly), when you reboot back to the desktop, do the "three-fingered salute" (ctrl-alt-delete), then select the PROCESSES tab. Click on the IMAGE NAME heading to sort it alphabetically, and look for the name (WinXPx86) DLLML.exe or (WinXPx64) DLLML.exe *32.
    If you see it listed, it loaded!! CONGRATS, IT BE FIXED!!
    If this did not work for you, then your system is posessed, get a priest. I don't think a witchdoctor would give your comp good vibes O_o
    Hope this resolved it for you. Enjoy your EAX with Duke Nukem 3d again!
    EDIT: As a side note, I also noticed that since after this fix, my computer doesn't hang after sending the restart/shutdown killsignal, so I am wondering with people having similar hanging issues, if their issue could be resolved something similar to this.
    Just a thought for any admins/mods/users out there that know what they are doing that maybe wanna test that out.
    Sincerely,
    Jason Ostapyk
    3yr degree, MCP, CCNA, A+ certified, Specialised Electrician Class M Licensed

    G Kudos for a brilliant finding! After a Windows Hotfix on my XP SP3, when shutting down my PC I would wait for a program and then get an error that EAX was not responding before finally shutting down. On next reboot I lost sound on my PC. After running tests, the Direct Sound test failed pointing at EAX.
    This solution cured the problem. Again, kudos, job really well done!!!

  • ServerAdmin fails to load file lists for shares when bound to OD

    Hello,
    We're experiencing an issue on a couple of our Mac servers recently with Server Admin.  We're an all Open Directory environment with DNS running on BIND on a Linux.
    When using Server Admin (even locally on the server), browsing file shares in AFP, SMB, or NFS fails to load lists and permissions.  Sometimes it does, after a long wait and a spinning gear.  I've narrowed it down to only occuring when connected to our Open Directory master, either as a replica or simply authenticating against it.  As soon as I disconnect from OD, things are as fast as expected.
    This isn't limited to share points - even browsing the local volumes in Server Admin is extremely slow to load, if it even loads at all.
    This issue doesn't occur on the server running the OD master, however (browsing its own file shares).
    Using the command line (sharing -l) is instant on those servers, too.
    DNS seems to be fine on each server - A records point to the correct addresses and PTRs point back.  A "changeip --checkhostname" returns successful.
    In addition, I have the following DNS records:
    _kerberos-adm._tcp  SRV 0 0 749 odmaster.example.tld.
    $ORIGIN _udp.odmaster.example.tld.
    _kerberos       SRV 10 0 88 odmaster.example.tld.
    _kerberos-master    SRV 0 0 88 odmaster.example.tld.
    _kpasswd        SRV 0 0 464 odmaster.example.tld
    Additionally, both servers with the issues have been completely reinstalled from scratch without importing any preferences or settings.  Initially, I thought it might be 10.6.7+, so I only applied the 10.6.6 combo update, but the issue persists.
    Any insight here?
    Thanks
    Edit:  When it occurs, I have a bunch of the following in my system.log:
    8/10/11 2:48:51 PM          Server Admin[376]          gotServerError:kNetworkError forTransaction:<XSAdminTransaction: 0x118a2d8e0>

    Fixed!
    I was watching my DNS logs for one of the hosts in question and noticed it was looking up another server that's been offline for a few months.
    I looked on the OD master for what it had for automounts and noticed it had several "stale" automounts for a few servers that are offline.
    dscl -u diradmin -p /LDAPv3/127.0.0.1 -list /Mounts
    I deleted those (e.x. dscl -u diradmin -p LDAPv3/127.0.0.1 -delete /Mounts/server1.tld:\\/sharename)
    Now things are snappy again.  Hope this helps someone else that may encounter such an issue.

  • Error message 'The Outlook data file (.pst) failed to load for this session.' when adding PST in Outlook addin

    Hi All,
    I have an Outlook (2003-2013) addin developed using C# (NOT VSTO).
    A new client (using the desktop client for Outlook 365) has got a COMException error message stating 'The Outlook data file (.pst) failed to load for this session.' at the code line where I add the PST store (using Microsoft.Office.Interop.Outlook.NameSpaceClass.AddStoreEx).
    I have never come across this error message before and there is barely any mention of this message on any forums. The only question I could find regarding this has been asked mid 2014 and hasn't been answered.
    I'm fairly sure this is not related to either DisablePST or PSTDisableGrow registry key settings as I check fore their existance and notify the user separately.
    Could anyone help me out on how to resolve this? I do not know where to begin even.
    Thanks!!
    Cheers!

    Hi Eugene,
    Thanks for the reply.
    I pass the location that the PST is to be created (as a string), and the OlStoreType.olStoreUnicode constant.
    The client is using a network location to store the PST file (even though we advised them not to) - leading to many corrupt PST files (that they are apparently happy to live with), but this is the first time we came across this message.
    I would assume the problem is with that file, as no other clients are having any issue like this.
    Have you come across this error message? Do you know what sort of scenario could be responsible for it?
    Or would I have to file it under "random problems generated by network PSTs"? :P
    Cheers!

  • Failed to load configuration file: BootstrapperConfig.XML

    Is there any way to install Framemaker 9 without running the setup.exe? I am trying to install Framemaker 9 in our Citrix farm as this was the version we were informed which was supported under Citrix. The farm is running XenApp 5.0 on Windows 2008 64 bit. I have built three servers and two of them installed fine. The third has been causing me a lot of trouble. A clean build of Windows 2008 and I can run the setup. But as soon as I install the Terminal Services role I hit the listed error. I dont' understand what's causing it, using Process Monitor to look at what setup.exe is doing when it's failing isn't showing any issue. It's accessing and reading the file fine.
    I can't run the MSI without going through setup.exe and I can't get setup.exe running. I have 5 other Citrix servers to rebuild but I don't want to start them until I get this sorted as all the applications are running properly on the servers with Windows 2003 32 bit and Presentation Server 4.
    Where can I go, what can I do, what is that installer doing which is failing to read the bootstrapperconfig.xml file, can I install without using setup.exe. I'm running out of ideas I've rebuilt this server half a dozen times now trying to isolate the problem. I've even tried streaming Framemaker rather than installing and that's not working properly either. Issues with the licensing service.
    thanks
    Eric

    yes, that message has been up for a looong time. They've been having problems with the list over the past few weeks -- I just checked and the last Framers digest that I seem to have gotten was last Friday the 30th, and the links to the list and archives are down now, too, bummer!
    Ordinarily you could also go to this link to register for the list:
    To subscribe or unsubscribe via the World Wide Web, visit
                http://lists.frameusers.com/mailman/listinfo/framers
    What a pain -- I hope that it comes alive again soon.
    Well, another resource is the "Free Framers" list, run by the very obliging Omsys folks, more info here:
    http://www.omsys.com/cgi-bin/dada/mail.cgi/list/framers

  • How to load a data from XML when a data is clicked in a datagrid

    Hi,
         I have populated a datagrid with XML data. My requirement is like, whenever a user clicks on a particular data i need to load a popup based on the data that he has selected.
         I'm using advanced datagrid in this process and i'm not able to trace the element that the user has selected in the datagrid.
         It would be great if someone could help me on how to trace this particular element and how to load the corresponding xml values. It really a burning issue in my project.

    Will this work for you:
    dataGrid.selectedItem.@yourfieldname
    with popup:
    var popupWindow:TitleWindow = new TitleWindow;
    popupWindow = showPopupWindow(DisplayObject(FlexGlobals.topLevelApplication), yourclassname);
    popupWindow.someproperty = dataGrid.selectedItem.@yourfieldname
    public function showPopupWindow(parent:DisplayObject, WhatToShow:Class):TitleWindow
         var popupWindow:TitleWindow =
         TitleWindow(PopUpManager.createPopUp(parent, WhatToShow, true));
          PopUpManager.centerPopUp(popupWindow);
          return popupWindow;
    Nothing to write home about, but hope it helps a bit.

  • Error importing sample/update.xml when upgrading IDM5.0 to IDM5.0 SP4

    Hellos,
    I fail to upgrade to SP4 on the last step, importing the update.xml file.
    The Browser window has in red text:
    "An error occurred importing the file, although some of the file data may have been processed. ==> com.waveset.util.InternalError: Class com.waveset.view.ViewUpdater not found."
    I see in a text box many lines.. refreshing 0 of 2 etc..
    last line says Found no instances of AdminRole, not suprising as it a first time install.
    My system is Solaris 9 with MySQL 4.0.24 as repository (need 4.0.24 as we MUST HAVE EXTENDED ASCII CHARACTER SUPPORT, 4.1.x is no good) and SunApplicationServer8 as AS.
    The IDM5.0 install and deploy was fine. The upgrade was going fine too until last step.
    I upgrade by following the steps in IDM5.0_SP4_REAME.pdf.
    What is unclear is whether with Sun AS8 I need to undeploy idm and rebuild idm.war after installing the SP4. The instructions assume we all use tomcat and windows.
    I simply ran ./install, started the AS and tried to import
    sample/upgrade.xml. I did NOT undeploy idm, jar it up again and redeploy it.
    Anyways.. what I guess my IDM is now FUBR any hints how to recover?

    I prefer to perform manual upgrades in which there is a staging directory (see the installation document) where you unjar the idm.war and make all the necessary changes and then jar it and redeploy. I have uses the same process for successful upgrade for WebsphereAS 5.0 and it worked great. I have heard others talking about similar issues because it seems the jar files are not upgraded in the process that you have used.

  • Unable to complete step 2 (drag icon into applications folder) when upgrading Firefox

    I am trying to upgrade from Firefox 3.6.11 to 3.6.12.
    Step 2 of the process says "Drag the Firefox icon into your applications icon.
    First problem: I don't have an applications icon. Second problem, being creative I open Finder on my Mac and try to drag the Firefox icon into the applications folder. Won't work. Still shows I have Firefox 3.6.11 So I can't get beyond Step 2.
    A second problem is that the download screen with the three steps continually fills the screen. So there is nowhere to show an Applications icon to drag the Firefox icon into. Every time I click on the Step 2 icon, the screen maximizes and covers anything underneath it.
    Any suggestions?

    I have solved the problem myself. Unable to see how to mark my post as "solved". This forum badly needs a "Help" page of a FAQ page.

  • Failed to load java type corresponding to e=application !!

    Hello and execuse my poor english.
    When migrating from the WLS 8.1 to WLS 9.1, and when i try to deploy an EAR who contains some ejbs, i'd the folowing error :
    <i>"Failed to parse descriptor at 'META-INF/application.xml' for module 'null': com.bea.xml.XmlException: failed to load java type corresponding to e=application"</i>
    Should be rebuilt all our EJBs when we migrate from the 8.1 to the 9.1 ?
    I tried to rebuild the EAR, and i get the error :
    <i> [ejbc] weblogic.utils.compiler.ToolFailureException: ERROR: Error creating descriptor from jar file C:\dev\myEAR\build\tm
    p\myEAR-generic.jar:
    [ejbc] at weblogic.ejbc20.getDescriptorFromJar(ejbc20.java:735)
    [ejbc] at weblogic.ejbc20.runBody(ejbc20.java:453)
    [ejbc] at weblogic.utils.compiler.Tool.run(Tool.java:158)
    [ejbc] at weblogic.utils.compiler.Tool.run(Tool.java:115)
    [ejbc] at weblogic.ejbc.main(ejbc.java:36)
    [ejbc] and
    [ejbc] weblogic.descriptor.DescriptorException: Unmarshaller failed
    [ejbc] at weblogic.descriptor.internal.MarshallerFactory$1.createDescriptor(MarshallerFactory.java:149)
    [ejbc] at weblogic.descriptor.DescriptorManager.createDescriptor(DescriptorManager.java:271)
    [ejbc] at weblogic.descriptor.DescriptorManager.createDescriptor(DescriptorManager.java:240)
    [ejbc] at weblogic.descriptor.DescriptorManager.createDescriptor(DescriptorManager.java:300)
    [ejbc] at weblogic.application.descriptor.AbstractDescriptorLoader.createDescriptor(AbstractDescriptorLoader.java:344)
    [ejbc] at weblogic.application.descriptor.CachingDescriptorLoader.createDescriptor(CachingDescriptorLoader.java:188)
    [ejbc] at weblogic.application.descriptor.AbstractDescriptorLoader.createDescriptor(AbstractDescriptorLoader.java:328)
    [ejbc] at weblogic.application.descriptor.AbstractDescriptorLoader.getDescriptor(AbstractDescriptorLoader.java:237)
    [ejbc] at weblogic.application.descriptor.AbstractDescriptorLoader.getRootDescriptorBean(AbstractDescriptorLoader.java:217)
    [ejbc] at weblogic.ejb.spi.EjbJarDescriptor.getEjbJarBean(EjbJarDescriptor.java:141)
    [ejbc] at weblogic.ejb.container.dd.xml.DDUtils.processEjbJarXMLWithSchema(DDUtils.java:672)
    [ejbc] at weblogic.ejb.container.dd.xml.DDUtils.createDescriptorFromJarFile(DDUtils.java:337)
    [ejbc] at weblogic.ejb.container.dd.xml.DDUtils.createReadOnlyDescriptorFromJarFile(DDUtils.java:133)
    [ejbc] at weblogic.ejbc20.getDescriptorFromJar(ejbc20.java:718)
    [ejbc] at weblogic.ejbc20.runBody(ejbc20.java:453)
    [ejbc] at weblogic.utils.compiler.Tool.run(Tool.java:158)
    [ejbc] at weblogic.utils.compiler.Tool.run(Tool.java:115)
    [ejbc] at weblogic.ejbc.main(ejbc.java:36)
    [ejbc] Caused by: com.bea.xml.XmlException: failed to load java type corresponding to e=ejb-jar
    [ejbc] at com.bea.staxb.runtime.internal.UnmarshalResult.getPojoBindingType(UnmarshalResult.java:325)
    [ejbc] at com.bea.staxb.runtime.internal.UnmarshalResult.determineTypeForGlobalElement(UnmarshalResult.java:292)
    [ejbc] at com.bea.staxb.runtime.internal.UnmarshalResult.determineTypeForGlobalElement(UnmarshalResult.java:302)
    [ejbc] at com.bea.staxb.runtime.internal.UnmarshalResult.determineRootType(UnmarshalResult.java:283)
    [ejbc] at com.bea.staxb.runtime.internal.UnmarshalResult.unmarshalDocument(UnmarshalResult.java:153)
    [ejbc] at com.bea.staxb.runtime.internal.UnmarshallerImpl.unmarshal(UnmarshallerImpl.java:65)
    [ejbc] at weblogic.descriptor.internal.MarshallerFactory$1.createDescriptor(MarshallerFactory.java:138)
    [ejbc] ... 17 more
    [ejbc] There are 3 nested errors:
    [ejbc] weblogic.utils.compiler.ToolFailureException: ERROR: Error creating descriptor from jar file C:\dev\myEAR\build\tm
    p\myEAR-generic.jar:
    [ejbc] at weblogic.ejbc20.formatErrorsInCollection(ejbc20.java:659)
    [ejbc] at weblogic.ejbc20.runBody(ejbc20.java:462)
    [ejbc] at weblogic.utils.compiler.Tool.run(Tool.java:158)
    [ejbc] at weblogic.utils.compiler.Tool.run(Tool.java:115)
    [ejbc] at weblogic.ejbc.main(ejbc.java:36)
    [ejbc] and
    [ejbc] weblogic.utils.compiler.ToolFailureException: ERROR: Error from ejbc: Unmarshaller failed
    [ejbc] at weblogic.ejbc20.formatErrorsInCollection(ejbc20.java:659)
    [ejbc] at weblogic.ejbc20.runBody(ejbc20.java:462)
    [ejbc] at weblogic.utils.compiler.Tool.run(Tool.java:158)
    [ejbc] at weblogic.utils.compiler.Tool.run(Tool.java:115)
    [ejbc] at weblogic.ejbc.main(ejbc.java:36)
    [ejbc] and
    [ejbc] weblogic.utils.compiler.ToolFailureException: ERROR: ejbc couldn't load descriptor from jar
    [ejbc] at weblogic.ejbc20.runBody(ejbc20.java:463)
    [ejbc] at weblogic.utils.compiler.Tool.run(Tool.java:158)
    [ejbc] at weblogic.utils.compiler.Tool.run(Tool.java:115)
    [ejbc] at weblogic.ejbc.main(ejbc.java:36)</i>
    I've read some threads in dev2dev, i did not change any thing in the classpath, just default classpath generated by the config wizard (WLS domain).
    Here the header of my ejb-jar.xml :
    <i><!DOCTYPE ejb-jar PUBLIC '-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN' 'http://java.sun.com/dtd/ejb-jar_2_0.dtd'><ejb-jar></i>
    when i try to use the XML schema <i><ejb-jar
    xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/ejb-jar_2_1.xsd"
    version="2.1"></i>, I get a validation error in the schema ??
    Thank you in advance.

    Did you try upgrading the descriptors using the DDConverter tool?
    http://e-docs.bea.com/wls/docs91/programming/overview.html#1075156
    <BaBoU BaBoU> wrote in message news:[email protected]...
    Hello and execuse my poor english.
    When migrating from the WLS 8.1 to WLS 9.1, and when i try to deploy an
    EAR who contains some ejbs, i'd the folowing error :
    <i>"Failed to parse descriptor at 'META-INF/application.xml' for module
    'null': com.bea.xml.XmlException: failed to load java type corresponding
    to e=application"</i>
    Should be rebuilt all our EJBs when we migrate from the 8.1 to the 9.1 ?
    I tried to rebuild the EAR, and i get the error :
    <i> [ejbc] weblogic.utils.compiler.ToolFailureException: ERROR: Error
    creating descriptor from jar file C:\dev\myEAR\build\tm
    p\myEAR-generic.jar:
    [ejbc] at weblogic.ejbc20.getDescriptorFromJar(ejbc20.java:735)
    [ejbc] at weblogic.ejbc20.runBody(ejbc20.java:453)
    [ejbc] at weblogic.utils.compiler.Tool.run(Tool.java:158)
    [ejbc] at weblogic.utils.compiler.Tool.run(Tool.java:115)
    [ejbc] at weblogic.ejbc.main(ejbc.java:36)
    [ejbc] and
    [ejbc] weblogic.descriptor.DescriptorException: Unmarshaller failed
    [ejbc] at
    weblogic.descriptor.internal.MarshallerFactory$1.createDescriptor(MarshallerFactory.java:149)
    [ejbc] at
    weblogic.descriptor.DescriptorManager.createDescriptor(DescriptorManager.java:271)
    [ejbc] at
    weblogic.descriptor.DescriptorManager.createDescriptor(DescriptorManager.java:240)
    [ejbc] at
    weblogic.descriptor.DescriptorManager.createDescriptor(DescriptorManager.java:300)
    [ejbc] at
    weblogic.application.descriptor.AbstractDescriptorLoader.createDescriptor(AbstractDescriptorLoader.java:344)
    [ejbc] at
    weblogic.application.descriptor.CachingDescriptorLoader.createDescriptor(CachingDescriptorLoader.java:188)
    [ejbc] at
    weblogic.application.descriptor.AbstractDescriptorLoader.createDescriptor(AbstractDescriptorLoader.java:328)
    [ejbc] at
    weblogic.application.descriptor.AbstractDescriptorLoader.getDescriptor(AbstractDescriptorLoader.java:237)
    [ejbc] at
    weblogic.application.descriptor.AbstractDescriptorLoader.getRootDescriptorBean(AbstractDescriptorLoader.java:217)
    [ejbc] at
    weblogic.ejb.spi.EjbJarDescriptor.getEjbJarBean(EjbJarDescriptor.java:141)
    [ejbc] at
    weblogic.ejb.container.dd.xml.DDUtils.processEjbJarXMLWithSchema(DDUtils.java:672)
    [ejbc] at
    weblogic.ejb.container.dd.xml.DDUtils.createDescriptorFromJarFile(DDUtils.java:337)
    [ejbc] at
    weblogic.ejb.container.dd.xml.DDUtils.createReadOnlyDescriptorFromJarFile(DDUtils.java:133)
    [ejbc] at weblogic.ejbc20.getDescriptorFromJar(ejbc20.java:718)
    [ejbc] at weblogic.ejbc20.runBody(ejbc20.java:453)
    [ejbc] at weblogic.utils.compiler.Tool.run(Tool.java:158)
    [ejbc] at weblogic.utils.compiler.Tool.run(Tool.java:115)
    [ejbc] at weblogic.ejbc.main(ejbc.java:36)
    [ejbc] Caused by: com.bea.xml.XmlException: failed to load java type
    corresponding to e=ejb-jar
    [ejbc] at
    com.bea.staxb.runtime.internal.UnmarshalResult.getPojoBindingType(UnmarshalResult.java:325)
    [ejbc] at
    com.bea.staxb.runtime.internal.UnmarshalResult.determineTypeForGlobalElement(UnmarshalResult.java:292)
    [ejbc] at
    com.bea.staxb.runtime.internal.UnmarshalResult.determineTypeForGlobalElement(UnmarshalResult.java:302)
    [ejbc] at
    com.bea.staxb.runtime.internal.UnmarshalResult.determineRootType(UnmarshalResult.java:283)
    [ejbc] at
    com.bea.staxb.runtime.internal.UnmarshalResult.unmarshalDocument(UnmarshalResult.java:153)
    [ejbc] at
    com.bea.staxb.runtime.internal.UnmarshallerImpl.unmarshal(UnmarshallerImpl.java:65)
    [ejbc] at
    weblogic.descriptor.internal.MarshallerFactory$1.createDescriptor(MarshallerFactory.java:138)
    [ejbc] ... 17 more
    [ejbc] There are 3 nested errors:
    [ejbc] weblogic.utils.compiler.ToolFailureException: ERROR: Error
    creating descriptor from jar file C:\dev\myEAR\build\tm
    p\myEAR-generic.jar:
    [ejbc] at
    weblogic.ejbc20.formatErrorsInCollection(ejbc20.java:659)
    [ejbc] at weblogic.ejbc20.runBody(ejbc20.java:462)
    [ejbc] at weblogic.utils.compiler.Tool.run(Tool.java:158)
    [ejbc] at weblogic.utils.compiler.Tool.run(Tool.java:115)
    [ejbc] at weblogic.ejbc.main(ejbc.java:36)
    [ejbc] and
    [ejbc] weblogic.utils.compiler.ToolFailureException: ERROR: Error from
    ejbc: Unmarshaller failed
    [ejbc] at
    weblogic.ejbc20.formatErrorsInCollection(ejbc20.java:659)
    [ejbc] at weblogic.ejbc20.runBody(ejbc20.java:462)
    [ejbc] at weblogic.utils.compiler.Tool.run(Tool.java:158)
    [ejbc] at weblogic.utils.compiler.Tool.run(Tool.java:115)
    [ejbc] at weblogic.ejbc.main(ejbc.java:36)
    [ejbc] and
    [ejbc] weblogic.utils.compiler.ToolFailureException: ERROR: ejbc
    couldn't load descriptor from jar
    [ejbc] at weblogic.ejbc20.runBody(ejbc20.java:463)
    [ejbc] at weblogic.utils.compiler.Tool.run(Tool.java:158)
    [ejbc] at weblogic.utils.compiler.Tool.run(Tool.java:115)
    [ejbc] at weblogic.ejbc.main(ejbc.java:36)</i>
    I've read some threads in dev2dev, i did not change any thing in the
    classpath, just default classpath generated by the config wizard (WLS
    domain).
    Here the header of my ejb-jar.xml :
    <i><!DOCTYPE ejb-jar PUBLIC '-//Sun Microsystems, Inc.//DTD Enterprise
    JavaBeans 2.0//EN' 'http://java.sun.com/dtd/ejb-jar_2_0.dtd'><ejb-jar></i>
    when i try to use the XML schema <i><ejb-jar
    xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
    http://java.sun.com/xml/ns/j2ee/ejb-jar_2_1.xsd"
    version="2.1"></i>, I get a validation error in the schema ??
    Thank you in advance.

Maybe you are looking for

  • How to make OBPM 10.3g solutions highly scalable and performant?

    Hi experts, I would like to request some advice on how to make Oracle BPM 10.3g based solutions highly scalable. In our organisation, we are rolling out few processes (3-5) on OBPM 10.3g, with couple of 100 concurrent users on each. But going forward

  • Daily Avg. hrs

    hi, I need to get daily average hours YTD in a report for regular hrs worked and overtime. i am getting daily hrs by formula created on calendar day -->  calendar day - 398 and key figure hrs. how can i get avg. for year todate ? i have hr type, cale

  • Payment Card Scenario:-

    Hello Folks, I have a scenario with reference to Credit Card such that Customer gets the order, ships the product, and then receives the credit card information at a later time. I am unable to find out how do I configure this. Since customer is getti

  • SLD in 2004s

    hi all, I am facing a problem in the SLD settings. we are using NW2004s sneak preview. In the sld page, under Administration -> Data Supplier bridge, i cannot find the options for entering the parameters Server and Service. the start/stop bridge butt

  • Iweb: Main window failing to launch. Help?

    Hello, I just launched iWeb and the main working window does not load. The program is open and I can see the menu bars at the top (but of course they are all grayed out because there is no working space.) I have tried launching the domain from my Fin