Maven Auto deployment problems in Weblogic 10.0

Hi All,
Past two day's i am facing a exception in maven auto deployment process. I have given properly the configuration Tags(Shown below). I am able to send the deployment commands to weblogic but i am getting some run time exceptions. Please find below details.
mvn -e org.codehaus.mojo:weblogic-maven-plugin:2.9.1:deploy -Dsource=target/test-war-SNAPSHOT.war
[INFO] Error stacktraces are turned on.
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building maven-test-war -SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- weblogic-maven-plugin:2.9.1:deploy (default-cli) @ test-war ---
[INFO] Weblogic Deployment beginning with parameters DeployMojoBase[adminServerH
ostName = localhost, adminServerProtocol = t3, adminServerPort = 8001, userId =
weblogic, password = weblogic, artifactPath = C:\test\test\test-war\target/test-war--SNAPSHOT, projectPackaging = war, name = test-war, targetNames = AdminServer, remote = false]
[INFO] Weblogic Deployment parameters [-adminurl, t3://localhost:8001, -username
, weblogic, -password, weblogic, -name, test-war, -targets, AdminServer, -s
ource,
weblogic.Deployer invoked with options: -adminurl t3://localhost:8001 -username
weblogic -name test-war -targets AdminServer -source C:\test\test-war\target/test-war--SNAPSHOT.war -deploy
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 2.155s
[INFO] Finished at: Wed Jul 13 18:06:20 IST 2011
[INFO] Final Memory: 3M/12M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.codehaus.mojo:weblogic-maven-plugin:2.9.1:dep
loy (default-cli) on project test-war: Execution default-cli of goal org.co
dehaus.mojo:weblogic-maven-plugin:2.9.1:deploy failed: A required class was miss
ing while executing org.codehaus.mojo:weblogic-maven-plugin:2.9.1:deploy: weblog
ic/rmi/extensions/RemoteRuntimeException
[ERROR] -----------------------------------------------------
Number of foreign imports: 1
import: Entry[import  from realm ClassRealm[maven.api, parent: null]]
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor
.java:225)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor
.java:153)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor
.java:145)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProje
ct(LifecycleModuleBuilder.java:84)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProje
ct(LifecycleModuleBuilder.java:59)
at org.apache.maven.lifecycle.internal.LifecycleStarter.singleThreadedBu
ild(LifecycleStarter.java:183)
at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(Lifecycl
eStarter.java:161)
at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:319)
at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
at org.apache.maven.cli.MavenCli.execute(MavenCli.java:537)
at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:196)
at org.apache.maven.cli.MavenCli.main(MavenCli.java:141)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Laun
cher.java:290)
at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.jav
a:230)
at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(La
uncher.java:409)
at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:
352)
Caused by: org.apache.maven.plugin.PluginExecutionException: Execution default-c
li of goal org.codehaus.mojo:weblogic-maven-plugin:2.9.1:deploy failed: A requir
ed class was missing while executing org.codehaus.mojo:weblogic-maven-plugin:2.9
.1:deploy: weblogic/rmi/extensions/RemoteRuntimeException
r
import: Entry[import  from realm ClassRealm[maven.api, parent: null]]
at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(Default
BuildPluginManager.java:125)
... 20 more
Caused by: java.lang.NoClassDefFoundError: weblogic/rmi/extensions/RemoteRuntime
Exception
at weblogic.deploy.api.tools.deployer.Deployer.runBody(Deployer.java:90)
at weblogic.utils.compiler.Tool.run(Tool.java:158)
at weblogic.utils.compiler.Tool.run(Tool.java:115)
at weblogic.Deployer.run(Deployer.java:70)
at org.codehaus.mojo.weblogic.DeployMojoBase.executeDeployer(DeployMojoB
ase.java:510)
at org.codehaus.mojo.weblogic.DeployMojo.execute(DeployMojo.java:49)
at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(Default
BuildPluginManager.java:101)
... 20 more
[ERROR]
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please rea
d the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginContaine
rException
I checked the weblogc.jar, i am unable to find the RemoteRuntimeException class in that jar.
Configuration Tags
================
<configuration>
<name>web</name>
<adminServerHostName>localhost</adminServerHostName>
<adminServerPort>7001</adminServerPort>
<adminServerProtocol>t3</adminServerProtocol>
<artifactPath></artifactPath>
<exploded>true</exploded>
<userId>weblogic</userId>
<password>weblogic</password>
<upload>true</upload>
<remote>false</remote>
<verbose>true</verbose>
<debug>false</debug>
<targetNames>AdminServer</targetNames>
</configuration>
Please help me on the same.
Regards,
Jerald.
Edited by: user1173449 on Jul 14, 2011 6:09 AM

Jerald, Oracle doesn't own this particular piece of code so I can't help too much since I have no real knowledge of it's working. It was built and used with earlier versions of WLS (8.1, 9.2) so it may not have tracked any changes made to libraries/packaging in WLS 10.0.
Caused by: java.lang.NoClassDefFoundError: weblogic/rmi/extensions/RemoteRuntimeException
at weblogic.deploy.api.tools.deployer.Deployer.runBody(Deployer.java:90)I see in WLS 10.3.x, that the class identified as missing is located in client JAR files:
sbutton:~/Oracle/Middleware/wlserver_10.3 $ jwhich RemoteRuntimeException .
Adding . to search path
./server/lib/wljmsclient.jar: weblogic.rmi.extensions.RemoteRuntimeException
./server/lib/wlthint3client.jar: weblogic.rmi.extensions.RemoteRuntimeException
I don't have a 10.0 install so am not sure where it resides in that release.
We have introduced a WebLogic Server Maven Plugin in our WLS 10.3.3 release which supports deployment operations. This is not supported/certified for working against a WLS 10.0 environment, but if you are using Maven and have an opportunity to update to a more recent release, then we have something which may be of use to you.
http://download.oracle.com/docs/cd/E17904_01/web.1111/e13702/maven_deployer.htm#BABBBEGG
-steve-

