Weblogic ANT Deployment

I have an EAR deployed on a Weblogic Cluster. When I try to perform a partial deploy of an EJB alone which is part of the deployed EAR - I get an error Parameter 'moduleArchive' may not be null.
Any help to resolve this error is appreciated.
Below is my deploy task
     <wldeploy action="redeploy" name="myEAR" user="${wls_username}" password="${wls_password}" adminurl="t3://${wls_hostname}:${wls_port}" targets="${wls_server_name}" verbose="true" upload="true" debug="true" timeout="600" deltaFiles="${default.target.dir}">
          </wldeploy>

hi,
i'm sending u the sample script for deployment.
<?xml version="1.0" encoding="iso-8859-1"?>
<project name="test" default="deploy" basedir="C:\bea\user_projects\domains\pack_unpack">
<target name="deploy">
<wldeploy action="deploy" source="C:\bea\app2" name="app2" user="weblogic" password="weblogic" verbose="true" adminurl="t3://localhost:7001" debug="true" targets="myserver" stage="true"/>
</target>
</project>
just try it if any concerns, make me correct...
regards,
abhi

Similar Messages

  • Working ANT deploy/redeploy example for weblogic 7

    Could someone please post a working example of an ANT-task which
    deploys/redeploys an ear in a running wl 7.x instance ? I've been trying to
    get this to work / find an example of a working task but haven't succeeded
    yet.
    //Linus Nikander - [email protected]

    The current WL7 docs at http://e-docs.bea.com/wls/docs70/programming/deploying.html#1130056
    show a pre-configured ant task shipping with WL7
    I cannot find any instance of the referenced WLDeploy class in any jar file in my WL7 installation [WLS 7 SP4]
    Is a standard distribution [ant deploy, configure tasks and classes] available for use with WLS7 ?
    Hey Linus.[snippage /]
    For WLS 7.0, you could use <java> to call
    weblogic.Deployer passing in the
    appropriate parameters on the arg line. Or, you can
    mimic what we did in
    8.1 by creating customer Ant tasks calling
    weblogic.Deployer for your
    specific use.
    -Chris
    "Linus Nikander" <[email protected]> wrote in
    message
    news:[email protected]..
    Could someone please post a working example of anANT-task which
    deploys/redeploys an ear in a running wl 7.xinstance ? I've been trying
    to
    get this to work / find an example of a workingtask but haven't succeeded
    yet.
    //Linus Nikander - [email protected]

  • Weblogic 10 Deployment issues

    Hi,
    I am trying to use weblogic ant task - Wldeploy to automate the deployment. Unfortuantely deployment fails, I did some research and discovered that WLdeploy class is not present in weblogic.jar(..Bea\wlserver_10.0\server\lib). I also have version 9.2 installed on my box and it has this calss. Just wondering where can I find WLDeploy class in version 10 ?. Also, is there any maven support for version 10 ?
    Thanks & Regards !

    Hi,
    Wldeploy "weblogic.ant.taskdefs.management.WLDeploy" is present in weblogic.jar I have double check it and maven is a build tool and in the docs there is no way written its supported or not, however as its a build tool you can use it but make sure you are using the correct class as above.
    Also you can try using the ANT script given in the below link:
    Topic: Ant to Deploy Applications
    http://middlewaremagic.com/weblogic/?p=373
    Regards,
    Ravish Mody
    http://middlewaremagic.com/weblogic
    Come, Join Us and Experience The Magic…

  • Taskdef class  weblogic.ant.taskdef.management.WLdeployn  cannot be found.

    Hi,
    we are deploying war in weblogic server but getting error like taskdef class  weblogic.ant.taskdef.management.WLdeployn  cannot be found.*
    we are creating directory and copying required jars in to that directory and we referening that directory name in classpath of taskdef .
    <!--property defined -->
    <property name="wl_jar" value="${wllib}/weblogic.jar"/>
    <!--copy jars into wllib directory -->
    <target name="copylibs">
    <mkdirdir="wllib"/>
    <copyto dir="wllib" file="weblogic.jar" verbose="true" preservelastmodified="true" />
    </target>
    <!--weblogic taskdef for deploy war on weblogic server. -->
    <taskdef name="wldeploy" classname="weblogic.ant.taskdefs.management.WLDeploy" >
    <classpath >
    <pathelement location="${wl_jar}"/>
    </classpath>
    </taskdef>
    But getting taskdef class weblogic.ant.taskdef.management.WLdeployn cannot be found .
    please give me a solution.
    Thanks,

    Hi
    This error "java.lang.NoClassDefFound weblogic/util/debug" kind of looks familiar while running some standalone Java client programs that refer to stuff deployed on Weblogic. The ideal way to fix is generate wlfullclient.jar and add that in the classpath. Adding or calling setDomainEnv.sh (.cmd) will also work, but try using this wlfullclient approach also. The below post have the links that has all the details.
    Re: Corrupted JAR:C:\workspace\weblogic.jar
    Thanks
    Ravi Jegga

  • Weblogic ant task wsdl2service - truncating soapaction

    Hi all,
    I'm using the weblogic ant utility "wsdl2service" to deploy my webservice. Here is the ant snippet of my script.
    <taskdef name="wsdl2service" classname="weblogic.ant.taskdefs.webservices.wsdl2service.WSDL2Service"/>
    <wsdl2service wsdl="${dev.dir}/wsdl/${myService}.wsdl" destDir="${build.dir}/wsjar"
         typeMappingFile="AutoType/in_types.xml" packageName="${in_class_packagename}" generateImpl="True">
    <classpath>
         <pathelement path="${lib3}"/>
         <pathelement path="${lib1}"/>
    <pathelement path="${lib2}"/>
         <pathelement path="AutoType/inventoryNotificationType.jar"/>
    </classpath>     
    </wsdl2service>
    It compiles properly and prepares the build. But after deploying the build, when i try to browse the wsdl thru internet browser, it is not populating the SOAPACTION attribute of SOAP:OPERATION element of my wsdl. So in the internetbroser the SOAPAction attribute is having empty value though it is present in the wsdl.
    Can some one tell why the WSDL2SERVICE tool is not populating the SOAPACTION attribute?

    Hi Jay,
    Thanks for your help.
    I am using weblogic 8.1 and Apache Ant version 1.5.3
    Jay I do not have client source code. When I am generating client using clientgen ant task, it gives me only a .jar file with .class files in it.
    I added .jar file generated by clientgen task in 'run' but now I am getting another error.
    <target name="run">
    <java classname="clientpkg.MathFace_Stub" fork="true" >
    <arg value="http://localhost:${port}/WebServices/MyFirstService?WSDL"/>
    <arg value="10"/>
    <arg value="17"/>
    <classpath>
    <pathelement location="staging"/>
    <pathelement location="${wl.home}/server/lib/weblogic.jar"/>
    <pathelement location="staging/MyFirstService_client.jar"/>
    <pathelement location="/ffdt01/resmgt/kul/ws"/>
    <pathelement path="staging"/>
    </classpath>
    </java>
    </target>
    --- This is giving below error:
    cu dmwls(162)$ ant run
    Buildfile: build.xml
    run:
    +[java] Exception in thread "main" j*ava.lang.NoSuchMethodError:* main+
    +[java] Java Result: 1+
    BUILD SUCCESSFUL
    Total time: 1 second
    Edited by: [email protected] on Feb 19, 2010 1:53 PM

  • Weblogic ant task

    Hi all,
    I'm trying to write a build script for starting the Weblogic server, stopping it, deploy applications and delete them from server. Till now it has been done manually, like clicking the startCmd.bat for the corresponding server domain. I have specifically mentioned some memory properties in MEM_ARGS (-Xms256m -Xmx512m -XX:MaxPermSize=128m). How can one specify the same memory arguments in Weblogic Ant task (wlserver). Thanks in advance.

    Hi all,
    I'm trying to write a build script for starting the Weblogic server, stopping it, deploy applications and delete them from server. Till now it has been done manually, like clicking the startCmd.bat for the corresponding server domain. I have specifically mentioned some memory properties in MEM_ARGS (-Xms256m -Xmx512m -XX:MaxPermSize=128m). How can one specify the same memory arguments in Weblogic Ant task (wlserver). Thanks in advance.

  • Weblogic ant wsdl2service - truncating soapaction

    Hi all,
    I'm using the weblogic ant utility "wsdl2service" to deploy my webservice. Here is the ant snippet of my script.
    <taskdef name="wsdl2service" classname="weblogic.ant.taskdefs.webservices.wsdl2service.WSDL2Service"/>
    <wsdl2service wsdl="${dev.dir}/wsdl/${myService}.wsdl" destDir="${build.dir}/wsjar"
    typeMappingFile="AutoType/in_types.xml" packageName="${in_class_packagename}" generateImpl="True">
    <classpath>
    <pathelement path="${lib3}"/>
    <pathelement path="${lib1}"/>
    <pathelement path="${lib2}"/>
    <pathelement path="AutoType/inventoryNotificationType.jar"/>
    </classpath>
    </wsdl2service>
    It compiles properly and prepares the build. But after deploying the build, when i try to browse the wsdl thru internet browser, it is not populating the SOAPACTION attribute of SOAP:OPERATION element of my wsdl. So in the internetbroser the SOAPAction attribute is having empty value though it is present in the wsdl.
    Can some one tell why the WSDL2SERVICE tool is not populating the SOAPACTION attribute?

    no problem -- thanks for responding so quick!
    "Neal Yin" <[email protected]> wrote in message
    news:3d87a87e$[email protected]..
    Sorry, "output" should be "destDir" as in autotype. We will correct thedoc.
    >
    -Neal
    "Mike" <[email protected]> wrote in message
    news:[email protected]..
    Hi, I've got autotype working, but I can't get wsdl2service to work.
    If I specify the "output" attribute, I get a message indicating that it
    is
    not supported:
    "The <wsdl2service> task doesn't support the "output" attribute."
    If I take away the "output" attribute, I get a message indicating thatit
    is
    required:
    "Output attribute must be set."
    Here is my ant file:
    <taskdef name="autotype"
    classname="weblogic.ant.taskdefs.webservices.javaschema.JavaSchema"/>
    <taskdef name="wsdl2service"
    classname="weblogic.ant.taskdefs.webservices.wsdl2service.WSDL2Service"/>
    >>
    <target name="buildfromscratch">
    <autotype wsdl="c:\mywsdl.wsdl" packageName="com.xyz.types"
    destDir="./autotype"/>
    <wsdl2service wsdl="c:\mywsdl.wsdl" output="./test"
    typeMappingFile="./autotype.types.xml" packageName="com.xyz" />
    </target>
    I double checked that the classname associated with the taskdef iscorrect
    with what manoj specified etc.
    Thanks in advance for your help.
    Mike

  • Is there a way of changing the jdevappunknown_ folder that Ant deploys to?

    Using Ant DeployESBSuitcase doesn't work when deploying Projects with dependencies.
    Steps to re-create error:
    Create a JDeveloper ESB Project called ‘ProjectB’ and add file adapter called ‘WriteFile’ to write a file. Deploy this project using JDeveloper.
    Create another JDeveloper ESB Project called ‘ProjectA’ and add a file adapter called ‘ReadFile’ to read a file.
    From ProjectA’s routing service add a routing rule and use ‘Browse Target Service Operation’ (Gear wheel icon) and select the deployed ProjectB_WriteFile service.
    Deploy ProjectA using JDeveloper.
    Use Ant to create a deploymentplan file for both projects by running the ExtractESBDeploymentPlan target.
    Note: As these projects are saved under their own directory structure
    C:\Workspace\Local\ProjectA and C:\Workspace\Local\ProjectB you will need to copy the ..\ProjectB\ProjectB_WriteFile.wsdl to the ProjectA folder.
    Confirm that ProjectA and ProjectB Ant build files DeployESBSuitcase properties (esbMetadataServerHost and esbMetaServerPort) point to another server other than the one you have just deployed ProjectA and ProjectB to using JDeveloper. i.e. a clean server that doesn’t know about these Projects
    Deploy ProjectB using Ant’s DeployESBSuitcase target.
    Deploy ProjectA using Ant’s DeployESBSuitcase target.
    An error is now thrown
    C:\Workspace\Local\ProjectA>ant DeployESBSuitcase
    Buildfile: build.xml
    DeployESBSuitcase:
    [echo] Deploying ESB Project ProjectA to serverx
    [deployESBSuitcase] Deployment Attempt Response :
    [deployESBSuitcase] <deploymentSummary>
    [deployESBSuitcase] <message>Entity Deployment Failed</message>
    [deployESBSuitcase] <errors>
    [deployESBSuitcase] <error code="1049" severity="5">
    [deployESBSuitcase] <description>WSDL "esb:///ESB_Projects/Local_ProjectB/ProjectB_WriteFile.wsdl" of service "DefaultSystem.ProjectB_WriteFile" is invalid or unaccessible. Following error is thrown by WSDL Parser : WSDL Parsing Failed: org.apache.slide.structure.ObjectNotFoundException: No object found at /files/ESB_Projects/Local_ProjectB</description>
    [deployESBSuitcase] <fix>Ensure that the WSDL is accessible and valid. If the problem persists, Contact Oracle Support.</fix>
    [deployESBSuitcase] </error>
    [deployESBSuitcase] </errors>
    [deployESBSuitcase] </deploymentSummary>
    [deployESBSuitcase]
    [deployESBSuitcase] Deployment Failed ...Unhandled Exception
    [deployESBSuitcase] java.lang.Exception: Deployment attempt failed, please review deployment attempt response above
    [deployESBSuitcase] at oracle.tip.esb.client.anttasks.DeploymentHelper.deploy(DeploymentHelper.java:128)
    [deployESBSuitcase] at oracle.tip.esb.client.anttasks.DeploymentHelper.deploy(DeploymentHelper.java:175)
    [deployESBSuitcase] at oracle.tip.esb.client.anttasks.DeployESBSuitcaseTask.execute(DeployESBSuitcaseTask.java:510)
    [deployESBSuitcase] at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
    [deployESBSuitcase] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [deployESBSuitcase] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [deployESBSuitcase] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [deployESBSuitcase] at java.lang.reflect.Method.invoke(Method.java:585)
    [deployESBSuitcase] at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    [deployESBSuitcase] at org.apache.tools.ant.Task.perform(Task.java:348)
    [deployESBSuitcase] at org.apache.tools.ant.Target.execute(Target.java:357)
    [deployESBSuitcase] at org.apache.tools.ant.Target.performTasks(Target.java:385)
    [deployESBSuitcase] at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)
    [deployESBSuitcase] at org.apache.tools.ant.Project.executeTarget(Project.java:1306)
    [deployESBSuitcase] at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
    [deployESBSuitcase] at org.apache.tools.ant.Project.executeTargets(Project.java:1189)
    [deployESBSuitcase] at org.apache.tools.ant.Main.runBuild(Main.java:758)
    [deployESBSuitcase] at org.apache.tools.ant.Main.startAnt(Main.java:217)
    [deployESBSuitcase] at org.apache.tools.ant.launch.Launcher.run(Launcher.java:257)
    [deployESBSuitcase] at org.apache.tools.ant.launch.Launcher.main(Launcher.java:104)
    BUILD FAILED
    java.lang.Exception: Deployment attempt failed, please review deployment attempt response above
    at oracle.tip.esb.client.anttasks.DeploymentHelper.deploy(DeploymentHelper.java:128)
    at oracle.tip.esb.client.anttasks.DeploymentHelper.deploy(DeploymentHelper.java:175)
    at oracle.tip.esb.client.anttasks.DeployESBSuitcaseTask.execute(DeployESBSuitcaseTask.java:510)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
    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:585)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.Target.execute(Target.java:357)
    at org.apache.tools.ant.Target.performTasks(Target.java:385)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1306)
    at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1189)
    at org.apache.tools.ant.Main.runBuild(Main.java:758)
    at org.apache.tools.ant.Main.startAnt(Main.java:217)
    at org.apache.tools.ant.launch.Launcher.run(Launcher.java:257)
    at org.apache.tools.ant.launch.Launcher.main(Launcher.java:104)
    Total time: 2 seconds
    C:\Workspace\Local\ProjectA>
    This error is thrown as ProjectB’s wsdl file cannot be found under esb:///ESB_Projects/Local_ProjectB/ProjectB_WriteFile.wsdl.
    This is due to Ant deploying ProjectB under …\ESB_Projects\jdevappunknown_ rather than …\ESB_Projects\Local_ProjectB
    When deploying ESB projects from JDeveloper they are created under the following structure: <Oracle_Home>\integration\esb\oraesb\artifacts\store\metadata\files\ESB_Projects\<JDev_Workspace>\<Project_Name>
    However when using the Ant target DeployESBSuitcase ALL projects are deployed to the same folder:
    <Oracle_Home>\integration\esb\oraesb\artifacts\store\metadata\files\ESB_Projects\jdevappunknown_
    Is there a way of changing the jdevappunknown folder used by Ant deployments?
    Edited by: user2000 on Apr 27, 2009 3:37 PM

    James,
    Following my steps above I don't get anything in the deploymentPlan for either ProjectA or ProjectB which includes a WSDL URL I can modify.
    ProjectA includes the ProjectB_WrieFile.esbsv file which contains the following line:
    <wsdlURL>esb:///ESB_Projects/Local_ProjectB/ProjectB_Write.wsdl</wsdlURL>
    Is there something I can change which will mean when I regenerate the deploymentPlan it will include the WSDL location?
    Thanks
    Alistair
    Edited by: user2000 on Apr 28, 2009 11:55 AM
    I've included Both Deployment Plans:
    ProjectA Deployment Plan
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <deploymentPlan>
    <serviceDeploymentPlan qname="DefaultSystem.ProjectA_ReadFile" status="ENABLED">
    <parent type="system" qname="DefaultSystem"/>
    <properties>
    <jcaOperation>
    <property value="Read" name="LogicalDirectory"/>
    <property value="oracle.tip.adapter.file.inbound.FileActivationSpec" name="ActivationSpec"/>
    <property value="Archive" name="LogicalArchiveDirectory"/>
    <property value="true" name="DeleteFile"/>
    <property value=".*\.txt" name="IncludeFiles"/>
    <property value="60" name="PollingFrequency"/>
    <property value="0" name="MinimumAge"/>
    <property value="true" name="OpaqueSchema"/>
    </jcaOperation>
    <jcaAddress>
    <property value="eis/FileAdapter" name="location"/>
    <property value="*.txt" name="UIincludeWildcard"/>
    </jcaAddress>
    </properties>
    </serviceDeploymentPlan>
    <serviceDeploymentPlan qname="DefaultSystem.ProjectA_ReadFile_RS" status="ENABLED">
    <parent type="system" qname="DefaultSystem"/>
    <properties>
    <serviceDefinition>
    <property value="ProjectA_ReadFile.wsdl" name="wsdlURL"/>
    </serviceDefinition>
    </properties>
    </serviceDeploymentPlan>
    <serviceDeploymentPlan qname="DefaultSystem.ProjectB_WriteFile" status="ENABLED">
    <parent type="system" qname="DefaultSystem"/>
    <properties>
    <jcaOperation>
    <property value="Write" name="LogicalDirectory"/>
    <property value="oracle.tip.adapter.file.outbound.FileInteractionSpec" name="InteractionSpec"/>
    <property value="ProjectB_%SEQ%.txt" name="FileNamingConvention"/>
    <property value="1" name="NumberMessages"/>
    <property value="true" name="OpaqueSchema"/>
    </jcaOperation>
    <jcaAddress>
    <property value="eis/FileAdapter" name="location"/>
    </jcaAddress>
    </properties>
    </serviceDeploymentPlan>
    </deploymentPlan>
    Project B Deployment Plan
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <deploymentPlan>
    <serviceDeploymentPlan qname="DefaultSystem.ProjectB_WriteFile" status="ENABLED">
    <parent type="system" qname="DefaultSystem"/>
    <properties>
    <jcaOperation>
    <property value="Write" name="LogicalDirectory"/>
    <property value="oracle.tip.adapter.file.outbound.FileInteractionSpec" name="InteractionSpec"/>
    <property value="ProjectB_%SEQ%.txt" name="FileNamingConvention"/>
    <property value="1" name="NumberMessages"/>
    <property value="true" name="OpaqueSchema"/>
    </jcaOperation>
    <jcaAddress>
    <property value="eis/FileAdapter" name="location"/>
    </jcaAddress>
    </properties>
    </serviceDeploymentPlan>
    </deploymentPlan>

  • Jvmargs not being placed in jnlp file by ant deploy task

    Hi
    I have an ant deploy task as given below. I run ant to produce the jnlp file. Everything works ok, EXCEPT the jvmargs, and the enclosing platform element, are not copied into the jnlp file.
    Is this the intended behaviour?
    thanks
    graham
    -- ant task ---
    <project name="BuildInfoView" xmlns:fx="javafx:com.sun.javafx.tools.ant">
    <taskdef
         resource="com/sun/javafx/tools/ant/antlib.xml"
         uri="javafx:com.sun.javafx.tools.ant"
         classpath="/Library/Java/JavaVirtualMachines/jdk1.7.0_17.jdk/Contents/Home/lib/ant-javafx.jar"/>
    <fx:deploy
    outdir="../installation/bin"
         outfile="infoview"
    width="800"
         height="500"
         embeddedWidth="100%"
         embeddedHeight="100%">
         <fx:application
              name="Infoview"
              mainClass="com.ods.infoview.Main">
         </fx:application>
         <fx:info
              title="InfoView"
              description="InfoView"
              vendor="OrangeDog">
         </fx:info>
         <fx:permissions elevated="true"/>
         <fx:platform javafx="2.2+">
         <fx:jvmarg value="-Xmx400"/>
         </fx:platform>
    <!--
    cacheCertificates="true"/>
    -->
         <fx:resources>
              <fx:fileset dir="../gradle/output/"/>
         </fx:resources>
    </fx:deploy>
    </project>

    There is a FAQ note about this
    http://java.sun.com/products/javawebstart/faq.html#72
    Bill

  • Weblogic 12 deployment failure for an EJB

    EJBAn ear deployment is failing while trying to deploy on Weblogic 12.1.1 whereas it is getting deployed on Weblogic 11
    Unable to deploy EJB: /opt/app/bbnms/cim/domains/JEE/cim/WLS/cim/servers/sync_server1/tmp/_WL_user/ATT_Discovery_Service/yx56mr/ndc-ejb-jar.jar from ndc-ejb-jar.jar:
    011113
    weblogic.application.ModuleException: Exception preparing module: EJBModule(ndc-ejb-jar.jar)
    Unable to deploy EJB: /opt/app/bbnms/cim/domains/JEE/cim/WLS/cim/servers/sync_server1/tmp/_WL_user/ATT_Discovery_Service/yx56mr/ndc-ejb-jar.jar from ndc-ejb-jar.jar:
    011113
            at weblogic.ejb.container.deployer.EJBModule.prepare(EJBModule.java:447)
            at weblogic.application.internal.flow.ScopedModuleDriver.prepare(ScopedModuleDriver.java:188)
            at weblogic.application.internal.ExtensibleModuleWrapper.prepare(ExtensibleModuleWrapper.java:83)
            at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:100)
            at weblogic.application.internal.flow.ModuleStateDriver$1.next(ModuleStateDriver.java:172)
            at weblogic.application.internal.flow.ModuleStateDriver$1.next(ModuleStateDriver.java:167)
            at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:35)
            at weblogic.application.internal.flow.ModuleStateDriver.prepare(ModuleStateDriver.java:38)
            at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:139)
            at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:55)
            at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:706)
            at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:35)
            at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:237)
            at weblogic.application.internal.EarDeployment.prepare(EarDeployment.java:61)
            at weblogic.application.internal.DeploymentStateChecker.prepare(DeploymentStateChecker.java:158)
            at weblogic.deploy.internal.targetserver.AppContainerInvoker.prepare(AppContainerInvoker.java:60)
            at weblogic.deploy.internal.targetserver.AppDeployment.prepare(AppDeployment.java:155)
            at weblogic.management.deploy.internal.DeploymentAdapter$1.doPrepare(DeploymentAdapter.java:39)
            at weblogic.management.deploy.internal.DeploymentAdapter.prepare(DeploymentAdapter.java:191)
            at weblogic.management.deploy.internal.AppTransition$1.transitionApp(AppTransition.java:21)
            at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
            at weblogic.management.deploy.internal.ConfiguredDeployments.prepare(ConfiguredDeployments.java:165)
            at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:122)
            at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:186)
            at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:94)
            at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
            at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused By: 011113 NestedException Message is :011113
    at weblogic.ejb.container.deployer.MessageDrivenBeanInfoImpl.<init>(MessageDrivenBeanInfoImpl.java:739)
            at weblogic.ejb.container.deployer.BeanInfoFactory.createBeanInfoImpl(BeanInfoFactory.java:36)
            at weblogic.ejb.container.deployer.MBeanDeploymentInfoImpl.initializeBeanInfos(MBeanDeploymentInfoImpl.java:546)
            at weblogic.ejb.container.deployer.MBeanDeploymentInfoImpl.<init>(MBeanDeploymentInfoImpl.java:242)
            at weblogic.ejb.container.deployer.EJBDeployer.prepare(EJBDeployer.java:864)
            at weblogic.ejb.container.deployer.EJBModule.prepare(EJBModule.java:419)

    If Message Driven Beans implements more than one interface, the error "011113 NestedException Message is :011113" occurs
    For example:
    class OurMDB implements javax.jms.MessageListener, Interface2
       public void onMessage(Message msg)
    Its a bug in 12c...
    To solve the issue, apply patch provided in the Defect 13984579.
    Hope it helps!!
    Vijaya
    =====

  • WebLogic Server Deployment Scenarios

    Hi All,
    I am looking for some pointers/docs showing the Weblogic Deployment Architecture/suggestions/use cases.
    My real interest is in knowing how do proceed with sizing of Weblogic server deployment.
    thanks

    Please see the Capacity Planning guide:
    http://edocs.bea.com/wls/docs103/perform/appc_capplan.html

  • Java EE Tutorial ant deploy

    Hi
    I have a problem when using the ant deploy command in the hello1 app in the tutorial. I get an error:
    BUILD FAILED
    E:\dev\javaeetutorial5\examples\bp-project\app-server-ant.xml:417: Property javaee.server.passwordfile not specified. Please
    specify the javaee.server.passwordfile property in 'bp-project/build.properties'.
    You will also need to ensure that the passwordfile is present and contains
    AS_ADMIN_PASSWORD.
    can any one point me in the direction for correcting this? Where do i find the password file so i can add it to the app-server-ant.xml file
    Thank you for any help.

    E:\dev\javaeetutorial5\examples\bp-project\app-server-
    ant.xml:417: Property javaee.server.passwordfile not
    specified. Please
    specify the javaee.server.passwordfile
    property in 'bp-project/build.properties'.
    You will also need to ensure that the
    passwordfile is present and contains
    AS_ADMIN_PASSWORD.
    point me in the direction for correcting this? Where
    do i find the password file so i can add it to the
    app-server-ant.xml file
    hank you for any help.Create a password file, say password.txt with the following line
    AS_ADMIN_PASSWORD=<substitue your admin password, most probably adminadmin>
    Open bp-project/build.properties and update the following line
    javaee.server.passwordfile=<absolute path to password.txt, example: c:/appserver/password.txt>
    It is preferrable to create the file password.txt under a directory which has no spaces.
    If bp-project/build.properties does not exist, copy bp-project/build.properties.sample to bp-project/build.properties and update it based on your application server installation.
    - sreeni

  • Eclipse and WebLogic Ant Tasks

    In WL_HOME/server/lib/ant/ is an ant.jar. It has a "defaults.properties" containing all of the ant taskdefs. I tried to extract that so that my build.xml could use them but it keeps complaining about weblogic.ant.taskdefs.perforce.P4Changes cannot be found. The reason why is that it's under the wrong package. How does one run the weblogic ant tasks outside of the weblogic ant installation? Thanks, Jeremy

    bengali.Hi,
    you also have to include a <taskdef> for the servicegen task of >weblogicThat's why I did but I still have a problem with the source2wsdd
    ant task ( the other tasks run correctly within Eclipse).
    I get a :
    [source2wsdd] source2wsdd: Cannot find doclet class weblogic.webservice.tools.ddgen.ServiceGen
    [source2wsdd] 1 error
    BUILD FAILED: build.xml:324: javadoc execution failed
    Total time: 3 seconds
    The problem is that my source2wsdd has been defined with a well suited classpath
    and is also called with the right classpath.
    The problem only happens with this task !
    Bengali

  • Disappearing weblogic.xml deployment descriptor elements

    Using WebLogic 8.1 SP1
    We have an application that we deploy with a weblogic.xml file. This file has
    half-a-dozen deployment descriptor elements, and for some reason I'm unaware of,
    several of the parameters specified by these elements are set to their default
    values, and these elements don't show up in the weblogic.xml deployment decriptor
    when displayed from within the WebLogic Server console. When deploying an exploded
    EAR, I can change the value to something non-default , look at the deployment
    descriptor and the element appears; change it back and the element is gone.
    Is this expected behavior? Is there any configuration setting to display all
    the elements no matter the value?
    Thanks.

    ram ram <> wrote:
    should i used new jdk that comes with the upgrade package of 8.1.6 like
    (jdk1.4.11)
    my class path having the weblogic jar also.
    this is my class path.:
    E:\bea\weblogic81\server\lib\weblogic.jar and other my application
    jars.
    Add tools.jar from your Java installation to the classpath.
    Bart
    Schelstraete Bart
    http://www.schelstraete.org
    http://www.mqseries.be

  • Weblogic EJB Deployment Descriptor

    Hi,
    Can someone help me in learning how to write weblogic specific deployment descriptors for EJBs ??? Where can I find good tutorial or help. I am new to EJB.
    Thank you in advance

    Why not search http://bea.com and see what pops up. I searched their site for "EJB deployment descriptors" and got quite a few hits.

