0

I am trying to re-deploy an application to Weblogic 10.3.6 using command line deployment using the following,

 java weblogic.Deployer -adminurl myserver:7001 -user deploymyuser 
-password welcome1 -targets mytarget -name appname -redeploy 
 D:/app/deploy/app.ear -upload -remote

I am getting the following errors

<Error> <J2EE Deployment SPI> <BEA-260101> <Parameter 'moduleArchive' 
may not be null.>
[J2EE Deployment SPI:260101]Parameter 'moduleArchive' may not be null.

How can I resolve this issue?

Jacob
  • 14,463
  • 65
  • 207
  • 320

1 Answers1

5

Use the switch "-source" with the redeploy command:

java weblogic.Deployer -adminurl myserver:7001 -user deploymyuser -
password welcome1 -targets mytarget -name appname -redeploy 
-source D:/app/deploy/app.ear -upload -remote
Eddie Martinez
  • 13,582
  • 13
  • 81
  • 106
Abid
  • 237
  • 2
  • 10