Similar Messages

  • Hot deployment problems with weblogic 7.0 sp2

    Hi Guys
    I am trying out hot deplyment of a j2ee application on WebLogic Server 7.0 SP2
    Approach 1
    The application is deployed in exploded ear format from the folder
    d:/work/testbed/ear. The appropriate entry in config.xml looks like this.
    <Application Deployed="true" Name="Testbed"
    Path="D:\tools\bea702\projects\testbed\applications\testbed"
    StagedTargets="" TwoPhase="false">
    <EJBComponent Name="SessionBeans" Targets="myserver" URI="SessionBeans.jar"/>
    </Application>
    Creating or touching the REDEPLOY file in META-INF folder doesnt cause hot
    deployment to occur
    Approach 2
    Copied the ear file to the applications folder. Creating or touching the
    REDEPLOY file in META-INF file caused the application to be redeployed.
    However the weblogic console is constantly spitting out this message.
    Undeploying EJB Component SessionBeans
    <Sep 29, 2003 9:53:46 PM IST> <Notice> <Application Poller> <149400> <Activating application: Testbed>
    <Sep 29, 2003 9:53:46 PM IST> <Notice> <Application Poller> <149404> <Activate application Testbed on myserver - Completed>
    Undeploying EJB Component SessionBeans
    <Sep 29, 2003 9:53:51 PM IST> <Notice> <Application Poller> <149400> <Activating application: Testbed>
    <Sep 29, 2003 9:53:52 PM IST> <Notice> <Application Poller> <149404> <Activate application Testbed on myserver - Completed>
    Undeploying EJB Component SessionBeans
    <Sep 29, 2003 9:53:57 PM IST> <Notice> <Application Poller> <149400> <Activating application: Testbed>
    <Sep 29, 2003 9:53:57 PM IST> <Notice> <Application Poller> <149404> <Activate application Testbed on myserver - Completed>
    It seems that the application is getting undeployed and reactivated every 5
    seconds.
    Questions
    1) Any reasons why approach 1 didnt work
    2) What could be causing this constant undeployment and reactivation
    Thanks for your time
    anand

    I think I figured out what is causing the application to be redployed every 5
    seconds. It seems that if the application is deployed in the weblogic domains
    applications folder you should NOT create a <Application element. Weblogic
    automatically recognizes all applications in this folder and deploys them.
    Removing the application entry (as shown in Approach 1) from the config.xml
    and hot deploying by touching the REDEPLOY file did the trick.
    One question still remains. Is hot deployment only possible when I copy the
    exploded ear to the domain "applications" folder
    Thanks for your time
    anand
    ps : The idea of trying it without the <Application element came from trying
    out hot deployment in Weblogic 8. WLS8 first deploys the application in the
    applications folder, followed by the application configured in the
    <Application element. Since both the applications were essentially the same it
    gave me a JNDIException saying that some entity is already bound with the same
    name. Weblogic 7 however doesnt complain at this point.
    - anand
    In article <[email protected]>, Anand Raman wrote:
    Hi Guys
    I am trying out hot deplyment of a j2ee application on WebLogic Server 7.0 SP2
    Approach 1
    The application is deployed in exploded ear format from the folder
    d:/work/testbed/ear. The appropriate entry in config.xml looks like this.
    <Application Deployed="true" Name="Testbed"
    Path="D:\tools\bea702\projects\testbed\applications\testbed"
    StagedTargets="" TwoPhase="false">
    <EJBComponent Name="SessionBeans" Targets="myserver" URI="SessionBeans.jar"/>
    </Application>
    Creating or touching the REDEPLOY file in META-INF folder doesnt cause hot
    deployment to occur
    Approach 2
    Copied the ear file to the applications folder. Creating or touching the
    REDEPLOY file in META-INF file caused the application to be redeployed.
    However the weblogic console is constantly spitting out this message.
    Undeploying EJB Component SessionBeans
    <Sep 29, 2003 9:53:46 PM IST> <Notice> <Application Poller> <149400> <Activating application: Testbed>
    <Sep 29, 2003 9:53:46 PM IST> <Notice> <Application Poller> <149404> <Activate application Testbed on myserver - Completed>
    Undeploying EJB Component SessionBeans
    <Sep 29, 2003 9:53:51 PM IST> <Notice> <Application Poller> <149400> <Activating application: Testbed>
    <Sep 29, 2003 9:53:52 PM IST> <Notice> <Application Poller> <149404> <Activate application Testbed on myserver - Completed>
    Undeploying EJB Component SessionBeans
    <Sep 29, 2003 9:53:57 PM IST> <Notice> <Application Poller> <149400> <Activating application: Testbed>
    <Sep 29, 2003 9:53:57 PM IST> <Notice> <Application Poller> <149404> <Activate application Testbed on myserver - Completed>
    It seems that the application is getting undeployed and reactivated every 5
    seconds.
    Questions
    1) Any reasons why approach 1 didnt work
    2) What could be causing this constant undeployment and reactivation
    Thanks for your time
    anand

  • Deployment Problem in weblogic

    Hi,
    This is Niranjan Reddy. I am using JDeveloper 10.1.3 with weblogic 9i. When I deploy the application in to a weblogic server from a Jdeveloper I am getting the following error.
    Can any one can solve my problem.
    F:\full version of Jdeveloper\full version of Jdeveloper\jdevstudio1013\jdk\jre\bin\javaw.exe -classpath C:\beahome\weblogic90\server\lib\weblogic.jar weblogic.Deployer -adminurl http://localhost:7001 -user niranjan -password **** -debug -verbose -deploy -upload -source F:\full version of Jdeveloper\full version of Jdeveloper\jdevstudio1013\jdev\practice\firstdeploy\firstsample\deploy\firstdeploy.ear -name firstdeploy
    weblogic.Deployer invoked with options: -adminurl http://localhost:7001 -user niranjan -debug -verbose -deploy -upload -source F:\full version of Jdeveloper\full version of Jdeveloper\jdevstudio1013\jdev\practice\firstdeploy\firstsample\deploy\firstdeploy.ear -name firstdeploy
    [WebLogicDeploymentManagerImpl.<init>():102] : Constructing DeploymentManager for J2EE version V1_4 deployments
    [WebLogicDeploymentManagerImpl.getNewConnection():145] : Connecting to admin server at localhost:7001, as user niranjan
    [ServerConnectionImpl.getEnvironment():252] : setting environment
    [ServerConnectionImpl.getEnvironment():255] : getting context using http://localhost:7001
    [ServerConnectionImpl.close():298] : Closing DM connection
    [ServerConnectionImpl.close():318] : Unregistered all listeners
    weblogic.deploy.api.tools.deployer.DeployerException: Unable to connect to 'http://localhost:7001': Destination unreachable; nested exception is:
         java.net.ProtocolException: Tunneling result unspecified - is the HTTP server at host: 'localhost' and port: '7001' a WebLogic Server?; No available router to destination. Ensure the url represents a running admin server and that the credentials are correct. If using http protocol, tunneling must be enabled on the admin server.
         at weblogic.deploy.api.tools.deployer.Jsr88Operation.connect(Jsr88Operation.java:306)
         at weblogic.deploy.api.tools.deployer.Deployer.perform(Deployer.java:143)
         at weblogic.deploy.api.tools.deployer.Deployer.runBody(Deployer.java:93)
         at weblogic.utils.compiler.Tool.run(Tool.java:158)
         at weblogic.utils.compiler.Tool.run(Tool.java:115)
         at weblogic.Deployer.run(Deployer.java:70)
         at weblogic.Deployer.main(Deployer.java:54)
    Caused by: javax.enterprise.deploy.spi.exceptions.DeploymentManagerCreationException
         at weblogic.deploy.api.spi.deploy.WebLogicDeploymentManagerImpl.<init>(WebLogicDeploymentManagerImpl.java:120)
         at weblogic.deploy.api.spi.factories.internal.DeploymentFactoryImpl.getDeploymentManager(DeploymentFactoryImpl.java:84)
         at weblogic.deploy.api.tools.SessionHelper.getRemoteDeploymentManager(SessionHelper.java:398)
         at weblogic.deploy.api.tools.deployer.Jsr88Operation.connect(Jsr88Operation.java:287)
         ... 6 more
    Caused by: weblogic.deploy.api.spi.exceptions.ServerConnectionException
         at weblogic.deploy.api.spi.deploy.internal.ServerConnectionImpl.init(ServerConnectionImpl.java:131)
         at weblogic.deploy.api.spi.deploy.WebLogicDeploymentManagerImpl.getNewConnection(WebLogicDeploymentManagerImpl.java:147)
         at weblogic.deploy.api.spi.deploy.WebLogicDeploymentManagerImpl.<init>(WebLogicDeploymentManagerImpl.java:117)
         ... 9 more
    Caused by: javax.naming.CommunicationException [Root exception is java.net.ConnectException: http://localhost:7001: Destination unreachable; nested exception is:
         java.net.ProtocolException: Tunneling result unspecified - is the HTTP server at host: 'localhost' and port: '7001' a WebLogic Server?; No available router to destination]
         at weblogic.jndi.internal.ExceptionTranslator.toNamingException(ExceptionTranslator.java:48)
         at weblogic.jndi.WLInitialContextFactoryDelegate.toNamingException(WLInitialContextFactoryDelegate.java:739)
         at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:343)
         at weblogic.jndi.Environment.getContext(Environment.java:257)
         at weblogic.jndi.Environment.getInitialContext(Environment.java:165)
         at weblogic.deploy.api.spi.deploy.internal.ServerConnectionImpl.getContext(ServerConnectionImpl.java:294)
         at weblogic.deploy.api.spi.deploy.internal.ServerConnectionImpl.getEnvironment(ServerConnectionImpl.java:266)
         at weblogic.deploy.api.spi.deploy.internal.ServerConnectionImpl.init(ServerConnectionImpl.java:129)
         ... 11 more
    Caused by: java.net.ConnectException: http://localhost:7001: Destination unreachable; nested exception is:
         java.net.ProtocolException: Tunneling result unspecified - is the HTTP server at host: 'localhost' and port: '7001' a WebLogic Server?; No available router to destination
         at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:199)
         at weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:137)
         at weblogic.jndi.WLInitialContextFactoryDelegate$1.run(WLInitialContextFactoryDelegate.java:324)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:147)
         at weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialContextFactoryDelegate.java:319)
         ... 16 more
    Caused by: java.rmi.ConnectException: Destination unreachable; nested exception is:
         java.net.ProtocolException: Tunneling result unspecified - is the HTTP server at host: 'localhost' and port: '7001' a WebLogic Server?; No available router to destination
         at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:465)
         at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:316)
         at weblogic.rjvm.RJVMManager.findOrCreateRemoteInternal(RJVMManager.java:255)
         at weblogic.rjvm.RJVMManager.findOrCreate(RJVMManager.java:199)
         at weblogic.rjvm.RJVMFinder.findOrCreateRemoteServer(RJVMFinder.java:220)
         at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:187)
         ... 21 more
    Thanks in advance
    NIRANJAN REDDY

    JDeveloper 10.1.3.3 configures a connection with WebLogic server with the t3 protocol.The deployment profile has the connection protocol specified as http. Modify the connection protocol in the deployment profile.
    1. In the Deployment Profile Properties window select the Platform>WebLogic 9.x node.
    2. In the WebLogic 9.x Deploy command modify:
    -adminurl http://${hostname}:${port} to
    -adminurl t3://${hostname}:${port}

  • Web Module Deployment Problem with Weblogic [Deployer:149026]

    Dear Friends,
    I've been facing a problem during deploying an Web Module on Weblogic 8.1. The name of my webmodule is 'MyOraWebModule'.
    When I first developed, deployed and tested it in Weblogic 8.1, it was deployed and worked fine. But on the next day, when I tried to redeploy it, the deployment failed. This thing not just happens only once.. it is happeing always i.e. if I develop a new webmodule and deploy/redeploy it, it will work fine ONLY ON THE FIRST DAY (i.e. the day when the web module is created), but on the next day, it shows the following error if I try to redeploy it. The error is:
    Task 3 failed: [Deployer:149026]Deploy application MyOraWebModule on myserver.
    Deployment failed on Server myserver
    Exception:weblogic.management.ApplicationException: prepare failed for MyOraWebModule
    Module: MyOraWebModule Error: Context path 'MyOraWebModule' is already in use by the module: MyOraWebModule
    Any suggestion or, guideline from you will be highly appreciated.
    With Thanks,
    ... Chisty

    Not sure if you are still looking for the answer. I have a similar problem, I have a work around on it but still trying to identify what the issue is. I have deployed multiple web application modules on weblogic 8.1 and on the redeploy I was gettig the exception weblogic.management.ApplicationException: prepare failed for USER_DEFINED_MODULE_NAME
    Context path '/' is already in use by the module. when this exception is thrown I observed that the targets attribute of tag WebAppComponent is initialized to the server name. If I stop the server, make the value of the targets attribute to be empty string in config.xml and start the server, the server starts fine. And I could continue. Not sure why this is so since the targets attribute is used to identify on what servers the application needs to be deployed.
    Any input on why the weblogic 8.1 is behaving this way when the targets attribute is defined with a value would of great help.
    thanks,

  • HOT deployment problem with WebLogic 5.1sp11

    Hello!
    We trying to deploy our EJB (jar contains 5 EJB's) with WebLogic EJB DeployerTool.
    When we registered our jar in the weblogic.properties file - everything is OK.
    This ejb cotains correct EJB's which are made in EJB 1.1 standard.
    In the WebLogic EJB DeployerTool I attach proper WeaWeblogic application server
    (it works on another computer, but tool found our server confidently. Then I opened
    my jar file. Tool parsed file and found all beans.
    After all I'm trying to run Tools/Deploy and I have the error message showed below.
    If somebody knows how to manage with this problem, help!
    weblogic.ejb.common.DeploymentException: Problem creating deployment ftp://172.16.2.108:21C:/tmp2/StaffShell.jar
    from ftp://172.16.2.108:21C:/tmp2/StaffShell.jar; nested exception is:
         java.lang.NullPointerException:
    Start server side stack trace:
    java.lang.NullPointerException
         at sun.net.www.ParseUtil.decode(ParseUtil.java:27)
         at sun.net.www.protocol.ftp.FtpURLConnection.getInputStream(FtpURLConnection.java:108)
         at java.net.URL.openStream(URL.java:798)
         at weblogic.ejb.internal.EJBJarDeployment.initializeJarFile(EJBJarDeployment.java:322)
         at weblogic.ejb.internal.EJBJarDeployment.setup(EJBJarDeployment.java:191)
         at weblogic.ejb.internal.EJBJarDeployment.setup(EJBJarDeployment.java:166)
         at weblogic.ejb.internal.EJBDeploymentImpl.<init>(EJBDeploymentImpl.java:172)
         at weblogic.ejb.internal.EJBJarDeployment.<init>(EJBJarDeployment.java:100)
         at weblogic.ejb.internal.EJBJarDeployment.<init>(EJBJarDeployment.java:94)
         at weblogic.ejb.internal.EJBManagerImpl.deploy(EJBManagerImpl.java:332)
         at weblogic.ejb.common.EJBManager_WLSkel.invoke(EJBManager_WLSkel.java:144)
         at weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAdapter.java:347)
         at weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandler.java:96)
         at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:15)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    End server side stack trace
    java.lang.NullPointerException:
    Start server side stack trace:
    java.lang.NullPointerException
         at sun.net.www.ParseUtil.decode(ParseUtil.java:27)
         at sun.net.www.protocol.ftp.FtpURLConnection.getInputStream(FtpURLConnection.java:108)
         at java.net.URL.openStream(URL.java:798)
         at weblogic.ejb.internal.EJBJarDeployment.initializeJarFile(EJBJarDeployment.java:322)
         at weblogic.ejb.internal.EJBJarDeployment.setup(EJBJarDeployment.java:191)
         at weblogic.ejb.internal.EJBJarDeployment.setup(EJBJarDeployment.java:166)
         at weblogic.ejb.internal.EJBDeploymentImpl.<init>(EJBDeploymentImpl.java:172)
         at weblogic.ejb.internal.EJBJarDeployment.<init>(EJBJarDeployment.java:100)
         at weblogic.ejb.internal.EJBJarDeployment.<init>(EJBJarDeployment.java:94)
         at weblogic.ejb.internal.EJBManagerImpl.deploy(EJBManagerImpl.java:332)
         at weblogic.ejb.common.EJBManager_WLSkel.invoke(EJBManager_WLSkel.java:144)
         at weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAdapter.java:347)
         at weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandler.java:96)
         at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:15)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    End server side stack trace
    Deployment failed.

    Is SP11 jars in the client classpath or not, before launching DeployerTool.
    If yes, then it looks like a bug. You might want to report this problem to
    [email protected]
    Kumar
    "Anton Nazarov" <[email protected]> wrote in message
    news:[email protected]...
    >
    Hello!
    We trying to deploy our EJB (jar contains 5 EJB's) with WebLogic EJBDeployerTool.
    When we registered our jar in the weblogic.properties file - everything isOK.
    This ejb cotains correct EJB's which are made in EJB 1.1 standard.
    In the WebLogic EJB DeployerTool I attach proper WeaWeblogic applicationserver
    (it works on another computer, but tool found our server confidently. ThenI opened
    my jar file. Tool parsed file and found all beans.
    After all I'm trying to run Tools/Deploy and I have the error messageshowed below.
    >
    If somebody knows how to manage with this problem, help!
    weblogic.ejb.common.DeploymentException: Problem creating deploymentftp://172.16.2.108:21C:/tmp2/StaffShell.jar
    from ftp://172.16.2.108:21C:/tmp2/StaffShell.jar; nested exception is:
    java.lang.NullPointerException:
    Start server side stack trace:
    java.lang.NullPointerException
    at sun.net.www.ParseUtil.decode(ParseUtil.java:27)
    atsun.net.www.protocol.ftp.FtpURLConnection.getInputStream(FtpURLConnection.ja
    va:108)
    >
    at java.net.URL.openStream(URL.java:798)
    atweblogic.ejb.internal.EJBJarDeployment.initializeJarFile(EJBJarDeployment.ja
    va:322)
    >
    at weblogic.ejb.internal.EJBJarDeployment.setup(EJBJarDeployment.java:191)
    at weblogic.ejb.internal.EJBJarDeployment.setup(EJBJarDeployment.java:166)
    atweblogic.ejb.internal.EJBDeploymentImpl.<init>(EJBDeploymentImpl.java:172)
    >
    atweblogic.ejb.internal.EJBJarDeployment.<init>(EJBJarDeployment.java:100)
    >
    at weblogic.ejb.internal.EJBJarDeployment.<init>(EJBJarDeployment.java:94)
    at weblogic.ejb.internal.EJBManagerImpl.deploy(EJBManagerImpl.java:332)
    atweblogic.ejb.common.EJBManager_WLSkel.invoke(EJBManager_WLSkel.java:144)
    >
    atweblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAda
    pter.java:347)
    >
    atweblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandle
    r.java:96)
    >
    atweblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:1
    5)
    >
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    End server side stack trace
    java.lang.NullPointerException:
    Start server side stack trace:
    java.lang.NullPointerException
    at sun.net.www.ParseUtil.decode(ParseUtil.java:27)
    atsun.net.www.protocol.ftp.FtpURLConnection.getInputStream(FtpURLConnection.ja
    va:108)
    >
    at java.net.URL.openStream(URL.java:798)
    atweblogic.ejb.internal.EJBJarDeployment.initializeJarFile(EJBJarDeployment.ja
    va:322)
    >
    at weblogic.ejb.internal.EJBJarDeployment.setup(EJBJarDeployment.java:191)
    at weblogic.ejb.internal.EJBJarDeployment.setup(EJBJarDeployment.java:166)
    atweblogic.ejb.internal.EJBDeploymentImpl.<init>(EJBDeploymentImpl.java:172)
    >
    atweblogic.ejb.internal.EJBJarDeployment.<init>(EJBJarDeployment.java:100)
    >
    at weblogic.ejb.internal.EJBJarDeployment.<init>(EJBJarDeployment.java:94)
    at weblogic.ejb.internal.EJBManagerImpl.deploy(EJBManagerImpl.java:332)
    atweblogic.ejb.common.EJBManager_WLSkel.invoke(EJBManager_WLSkel.java:144)
    >
    atweblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAda
    pter.java:347)
    >
    atweblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandle
    r.java:96)
    >
    atweblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:1
    5)
    >
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    End server side stack trace
    Deployment failed.

  • EAR Deployment Problem with weblogic 10.2. Need help.

    Hi,
    I have a EAR file exported from MyEclipse IDE. When i am deploying the EAR file in weblogic 10.2, i am not seeing classess and properties were not exploded under WEB-INF/classes in the web project. I can see the classes folder but it's empty.
    When i opened i can see EJB project JAR file and web project .war file in the EAR file. I checked the .war file content and i can see all the classes and properties available in the .war file.
    Please help me to find, why the classes and properties are not being exploded when i am deploying as package.
    Note: When i am deploying from myeclipse as exploded deployment i was able to run the application but i am failing when i deploy as a package (.ear file).
    Thank you,
    Vijay M

    I found the answer to this. The documentation is not clear enough, LD_LIBRARY_PATH MUST be set and MUST have a pointer to the directory where the SSL .so modules are. I wrote up a blog article explaining the configuration and detailed this issue.
    http://blogs.oracle.com/irm/2010/06/quick_guide_to_oracle_irm_11g_1.html

  • Fast swap Vs Auto deploy

    Hi Friend's,
    Can you please tell me differnece betwetween fast swap and auto deploy deployments in weblogic server10. both are using in development mode only right.
    can I use Weblogic.Deployer tool to deploy applications in weblogic 10.3 ,we are using admin console to deploy applications. is there any way to deploy applications in wls.
    Thanks in advance.
    Balaji kumar
    Edited by: user9284716 on 14 Aug, 2010 9:36 PM

    Hi Balaji,
    Yes, this is true that the Fast-Swap and Autodeploy features are made for Development Mode ONLY. These features automatically disabled in production mode
    <font color=maroon>Fast-Swap:</font> Java EE 5 introduces the ability to redefine a class at runtime without dropping its ClassLoader or abandoning existing instances. This allows containers to reload altered classes without disturbing running applications, vastly speeding up iterative development cycles and improving the overall development and testing experiences.
    To know more about fast-swap please refer to : http://download.oracle.com/docs/cd/E12840_01/wls/docs103/deployment/deployunits.html#wp1053872
    <font color=maroon>Autodeploy:</font> Auto-deployment is intended for use with a single server target in a development environment. If you use other tools, such as the Administration Console, to add targets to an auto-deployed, exploded application, redeploying the application does not propagate changes to the new target servers. To know more about autodeploy: http://download.oracle.com/docs/cd/E11035_01/wls100/deployment/autodeploy.html
    <font color=maroon>weblogic.Deployer</font>
    Yes, you can use the "weblogic.Deployer" utility to deploy your Applications on the WLS server 10.3/10.x/9.x . Even there is ANT version of this utility is also available whichhelps us in deploying Application very quickly ... Please refer to: http://weblogic-wonders.com/weblogic/2009/12/19/ant-to-deploy-applications/
    weblogic.Deployer in WLS8.x Some featuers are less in weblogic.Deployer utility of weblogic 8.x because that time there was no concept of Shared Library deployment ...or Production redeployment also known as versioning or Using Plan.xml while redeploying apps using deployer utility).
    Thanks
    Jay SenSharma
    http://weblogic-wonders.com/weblogic (WebLogic Wonders Are here)

  • Problem deploying applications in weblogic 9.0..... please help

    Hi ...
    i'm facing a problem while uploading any applciation into weblogic server..
    this is the error it gives
    <Jul 26, 2006 11:48:39 AM MDT> <Error> <J2EE Deployment SPI> <BEA-260101> <Parameter may not be null.
    java.lang.NullPointerException at weblogic.deploy.api.internal.utils.ConfigHelper.checkParam(ConfigHelper.java:126) at weblogic.deploy.api.model.WebLogicDeployableObject.getEntry(WebLogicDeployableObject.java:434) at weblogic.deploy.api.model.WebLogicDeployableObject.getDDStream(WebLogicDeployableObject.java:256) at weblogic.deploy.api.model.WebLogicDeployableObject.setupDDBeanRoot(WebLogicDeployableObject.java:209) at weblogic.deploy.api.model.WebLogicDeployableObject.getDDBeanRootInternal(WebLogicDeployableObject.java:202)
    Truncated. see log file for complete stacktrace
    I'm not sure how to fix this.. please help.. its urgent..
    Thanks in advance..

    We discovered that BEA uses a directory named "autodeploy". By dropping our Jackrabbit 1.1 RAR file (resource adapter), BEA would auto-deploy it. No need to deal with the buggy WebLogic Admin console.
    Needed to add the weblogic-ra.xml file to the META-INF directory, and set it up properly. Re-jar it all up as a .rar file, then copy it to the autodeploy directory. The other step is to make sure that the target repository directory exists (I pre-created [bea_home]/jackrabbit/ directory), and that the repository.xml file is already there before you deploy your .rar. Then start up the sample portal server, and the rar file will deploy as a resource adapter. To see it, go into the main server console, click on Deployments > Monitoring > Resource Adapters > Outbound Connection Pools. Jackrabbit should show up there.
    This was the directory in which we dropped our RAR for testing:
    [bea_home]/weblogic92/samples/domains/portal/autodeploy
    Start the sample portal server at:
    Windows
    [bea_home]/weblogic92/samples/domains/portal/bin/startWebLogic.cmd
    UNIX
    [bea_home]/weblogic92/samples/domains/portal/bin/startWebLogic.sh
    NOTE: This didn't end our headaches. Now we're dealing with Jackrabbit creating connections and never releasing them. Hundreds and hundreds of connections, until it runs out of its connection pool. Hideous. But that's a problem for another thread.
    Message was edited by:
    LanceZechinato

  • Using Maven to deploy WebLogic applications

    Hi,
    I am trying to get Maven (http://maven.apache.org) to do WebLogic deployments.
    I am using WebLogic 8.1. Is there a Maven plugin available for WebLogic 8.1
    deployment? I keep trying the following in maven.xml, but I keep getting the
    exception below. I have wldeploy working properly from Ant 1.6.1 - I had to drop
    weblogic.jar into ANT_HOME/lib, but it works.
    Any thoughts on this most appreciated - if you have working plugin code that can
    deploy, that's even better. Thanks!
    yours,
    Simon Rakov
    AstraZeneca R&D Boston
    <!-- maven.xml -->
    <project default="build"
    xmlns:j="jelly:core"
    xmlns:maven="jelly:maven"
    xmlns:ant="jelly:ant" >
    <goal name="build" >
    <ant:taskdef name="wldeploy" classname="weblogic.ant.taskdefs.management.WLDeploy">
    <ant:classpath>
    <ant:pathelement location="${plugin.getDependencyPath('weblogic:weblogic')}"/>
    <ant:path refid="maven.dependency.classpath"/>
    </ant:classpath>
    </ant:taskdef>
    <ant:wldeploy action="deploy"
    source="${archive.dir}/${weblogic.deploy.file}" name="${weblogic.deploy.name}"
              user="${weblogic.user}" password="${weblogic.password}" verbose="true"
              adminurl="${weblogic.jndi.url}" debug="true" upload="true"
              targets="${weblogic.deploy.server}"/>
    </goal>
    </project>
    <!-- output from maven.xml run -->
    C:\path\to\application>maven
    | \/ |__ Apache_ ___
    | |\/| / _` \ V / -_) ' \ ~ intelligent projects ~
    |_| |_\__,_|\_/\___|_||_| v. 1.0-rc2
    weblogic.Deployer -debug -verbose -upload -noexit -name application -source C:\path\to\application\
    application.war -targets myserver -adminurl t3://localhost:7001 -user weblogic
    -password weblogic -deploy
    java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at weblogic.ant.taskdefs.management.WLDeploy.invokeMain(WLDeploy.java:20
    9)
    at weblogic.ant.taskdefs.management.WLDeploy.execute(WLDeploy.java:170)
    at org.apache.tools.ant.Task.perform(Task.java:341)
    at org.apache.commons.jelly.tags.ant.AntTag.doTag(AntTag.java:232)
    at org.apache.commons.jelly.impl.TagScript.run(TagScript.java:279)
    at org.apache.commons.jelly.impl.ScriptBlock.run(ScriptBlock.java:135)
    at org.apache.maven.jelly.tags.werkz.MavenGoalTag.runBodyTag(MavenGoalTa
    g.java:78)
    at org.apache.maven.jelly.tags.werkz.MavenGoalTag$MavenGoalAction.perfor
    mAction(MavenGoalTag.java:99)
    at com.werken.werkz.Goal.fire(Goal.java:639)
    at com.werken.werkz.Goal.attain(Goal.java:575)
    at com.werken.werkz.WerkzProject.attainGoal(WerkzProject.java:193)
    at org.apache.maven.plugin.PluginManager.attainGoals(PluginManager.java:
    531)
    at org.apache.maven.MavenSession.attainGoals(MavenSession.java:265)
    at org.apache.maven.cli.App.doMain(App.java:466)
    at org.apache.maven.cli.App.main(App.java:1117)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.werken.forehead.Forehead.run(Forehead.java:551)
    at com.werken.forehead.Forehead.main(Forehead.java:581)
    Caused by: java.lang.NullPointerException
    at weblogic.Deployer.main(Deployer.java:411)
    ... 25 more
    BUILD FAILED
    File...... file:/C:/path/to/application/maven.xml
    Element... ant:wldeploy
    Line...... 27
    Column.... 40
    java.lang.reflect.InvocationTargetException
    Total time: 5 seconds

    Do you tried the maven j2ee plugin?
    At least deployment it just copy a ear isn't it?
    Deployment isnt a problem for me but I have trouble to start and stop the server.

  • Auto-Deployment is not working in Eclipse - Weblogic

    I have created weblogic server instance in Eclipse.Then, I have added one project into weblogic server by using "Add/Remove Projects" menu.After I start the server , I logged into admin console and checked the deployments link. I am not finding the project listed in the list.I have selected option "Run stand alone web module directly from work space" in web logic server configuration window in eclipse.
    I am using Eclipse 3.3 and weblogic 10.0.
    I have no idea, why auto-deployment is not working.
    I would appreciate your help on this regard.I have contacted Eclipse Support, they have asked me to contact BEA team.
    Thanks,
    Prakash.A

    Hi Prakash,
    The "Run standalone web module from workspace" doesn't publish the application to the server (instead the app is deployed to a temp location).
    This is mainly to help test the app during the development stages. If your app is complete and would like to publish to the server then you might want to try the following option
    - In Server View, double click on the configuration to launch Overview
    - Select "Copy stand-alone web module into separate deployment folder"
    - Save the configuration
    - Start the server
    The application would be deployed to the server as a WAR file.

  • Problem while Deploying application in weblogic admin console

    Hi all,
    Recently i got an issue while deploying application through weblogic admin console,
    I have logged in the weblogic console and clicked on the deployment option, i got the page of install the application, then i have click the install option, i was getting the page of blank white screen. checking the log file of the admin server i cannot find any error. The admin server was running state was ok. before many times i have done deploying application in the same weblogic admin console.
    My weblogic 10.3 was running in windows 2008 r2
    Kindly need a help to resolve this problem ASAP.
    Regards,
    Rakhi

    Hi sir,
    thanks for ur reply.. but while troubleshooting on this issue i am facing another problem,
    The weblogic server is running on windows os box, i have stop the weblogic admin server from the windows services and again started the weblogic admin server, the server was running in proper state and i have open the console and try the same thing clicking on the deployment and install options but the same issue i faced. getting the white blank screen, while trying to refresh the page i cannot get the weblogic console waiting for long time also. again after restarting the server i can get the weblogic console.
    Then i have tried in another way, i removed the window services and started the weblogic server from command prompt,after starting the server i have opened the admin console and click on the deployment and install option, it is working fine. i tried the same for many times its working fine. but while starting from windows services the problem i was facing same as blank white screen,
    Kindly give me a perfect resolution on this issue. because i was so confused on this part.
    Regards,
    Rakhi..

  • Auto-Deployment in weblogic.

    Hi everyone,
    Can i know why auto-deploy feature is disabled in production mode in Weblogic.
    Regards,
    Vardhan.

    Hi Vardhan,
    Auto deployment is Developers friendly feature in which a Developer can develop an application and can deploy it in the <DOMAIN_HOME>\autodeploy directory and if he wants to make any changes in any of the JSPs or class files it will be reflected immediately. So for testing this kind of feature is most important.
    Also Autodeployment is available only for AdminServer So it is not possible to deploy applications on Managed Server using auto deployment. In Productoin environments we donot deploy applications on AdminServer.... because AdminServer is used to just manage the resources on WLS and to monitor them.
    But when it comes to the Production environment ...we don't frequently make changes in the application, rather we make different subversions and publish in the SVN repository and after full testing only we place the application on the Production so that's why this "autodeploy" fetaure is disabled in the Production Mode of WebLogic .....because ideally it is not useful there.
    For production environments WebLogic has an Uninterrupted deployment feature : http://middlewaremagic.com/weblogic/?p=394
    Thanks
    Jay SenSharma

  • Application deployment to standalone WebLogic problem

    Hi!
    I have a problem with application deployment to standalone WebLogic server.
    We migrated from JDeveloper 11.1.1.5 to 11.1.2.1. I followed the instructions on this page: https://blogs.oracle.com/imc/entry/standalone_weblogic_domain_for_adf to deploy our ADF application to AdminServer. Everything worked OK.
    Then I followed the instructions on this page: http://docs.oracle.com/cd/E21043_01/web.1111/e13813/custom_jrf.htm to apply JRF to our managed server "ADF_server" and got this:
    wls:/offline> applyJRF('ADF_server', '/Oracle/Middleware/user_projects/domains/our_domain')
    Read domain /Oracle/Middleware/user_projects/domains/our_domain to applyJRF
    Copy JRF configuration files from /Oracle/Middleware/oracle_common/modules to /Oracle/Middleware/user_projects/domains/our_domain/config/fmwconfig/servers/ADF_server
    Target JRF components to "ADF_server"
    Update JRF changes to domain /Oracle/Middleware/user_projects/domains/our_domain in offline mode
    This is probably OK?
    When I try to deploy to a managed server "ADF_server" a problem occurs:
    *[10:55:08 AM] Weblogic Server Exception: weblogic.application.ModuleException: Failed to load webapp: 'ADFMainApplication-ViewController-context-root'*
    *[10:55:08 AM] Caused by: weblogic.management.DeploymentException: Error: Unresolved Webapp Library references for "ServletContext@1542360219[app:ADFMainApplication_Project1_ADFMainApplication module:ADFMainApplication-ViewController-context-root path:/ADFMainApplication-ViewController-context-root spec-version:2.5]", defined in weblogic.xml [Extension-Name: jsf, Specification-Version: 2, exact-match: false]*
    *[10:55:08 AM] See server logs or server console for more details.*
    *[10:55:08 AM] weblogic.application.ModuleException: Failed to load webapp: 'ADFMainApplication-ViewController-context-root'*
    *[10:55:08 AM] Deployment cancelled.*
    *[10:55:08 AM] ---- Deployment incomplete ----.*
    *[10:55:08 AM] Remote deployment failed (oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer)*
    What do I have to do to get it to work on managed server? Please help.
    Regards, Marko

    Did you make sure that the 11.1.1.5.0 adf runtime was installed on the managed server before you installed the patches to upgrade to 11.1.2.1.0?
    If not this is the problem. The new runtime is only installed automatically if the olny one was set up correctly,my personal finding from my tests. If you like to read more on this check http://tompeez.wordpress.com/2011/06/25/upgrading-wls-10-3-5-with-adf-runtime-11-1-2-0-0-sherman-patch/ and http://tompeez.wordpress.com/2011/06/29/follow-up-upgrading-wls-10-3-5-with-adf-runtime-11-1-2-0-0-sherman-patch/ .
    You can do threethings:
    1. open the Enterprise Manager select your managed server and hope you see a message like 'aply JRF to this managed server' (can't remember the exact wording). Do this and the libs should setup OK.
    2. open the admin console and select the needed shared libs and add your manages server as target. Problem is that you don't know which libs are needed. If you don't mind target all libs to the managed server. Not sure if this causes trouble later.
    3. write down any information about the managed server like port, machine names domain name. Remove the managed server from the WLS installation. This should be much trouble as you are upgrading and that should be no application or shared library of your one deployed to the managed server. After removing the old managed server shut down wls and start it again (just for safety). Now create an new managed server with all names, ports and other information like the old one using the quickstart tool.
    I prefer the 3 method, as this one worked all the time for me.
    Timo

  • Error auto-deploying a Web App (.WAR file)

    Hello,
    Weblogic 6.1 throws a FileNotFoundException about 10% of the time for me when
    auto-deploying a Web app. Has anyone else run into this? I searched the newsgroups
    but didn't come up with anything, so I thought I'd start here.
    My build/deploy cycle is managed by an Ant build file that creates a WAR file
    of my web application and then drops it into $WL_HOME/config/mydomain/applications.
    Occasionally when I do this, I get the error shown below. Originally I was building
    the WAR file right in the ../applications directory, so I thought that might be
    an issue. So, I started building the WAR file in a staging directory and copying
    it into ../applications. No luck. Next, I tried deleting the original WAR file
    from ../applications, and THEN copying the new one over from the staging directory.
    Still fails occasionally.
    Let's see. This is Weblogic 6.1 on Win2K. The only other thing is that my dev/build/staging
    environment is on a network share, and it's from there that I'm copying the WAR
    file to my local machine (where WL is running).
    If someone has seen and/or knows what is up with this, great. If not, it's not
    a show-stopper.
    Thanks!
    Cheers,
    David
    ========================================================
    <Apr 8, 2002 9:05:00 AM PDT> <Error> <Management> <IOException opening application
    mydomain:Name=private-banking,Type=Application, loading from path .\config\mydomain\applications\private-banking.war
    java.io.FileNotFoundException: error in opening zip file
         at weblogic.management.mbeans.custom.Application.findType(Application.java:1833)
         at weblogic.management.mbeans.custom.Application.adminLoad(Application.java:444)
         at weblogic.management.mbeans.custom.Application.load(Application.java:387)
         at java.lang.reflect.Method.invoke(Native Method)
         at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:636)
         at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:621)
         at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:359)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
         at $Proxy8.load(Unknown Source)
         at weblogic.management.mbeans.custom.ApplicationManager.poll(ApplicationManager.java:840)
         at weblogic.management.mbeans.custom.ApplicationManager.poll(ApplicationManager.java:733)
         at weblogic.management.mbeans.custom.ApplicationManager.update(ApplicationManager.java:206)
         at weblogic.management.mbeans.custom.ApplicationManager$ApplicationPoller.run(ApplicationManager.java:1050)

    Michael,
    This is a problem with 6.1 SP2 also -- a very annoying error. Without auto deploy
    working properly, developers are spending alot of time waiting for WebLogic to restart.
    HELP!!! we need this fixed.
    I see the EXACT same stack trace (ERROR).
    Tom Markel
    Sr. Java Engineer
    Michael Young <[email protected]> wrote:
    Hi.
    This may be a known issue that was addressed in sp2. If you are not already
    at that sp level I suggest you upgrade.
    Regards,
    Michael
    David Ventimiglia wrote:
    Hello,
    Weblogic 6.1 throws a FileNotFoundException about 10% of the time forme when
    auto-deploying a Web app. Has anyone else run into this? I searchedthe newsgroups
    but didn't come up with anything, so I thought I'd start here.
    My build/deploy cycle is managed by an Ant build file that creates a WARfile
    of my web application and then drops it into $WL_HOME/config/mydomain/applications.
    Occasionally when I do this, I get the error shown below. OriginallyI was building
    the WAR file right in the ../applications directory, so I thought thatmight be
    an issue. So, I started building the WAR file in a staging directoryand copying
    it into ../applications. No luck. Next, I tried deleting the originalWAR file
    from ../applications, and THEN copying the new one over from the stagingdirectory.
    Still fails occasionally.
    Let's see. This is Weblogic 6.1 on Win2K. The only other thing is thatmy dev/build/staging
    environment is on a network share, and it's from there that I'm copyingthe WAR
    file to my local machine (where WL is running).
    If someone has seen and/or knows what is up with this, great. If not,it's not
    a show-stopper.
    Thanks!
    Cheers,
    David
    ========================================================
    <Apr 8, 2002 9:05:00 AM PDT> <Error> <Management> <IOException openingapplication
    mydomain:Name=private-banking,Type=Application, loading from path .\config\mydomain\applications\private-banking.war
    java.io.FileNotFoundException: error in opening zip file
    at weblogic.management.mbeans.custom.Application.findType(Application.java:1833)
    at weblogic.management.mbeans.custom.Application.adminLoad(Application.java:444)
    at weblogic.management.mbeans.custom.Application.load(Application.java:387)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:636)
    at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:621)
    at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:359)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
    at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
    at $Proxy8.load(Unknown Source)
    at weblogic.management.mbeans.custom.ApplicationManager.poll(ApplicationManager.java:840)
    at weblogic.management.mbeans.custom.ApplicationManager.poll(ApplicationManager.java:733)
    at weblogic.management.mbeans.custom.ApplicationManager.update(ApplicationManager.java:206)
    at weblogic.management.mbeans.custom.ApplicationManager$ApplicationPoller.run(ApplicationManager.java:1050)--
    Michael Young
    Developer Relations Engineer
    BEA Support

  • Deploying mdb in weblogic 9.0

    i have a simple mdb aplication ..
    i have deloyed it in weblogic 9.0..
    but it is showing error in connection factory
    JNDI Name..like replace the JNdi name ..
    pls hel me out to solve the problem
    thank u

    We discovered that BEA uses a directory named "autodeploy". By dropping our Jackrabbit 1.1 RAR file (resource adapter), BEA would auto-deploy it. No need to deal with the buggy WebLogic Admin console.
    Needed to add the weblogic-ra.xml file to the META-INF directory, and set it up properly. Re-jar it all up as a .rar file, then copy it to the autodeploy directory. The other step is to make sure that the target repository directory exists (I pre-created [bea_home]/jackrabbit/ directory), and that the repository.xml file is already there before you deploy your .rar. Then start up the sample portal server, and the rar file will deploy as a resource adapter. To see it, go into the main server console, click on Deployments > Monitoring > Resource Adapters > Outbound Connection Pools. Jackrabbit should show up there.
    This was the directory in which we dropped our RAR for testing:
    [bea_home]/weblogic92/samples/domains/portal/autodeploy
    Start the sample portal server at:
    Windows
    [bea_home]/weblogic92/samples/domains/portal/bin/startWebLogic.cmd
    UNIX
    [bea_home]/weblogic92/samples/domains/portal/bin/startWebLogic.sh
    NOTE: This didn't end our headaches. Now we're dealing with Jackrabbit creating connections and never releasing them. Hundreds and hundreds of connections, until it runs out of its connection pool. Hideous. But that's a problem for another thread.
    Message was edited by:
    LanceZechinato

Maybe you are looking for

  • Clamshell iBook running 9.2

    My niece just got an iBook with OS 9.2 installed. It's a clamshell G3 with 64 MB of RAM and no airport card installed. It was a freebie and they brought it over to see what I thought. My first thought was that the Key Lime color was a bit much Would

  • Good download manager for macbook pro

    i am looking for a good download manager for macbook pro, to delay downloads until free zone data use for exede internet service  

  • OIM 11g - Display Name policy

    Hi, may you help to find where is the default "policy" that compute and set the OIM User attribute named Display Name = <First Name> + <blank> + <Last Name>? Can I change that default behavior? Thanks, Gabriele

  • Database Hanging Error

    Hi, I am working oracle9i and WIndows 2003 Server.Sometimes my Database is Hanged up and i am not able to logint to the Database using PL/SQL. Then i restarted the DB again . After that the error is resolved. But everyday i am geeting this Database H

  • Sony A6000 and GPS

    Will Sony release a new model from A6000 with GPS !?  I really would like to have this feature in the camera directly instead of using the mobile phones to sync the  GPS coordinations.  Zein