wldeploy - partial redeploy of remote application

564 views Asked by At

I have an exploded EAR deployed on remote Weblogic Server with nostage="false" mode. The EAR is very large so the full undeploy / deploy is very slow each time.

If I modify a JSP under "stage" folder I see immediately changes in web-app.

If I add a JSP under "stage" folder I cannot see the news jsp in web-app.

Is possible a partial remote redeploy of the jsps (and only the jsps) ? I tried something like that

<target name="fastdeploy" >
<wldeploy action="redeploy" verbose="true" debug="true"   
name="${earNameTarget}"
user="${wls.username}" password="${wls.password}" 
adminurl="t3://${wls.host}:${wls.port}" targets="${deployTarget}" 
usenonexclusivelock="true"
deltaFiles="LOCAL PATH OF THE JSPS">
<files dir="REMOTE PATH OF THE JSPS">
includes="*.*" />
</wldeploy>
</target>

but I got

[DeploymentService:290066]Error occurred while downloading files from Administration Server for deployment request"1,439,276,275,680". Underlying error is: "null" at weblogic.deploy.service.datatransferhandlers.HttpDataTransferHandler.getDataAsStream(HttpDataTransferHandler.java:86) at weblogic.deploy.service.datatransferhandlers.DataHandlerManager$RemoteDataTransferHandler.getDataAsStream(DataHandlerManager.java:153)

Any suggest?

0

There are 0 answers