WebLogic 12.1.2 fails when deploying ear with injecting extension and bean with injection of this extension in ejb

WebLogic 12.1.2 fails when deploying an enterprise application(ear) that contains a ejb in which injected 1) an extension 2)bean with injection of this extension.
The following exception is thrown:
Caused By: org.jboss.weld.exceptions.DeploymentException: WELD-001409 Ambiguous dependencies for type [CdiExtension] with qualifiers [@Default] at injection point [[field] @Inject private test.extension.Bean1.extension].
Possible dependencies [
[Extension [class test.extension.CdiExtension] with qualifiers [@Default]; zip:/domain1/servers/AdminServer/tmp/_WL_user/test/7x6roh/lib/test-extension-0.0.1-SNAPSHOT.jar!/META-INF/services/javax.enterprise.inject.spi.Extension@1[test.extension.CdiExtension@1115deb],
Extension [class test.extension.CdiExtension] with qualifiers [@Default]; zip:/domain1/servers/AdminServer/tmp/_WL_user/test/7x6roh/lib/test-extension-0.0.1-SNAPSHOT.jar!/META-INF/services/javax.enterprise.inject.spi.Extension@1[test.extension.CdiExtension@ed791f]]]
    at org.jboss.weld.bootstrap.Validator.validateInjectionPoint(Validator.java:314)
    at org.jboss.weld.bootstrap.Validator.validateInjectionPoint(Validator.java:280)
    at org.jboss.weld.bootstrap.Validator.validateBean(Validator.java:143)
    at org.jboss.weld.bootstrap.Validator.validateRIBean(Validator.java:163)
    at org.jboss.weld.bootstrap.Validator.validateBeans(Validator.java:382)
    at org.jboss.weld.bootstrap.Validator.validateDeployment(Validator.java:367)
    at org.jboss.weld.bootstrap.WeldBootstrap.validateBeans(WeldBootstrap.java:379)
    at com.oracle.injection.provider.weld.WeldInjectionContainer.start(WeldInjectionContainer.java:106)
    at com.oracle.injection.integration.CDIAppDeploymentExtension.initCdi(CDIAppDeploymentExtension.java:70)
    at com.oracle.injection.integration.CDIAppDeploymentExtension.activate(CDIAppDeploymentExtension.java:47)
    at weblogic.application.internal.flow.AppDeploymentExtensionFlow.activate(AppDeploymentExtensionFlow.java:37)
    at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:729)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:42)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:258)
    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:61)
    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:165)
    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:80)
