You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by Bedre Atmaling Baburao <be...@tavant.com> on 2005/12/26 12:20:48 UTC

Ant Deploy failure in weblogic 8.1

Hi,
	I am running the  following ant target. and getting the exception.
through this target my server is running and also the weblogic is able to
upload the mentioned ear to the upload folder in weblogic.But the exception
is getting while extracting the
the ear. if any bosy know solution,plz reply me

thanks

target is:

<serverdeploy action="deploy"
source="D:/Ears/26-December-2005_ITR5_RC6/Homer.ear" >
			        <weblogic application="Homer"
			            server="t3://${host}:${homer.port}"
	
classpath="${weblogic.lib.dir}/weblogic.jar"
			            username="${wls.username}"
			            password="${wls.password}"
			        	 component="Homer:myserver"
			            debug="true"/>
			    </serverdeploy>

the Exception is :


     [java]  Unexpected error executing the deploy
toolweblogic.management.ManagementRuntimeException:
java.util.zip.ZipException: error in opening zip file
     [java] java.util.zip.ZipException: error in opening zip file

BUILD FAILED
file:D:/HomerCVS1/Homer/dev/application/scripts/build-release.xml:96: Java
returned: 1
        at org.apache.tools.ant.taskdefs.Java.execute(Java.java:110)
        at
org.apache.tools.ant.taskdefs.optional.j2ee.WebLogicHotDeploymentTool.deploy
(WebLogicHotDeploymentTool.java:107)
        at
org.apache.tools.ant.taskdefs.optional.j2ee.ServerDeploy.execute(ServerDeplo
y.java:146)
        at org.apache.tools.ant.Task.perform(Task.java:341)
        at org.apache.tools.ant.Target.execute(Target.java:309)
        at org.apache.tools.ant.Target.performTasks(Target.java:336)
        at org.apache.tools.ant.Project.executeTarget(Project.java:1339)
        at org.apache.tools.ant.Project.executeTargets(Project.java:1255)
        at org.apache.tools.ant.Main.runBuild(Main.java:609)
        at org.apache.tools.ant.Main.start(Main.java:196)
        at org.apache.tools.ant.Main.main(Main.java:235)

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org


Re: Ant Deploy failure in weblogic 8.1

Posted by Petar Tahchiev <pa...@gmail.com>.
On 26/12/05, Bedre Atmaling Baburao <be...@tavant.com> wrote:
>
> Hi,
>         I am running the  following ant target. and getting the exception.
> through this target my server is running and also the weblogic is able to
> upload the mentioned ear to the upload folder in weblogic.But the
> exception
> is getting while extracting the
> the ear. if any bosy know solution,plz reply me
>
> thanks
>
> target is:
>
> <serverdeploy action="deploy"
> source="D:/Ears/26-December-2005_ITR5_RC6/Homer.ear" >
>                                 <weblogic application="Homer"
>                                     server="t3://${host}:${homer.port}"
>
> classpath="${weblogic.lib.dir}/weblogic.jar"
>                                     username="${wls.username}"
>                                     password="${wls.password}"
>                                          component="Homer:myserver"
>                                     debug="true"/>
>                             </serverdeploy>
>
> the Exception is :
>
>
>      [java]  Unexpected error executing the deploy
> toolweblogic.management.ManagementRuntimeException:
> java.util.zip.ZipException: error in opening zip file
>      [java] java.util.zip.ZipException: error in opening zip file
>
> BUILD FAILED
> file:D:/HomerCVS1/Homer/dev/application/scripts/build-release.xml:96: Java
> returned: 1
>         at org.apache.tools.ant.taskdefs.Java.execute(Java.java:110)
>         at
>
> org.apache.tools.ant.taskdefs.optional.j2ee.WebLogicHotDeploymentTool.deploy
> (WebLogicHotDeploymentTool.java:107)
>         at
> org.apache.tools.ant.taskdefs.optional.j2ee.ServerDeploy.execute
> (ServerDeplo
> y.java:146)
>         at org.apache.tools.ant.Task.perform(Task.java:341)
>         at org.apache.tools.ant.Target.execute(Target.java:309)
>         at org.apache.tools.ant.Target.performTasks(Target.java:336)
>         at org.apache.tools.ant.Project.executeTarget(Project.java:1339)
>         at org.apache.tools.ant.Project.executeTargets(Project.java:1255)
>         at org.apache.tools.ant.Main.runBuild(Main.java:609)
>         at org.apache.tools.ant.Main.start(Main.java:196)
>         at org.apache.tools.ant.Main.main(Main.java:235)
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
> For additional commands, e-mail: user-help@ant.apache.org
>
>
I have also used Weblogic for a while and noticed that kind of exception is
thrown in the konsole sometimes. I don't really know why it is thrown and
would be thankful to know the solution. As I noticed the hotdeploy directory
of weblogic is checking in some amount of time whether the ear you deployed
is newer. So in my opinion the exception is thrown when you copy the ready
ear to the directory in the middle of the "checking" proccess. In my case
whenever I would see such an exception I would just touch the archive and a
few seconds later it would be deployed successfully. But I can assure you
that this is ant related problem, for I have also used the "copy" task and
the excepion was still thrown sometimes.

--
Regards, Petar!