Maybe you are looking for

  • 10.6.8 freeze macbookpro3,1 nvidia 8600M

    I have been having somewhat random lockups since upgrading my machine to 10.6.8.  It appears to be a video issue, but I can't be sure if it is a hardware problem or a software issue related to the update.  Every time before the machine freezes (hard

  • Problem in Workflow in Purchase Order for Several Level of Release Process

    Hello everybody,      I have to create a workflow in which a release steps are assined by the size of amount. so in minimum 2 to maximum of 4 level approval. When the first person approves the workflow shold go to the next person. I have used the sta

  • Error while configuring application server in Jdev 11g

    Hi all, I am trying make connection to application server in Jdev 11g. While testing the connection i am facing the below error. Testing JSR-160 Runtime ... failed. Cannot establish connection. Testing JSR-160 DomainRuntime ... skipped. Testing JSR-8

  • PSE 12 frequent crashes

    I'm running Photoshop Elements 12 with Windows 7 on Intel i7-3960x. OS and program are on SSD. Files on HHD. Experiencing frequent Organizer crashes especially while updating faces or scrolling, but it will also crash when it not active (just sitting

  • Group Tree Basic

    Hi I am using group trees in my report and it works fine, but I am not able to hide the group tree pane. is there a way to hide it so that based on the use it displays only their results in the server when u run the report? Also is there a way to sho