Problem can be easily reproduced by a minimal case:
test.ear:
\lib\test-extension-0.0.1-SNAPSHOT.jar
test-ejb-0.0.1-SNAPSHOT.jar
where
test-extension-0.0.1-SNAPSHOT.jar contains:
CdiExtension.java:
package test.extension;
import javax.enterprise.inject.spi.Extension;
public class CdiExtension implements Extension {
    private String someString = "Some String";
    public String getSomeString() {
        return someString;
Bean1.java:
package test.extension;
import javax.enterprise.context.ApplicationScoped;
import javax.inject.Inject;
@ApplicationScoped
public class Bean1 {
    @Inject
    private CdiExtension extension;
    public String get() {
        return extension.getSomeString();
test-ejb-0.0.1-SNAPSHOT.jar contains:
EjbBean.java:
package test;
import test.extension.Bean1;
import test.extension.CdiExtension;
import javax.ejb.Stateless;
import javax.inject.Inject;
@Stateless
public class EjbBean {
    @Inject
    private CdiExtension extension;
    @Inject
    private Bean1 bean1;
    public String getSomeString() {
        return extension.getSomeString() + "\n" + bean1.get();
p.s. i seen same problem in community.oracle.com/thread/2577403 , but it happen in "war", not "ear", and seems successfully patched with patch №17424706

Hi,
It looks like there is patch exists for this issue.
Patch 17198187
Please try to download from the MOS or try to open a ticket with support.
Regards,
Kal

Similar Messages

  • Weblogic 10.3.2   Error when deploying ear file

    Using WLS 10.3.2, wwhen activating changes, I obtain following errors:
    An error occurred during activation of changes, please see the log for details.
    Exception occured while downloading files
    [DeploymentService:290066]Error occurred while downloading files from admin server for deployment request "1,285,335,764,675". Underlying error is: "[DeploymentService:290065]Deployment service servlet encountered an Exception while handling the deployment datatransfer message for request id "1,285,335,764,675" from server "p8aerm". Exception is: "Could not create temp location for application : Engine-wl"."
    Would someone with expertise confirm where "temp location for application" is on an AIX 6.1 server.
    Any help appreciated.

    What user runs your weblogic? the oracle user?
    In my case weblogic is started by a weblogic user who owns all the WLS folders.
    Try $> ps -fea | grep p8ce to verify the user running the weblogic instance.
    In a RH5 the privileges are (755):
    4 drwxr-xr-x 2 weblogic weblogic 4096 Nov 19 2009 .internal
    4 drwxr-xr-x 5 weblogic weblogic 4096 Nov 19 2009 WLinternal
    4 drwxr-xr-x 8 weblogic weblogic 4096 Nov 23 2009 ..
    4 -rw-r--r-- 1 weblogic weblogic 379 Sep 20 16:53 WebServiceUtils.ser
    0 -rw-r--r-- 1 weblogic weblogic 0 Sep 20 16:55 SysAdmServer.lok
    4 drwxr-xr-x 5 weblogic weblogic 4096 Sep 21 19:28 .
    4 drwxr-xr-x 6 weblogic weblogic 4096 Sep 21 19:28 WLuser
    The folder WLuser will be created when the deploy starts.
    In your case an error happends before this step.

  • WebLogic 12.1.2 fails when injecting extension in jar into bean in same jar

    WebLogic 12.1.2 fails when deploying a web application that contains a jar in which an extension is injected into a bean that resides within that same jar. The following exception is thrown:
    "weblogic.management.DeploymentException: org.jboss.weld.exceptions.DeploymentException: WELD-001408 Unsatisfied dependencies for type [SampleExtension] with qualifiers [@Default] at injection point [[field] @Inject private test.ApplicationBean.extension]"
    weblogic.management.DeploymentException: org.jboss.weld.exceptions.DeploymentException: WELD-001408 Unsatisfied dependencies for type [SampleExtension] with qualifiers [@Default] at injection point [[field] @Inject private test.ApplicationBean.extension]
      at weblogic.application.internal.BaseDeployment.throwAppException(BaseDeployment.java:123)
      at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:260)
      at weblogic.application.internal.SingleModuleDeployment.activate(SingleModuleDeployment.java:48)
      at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:165)
      at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:80)
      Truncated. see log file for complete stacktrace
    Caused By: org.jboss.weld.exceptions.DeploymentException: WELD-001408 Unsatisfied dependencies for type [SampleExtension] with qualifiers [@Default] at injection point [[field] @Inject private test.ApplicationBean.extension]
      at org.jboss.weld.bootstrap.Validator.validateInjectionPoint(Validator.java:311)
      at org.jboss.weld.bootstrap.Validator.validateInjectionPoint(Validator.java:280)
      at org.jboss.weld.bootstrap.Validator.validateBean(Validator.java:143)
      at org.jboss.weld.bootstrap.Validator.validateRIBean(Validator.java:163)
      at org.jboss.weld.bootstrap.Validator.validateBeans(Validator.java:382)
    The problem can be easily reproduced by a minimal case with the following structure:
    war-root
         WEB-INF
             beans.xml
             lib
                somejar.jar
    And with somejar.jar having the following structure:
    test
        ApplicationBean.java
        SampleExtension.java
    META-INF
        services
            javax.enterprise.inject.spi.Extension
        beans.xml
    ApplicationBean can looks as follows:
    @Named
    @ApplicationScoped
    public class ApplicationBean {
        @Inject
        private SampleExtension extension;
        @Inject
        private BeanManager manager;
        public void myMethod() {
            System.out.println("Extension:" + extension + " Manager:" + manager);
    And SampleExtension can be:
    public class SampleExtension implements Extension {
        public void onBeanDiscovery(@Observes AfterBeanDiscovery beanDiscovery, BeanManager beanManager) {
            out.println("Extension called");
    I published a minimal web application (as Maven multi-module project) that reproduces the case here: https://github.com/arjantijms/inject-extension
    This application runs fine on basically every other Java EE server (tried specifically JBoss EAP 6.1, GlassFish 4.0 and TomEE 1.5.2), but not on WebLogic 12.1.2.
    Note that I'm not really a WebLogic user. I'm an open source library writer who's trying to make our library (OmniFaces) to run on all Java EE implementations. This case is part of a functionality in our upcoming release.

    Hi,
    If it is war then try to apply following  Patch 13893259.
    Regards,
    Kal

  • SDM failed when deploying a Web Dynpro application

    SDM failed when deploying a Web Dynpro application - I get the following error message:
    Sep 19, 2006 2:25:34 PM /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager) [Thread[Deploy Thread,5,main]] ERROR:
    [001]Deployment aborted
    Settings
    SDM host : eix-blade-011
    SDM port : 50118
    URL to deploy : file:/D:/DOCUME1/AMRM1.AZI/LOCALS1/Temp/temp43621sap.comwelcome.ear
    Deployment exception : Server eix-blade-011 did not accept login request as admin on port 50118. Details: ERROR: Could not establish connection to server eix-blade-011 at port 50118: eix-blade-011
    Inner exception was :
    Server eix-blade-011 did not accept login request as admin on port 50118. Details: ERROR: Could not establish connection to server eix-blade-011 at port 50118: eix-blade-011

    Amr Azim,
    You must have logged in thru a dedicated connection to any server through say VPN before deploying.This way the sdm uses the same login as that of already establised connection.
    So 'sign of'  all connections to any servers before deploying and redeploy your application.Here you will be prompted to supply the sdm password and deployment shall proceed.

  • ALC-LCM-030-112: Failed to deploy EAR

    I’m trying to install LiveCycle on the following environment:
    - Linux SUSE 10
    - Oracle 10g
    - Weblogic 11g
    Configuration steps run free of problems until the Deploy LiveCycle ES2 EARs screen, where the following error message comes on:
    [2011-04-25 16:12:56,015], SEVERE, Thread-55, com.adobe.livecycle.cdv.CDVException, Failed to deploy EAR.
    Could not deploy adobe-livecycle-weblogic.ear.
    com.adobe.livecycle.cdv.CDVException[ALC-LCM-030-112]: Failed to deploy EAR.
    Could not deploy adobe-livecycle-weblogic.ear.
    at com.adobe.livecycle.cdv.CDVException.handleException(CDVException.java:60)
    at com.adobe.livecycle.cdv.deployer.WLDeployer.deployApp(WLDeployer.java:148)
    at com.adobe.livecycle.lcm.feature.deployment.DeployEARs.deployEARs(DeployEARs.java:164)
    at com.adobe.livecycle.lcm.feature.deployment.DeployEARs.deployLFSs(DeployEARs.java:99)
    at com.adobe.livecycle.lcm.feature.deployment.DeployEARs.deployLFSs(DeployEARs.java:90)
    at com.adobe.livecycle.lcm.feature.deployment.DeployEARsTask$ActualTask.<init>(DeployEARsTas k.java:92)
    at com.adobe.livecycle.lcm.feature.deployment.DeployEARsTask$1.construct(DeployEARsTask.java :61)
    at com.adobe.livecycle.lcm.core.tasks.SwingWorker$2.run(SwingWorker.java:114)
    at java.lang.Thread.run(Thread.java:736)
    Caused by: com.adobe.livecycle.cdv.CDVInternalException[ALC-LCM-100-000]: Could not deploy this application. Received fail
    status
    at com.adobe.livecycle.cdv.deployer.WLDeployer.deployApp(WLDeployer.java:143)
    ... 7 more
    [2011-04-25 16:12:56,020], SEVERE, Thread-55, com.adobe.livecycle.lcm.feature.deployment.DeployEARsTask, Task failed
    com.adobe.livecycle.cdv.CDVException[ALC-LCM-030-112]: Failed to deploy EAR.
    Could not deploy adobe-livecycle-weblogic.ear.
    at com.adobe.livecycle.cdv.CDVException.handleException(CDVException.java:60)
    at com.adobe.livecycle.cdv.deployer.WLDeployer.deployApp(WLDeployer.java:148)
    at com.adobe.livecycle.lcm.feature.deployment.DeployEARs.deployEARs(DeployEARs.java:164)
    at com.adobe.livecycle.lcm.feature.deployment.DeployEARs.deployLFSs(DeployEARs.java:99)
    at com.adobe.livecycle.lcm.feature.deployment.DeployEARs.deployLFSs(DeployEARs.java:90)
    at com.adobe.livecycle.lcm.feature.deployment.DeployEARsTask$ActualTask.<init>(DeployEARsTas k.java:92)
    at com.adobe.livecycle.lcm.feature.deployment.DeployEARsTask$1.construct(DeployEARsTask.java :61)
    at com.adobe.livecycle.lcm.core.tasks.SwingWorker$2.run(SwingWorker.java:114)
    at java.lang.Thread.run(Thread.java:736)
    Caused by: com.adobe.livecycle.cdv.CDVInternalException[ALC-LCM-100-000]: Could not deploy this application. Received fail
    status
    at com.adobe.livecycle.cdv.deployer.WLDeployer.deployApp(WLDeployer.java:143)

    These are some of the other messages genrated on the Weblogic log.
    Does this help in any way?
    ####<Apr 26, 2011 4:09:35 PM BRT> <Error> <com.adobe.idp.dsc.registry.component.impl.ComponentStoreImpl> <lnx8.csn.com.br> <AdobeServer> <[ACTIVE] ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <BEA1-000E543F13E141CCC497> <c670ff48d84dd885:-7f7db98e:12f932f554b:-8000-0000000000000019> <1303844975996> <BEA-000000> <ComponentStoreImpl:getComponents:Exception:EJB Exception: ; nested exception is: javax.ejb.EJBException: EJB Exception: : java.sql.SQLSyntaxErrorException: ORA-00942: table or view does not exist
    ####<Apr 26, 2011 4:09:33 PM BRT> <Error> <HTTP> <lnx8.csn.com.br> <AdobeServer> <[ACTIVE] ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <c670ff48d84dd885:-7f7db98e:12f932f554b:-8000-0000000000000019> <1303844973109> <BEA-101216> <Servlet: "FormsServlet" failed to preload on startup in Web application: "/FormServer".
    java.lang.NullPointerException
    ####<Apr 26, 2011 4:09:35 PM BRT> <Info> <EJB> <lnx8.csn.com.br> <AdobeServer> <[ACTIVE] ExecuteThread: '5' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <BEA1-000E543F13E141CCC497> <c670ff48d84dd885:-7f7db98e:12f932f554b:-8000-0000000000000019> <1303844975992> <BEA-010227> <EJB Exception occurred during invocation from home or business: com.adobe.pof.omapi.POFObjectManagerLocalBean_j8d0wl_LocalHomeImpl@1217776e threw exception: javax.ejb.EJBException: EJB Exception: : java.sql.SQLSyntaxErrorException: ORA-00942: table or view does not exist
    <Apr 26, 2011 4:09:39 PM BRT> <Error> <Deployer> <BEA-149265> <Failure occurred in the execution of deployment request with ID '1303844929176' for task '9'. Error is: 'weblogic.application.ModuleException: [HTTP:101216]Servlet: "FormsServlet" failed to preload on startup in Web application: "/FormServer".
    java.lang.NullPointerException
        at com.adobe.formServer.FormsServlet.expandArchive(FormsServlet.java:383)
        at com.adobe.formServer.FormsServlet.init(FormsServlet.java:69)
        at javax.servlet.GenericServlet.init(GenericServlet.java:241
    <Apr 26, 2011 4:09:39 PM BRT> <Error> <Deployer> <BEA-149202> <Encountered an exception while attempting to commit the 1 task for the application 'adobe-livecycle-weblogic'.>

  • When deploying the new CU4 x64 and x86 users see that the install is happening. How do I prevent them from seeing this?

    When deploying the new CU4 x64 and x86 users see that the install is happening. How do I prevent them from seeing this?
    Thanks
    James A+, Network+, MCP

    If the program settings are set to hidden, it should be hidden. You do not need to specify any client settings. If you changed the program settings and the machines already had policy, you will have to wait up to your 60 minute policy setting or just manually
    kick off a policy update to see the new hidden program.
    If they are still getting the interactive install, then you need to troubleshoot if the machine has gotten proper policy. Run a 'Machine policy retrieval and evaluation cycle' manually, wait a few minutes and then test again.
    Suppress program notifications are the tray icons and bubble notifications about installations happening. Hidden is the method in which the executable/msi will install.
    Daniel Ratliff | http://www.PotentEngineer.com |
    @PotentEngineer

  • Upgraded to 5.4 when opening lightroom get a message "encountered an error when reading from its preview cache and need to quite" tried this several time but get the same eror message

    Upgraded to 5.4 when opening lightroom get a message "encountered an error when reading from its preview cache and need to quite" tried this several time but get the same error message.  Says Lightroom will attempt to fix the problem the next time it launches but that is not happening.  How do it fix this?

    Delete the preview cache using your operating system. It is a folder whose name ends with Previews.LRDATA. Do not delete the Lightroom catalog, which ends with .LRCAT

  • Why my MacBook pro with Maverick, when I'm connected with internet key and connect with usb cable my HTC One the Mac restat with error?

    Why my MacBook pro with Maverick, when I'm connected with internet key and connect with usb cable my HTC One the Mac restat with error?

    Solution may be found if you search in the "More Like This" section over in the right column. 

  • Error 0x3b21 when trying to synch - have read and tried all solutions on this board. NO LUCK!

    I am at my wits end. I am using Office 2007, Desktop Manager 4.7 on a blackberry 8310 and I get that error when I try to synch my berry.
    Please help before it ends up in the river with my 8 track collection.

    Hi and welcome to the forums!
    Error 0x3b21 when trying to synch - have read and tried all solutions on this board. NO LUCK!
    Well then you are doomed before you start!
    Seriously, all solutions?
    List the steps you have taken so we can help you without "reinventing the wheel"
    Thanks,
    Bifocals
    PS. If you do something rash, send me the 8 tracks first....I'm just that old!
    Message Edited by Bifocals on 02-06-2009 08:13 PM
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • I do a movie whith iMovie. I finalize the project and I pass it to iDvd. Then I do a little menu and I burn my DVD. When I play my DVD on a computer or in my TV it ALWAYS begins directly with the movie and not with the menu... PLEASE HELP!!!!

    I do a movie whith iMovie. I finalize the project and I pass it to iDvd. Then I do a little menu and I burn my DVD. When I play my DVD on a computer or in my TV it ALWAYS begins directly with the movie and not with the menu... PLEASE HELP!!!!

    Go to the Map mode in your iDVD project and make sure the blue bin at the left is empty.  That's where you drag slideshows to if you want the DVD to open immediately to that slideshow and bypass the menu. 
    Click to view full size
    If there is an item in there drag it out.
    OT

  • When i open my emails with outlook first and then with my ipad 4, the ipad does not show me that i have new mail despite that it actually downloads them. iphone 3g and 4s used to do that. any suggestions please?

    when i open my emails with outlook first and then with my ipad 4, the ipad does not show me that i have new mail despite that it actually downloads them. iphone 3g and 4s used to show them as new emails. any suggestions?

    1. Open iTunes.
    2. Click the View option in the iTunes menu.
    3. Select the Show Sidebar option.
    Connect your phone, select it in the Sidebar...the various tabs will now show as before.

  • Hi there i have ipod touch 2nd gen and i am tryna restore it but i get error 21 with orginal fireware and 1601 with custom fireware and when it connected to itunes and i try to boot it up by restoring it white screen with lines thorugh it

    hi there i ahve ipod touch 2nd gen and i am tryna restore it but get error 21 with orginal fireware and 1601 with custom firewarw and when connected it to itunes and i try to boot it by resotring it white screen with lines through it

    Those errors are covered here:
    http://support.apple.com/kb/TS3694

  • After downloading viber application , I was asked to enter my phone number without the country code, when I enter my phone number and pressed continue, I get this error "check setting notification" I checked it and it is on,how to get my viber code ?

    After downloading viber application , I was asked to enter my phone number without the country code, when I enter my phone number and pressed continue, I get this error "viber can't access push notifications. Check settings > notifications. Check internet connection and try to register again. see viber.com/notifications for more info. I have checked the notifications and it is on also I have checked the internet connection and it is active, so what shall i do now to get my viber code?

    Contact Viber customer/technical support.

  • CDI Fails when deployed twice from OEPE 12c to WebLogic 12c

    Hi,
    First when I use CDI on WebLogic 12c it works the first time without any problems , First I had to do this ( From Steve Button ) else I get some inject problems
    Just as an out there kind of thought, OEPE does use the split-directory model for deployment by default -- perhaps try adjusting it to use the exploded archive model instead, just as a test to see if it removes the error?
    Right click the server config and select Properties > WebLogic > Publishing > Publish as exploded archive
    then it works once , when I deploy it twice then the Named beans are not found. ( I use a empty beans.xml in the web-inf )
    I need to restart the wls 12c then it works. Same project with OEPE 12c and glassfish works fine.
    thanks

    Arun,
    Do you see the application status active in the Admin console?
    Are you testing the web application by typing the complete URL in the browser that includes the name of the webpage including the context root , ipaddress/hostname and port number of Server..?
    404 indicates application doesn't exist.
    Please share the URL you are testing.
    Please check the server log if you found any deployment issues when deploying your application?
    Thanks,
    Vijaya

  • Oracle.mds.core.MetadataNotFoundException when deploying EAR into local WLS

    Hi all,
    I tried to search the forum and read this: How to get rid of MDS I checked the domain path: C:\JDev11g_Home\system11.1.1.4.37.59.23\DefaultDomain, no space in the path. I searched this file it complains "adf-config.xml", couldn't find such file in my application at all. (My app is migrated from 10g to 11g using Trinidad.) I am using JDEV 11.1.14.0 and WLS 10.
    Also, I tried these 2 scenarios when creating the EAR file: include / exclude these 2 jars: mdsrt.jar & oramds.jar, (Though I don't think this is the cause since it doesn't complain ClassNotFoundException.) same deployment error.
    Below is the console output when deploying the EAR:
    <MDSBackingStore> <obtainMetadataObject> Exception while getting mutable object
    oracle.mds.core.MetadataNotFoundException: MDS-00013: no metadata found for metadata object "/META-INF/adf-config.xml"
         at oracle.mds.core.MetadataObject.getBaseMO(MetadataObject.java:1163)
         at oracle.mds.core.MDSSession.getBaseMO(MDSSession.java:2837)
         at oracle.mds.core.MDSSession.getMetadataObject(MDSSession.java:1204)
         at oracle.adf.share.jndi.MDSBackingStore.getMetadataObject(MDSBackingStore.java:389)
         at oracle.adf.share.jndi.MDSBackingStore.obtainMetadataObject(MDSBackingStore.java:510)
         at oracle.adf.share.jndi.MDSBackingStore.getMOBean(MDSBackingStore.java:566)
         at oracle.adf.mbean.share.config.RuntimeMXBeanImpl.init(RuntimeMXBeanImpl.java:169)
         at oracle.adf.mbean.share.config.RuntimeMXBeanImpl.<init>(RuntimeMXBeanImpl.java:159)
         at oracle.adf.mbean.share.config.RuntimeMXBeanImpl.<init>(RuntimeMXBeanImpl.java:151)
         at oracle.adf.mbean.share.config.ADFConfigLifeCycleCallBack.contextInitialized(ADFConfigLifeCycleCallBack.java:127)
         at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)
         at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1872)
         at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3153)
         at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1508)
         at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:482)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
         at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
         at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
         at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
         at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
         at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:636)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
         at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:205)
         at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:58)
         at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:569)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:150)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:116)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:323)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:844)
         at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1253)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:440)
         at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:163)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:68)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    <ADFConfigLifeCycleCallBack> <contextInitialized> Failed to create config mbean.
    Please help!
    Thanks.
    Shawn

    Yes, I found this file in that folder. But, I checked the EAR file which is created from ant script such that there's no such adf-config.xml file at all anywhere in the EAR file inlcuding within the WAR file of the EAR. I also check another EAR file (of another application) and didn't see such adf-config.xml file either, but that EAR file is able to be deployed successfully in the local WLS. Both applications are migrated from 10g to 11g. I checked the other application for the build script and these 2 MDS jars are not used at all. I tried to remove these 2 MDS jars from the EAR file, but still same MDS-00013 error. Why will this occur in one app, but not in another app? Is there something I am missing?
    Thanks

Maybe you are looking for

  • Exchange rate message in PO

    Dear experts, I receive a warning message "exchange rate deviates by 7%" when changing the exchange rate during PO creation. I would like to change it to an error message. In " IMG > MM > Purchasing > Environment data > Define attributes of system me

  • Total Broadband set up CD for Mac OS 10.7? (Lion)

    Hi forum users, received the Hub & start package today but CD didnt load< think it's because I have the latest OS (lion) cd label says 10.2.4 to 10.6, but Lion is 10.7.2 Is there a later disc available? Thanks Westy

  • How do i fix a portrait photograph that has harsh sunlight and shadows in PSE12? [was: Help please =) ]

    How do i fix a portrait photograph that has harsh sunlight and shadows in PSE12?

  • Increasing the DVD capacity

    I need to increase the capacity of my DVD. I bought 240 minute (8.5g) DVD's to use, but iDVD won't let me do it. First off the computer isn't even responding with the DVD's. Is it because they have the purple backing? But mainly, in the preferences,

  • MAJOR IPOD NANO PROBLEMS

    A couple of weeks ago i could not turn on my ipod despite the fact that it was charged so i brought it back to the store i bought it in. The guy did something to it i think he updated the software, which deleted my library. When i went to put my libr