cancel
Showing results for 
Search instead for 
Did you mean: 

Error opening zip file:ZipException

Former Member
0 Kudos

Hi,

I am getting the Log Error in NWA while running the Web Dynpro Java application..The Error is,

java.util.zip.ZipException: Error opening zip file /usr/sap/EPD/JC00/j2ee/cluster/server0/./log/archive/_log_system_logging.log1233875882599.zip

at java.util.zip.ZipFile.open(Native Method)

at java.util.zip.ZipFile.<init>(ZipFile.java:140)

at java.util.zip.ZipFile.<init>(ZipFile.java:155)

at com.sapmarkets.bam.jmxadapter.AbstractLog.getArchiveInfo(AbstractLog.java:328)

at com.sapmarkets.bam.jmxadapter.AbstractLog.getArchives(AbstractLog.java:454)

at com.sapmarkets.bam.jmxadapter.AbstractLog.getArchives(AbstractLog.java:477)

at sun.reflect.GeneratedMethodAccessor357.invoke(Unknown Source)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:62)

at java.lang.reflect.Method.invoke(Method.java:391)

Can any one explian me why this error occurs.And How to Rectify this error.Please suggests the solution for this problem.

Thanks & Regards,

SatheshKumar R

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Sathish Kumar,

This error might occur from an infinite loop.Check in ur code whether there is any such loop .

Check the SAP note 701330 , speaks similar

Regards,

srikanth

Answers (1)

Answers (1)

former_member192434
Active Contributor
0 Kudos

The archive file is empty that why this exception is coming, Find and remove the empty archive file.

OR

To solve the issue you have to close the previously opened streams in your application, when you don't need anymore

hope it will hlep you.

Thanks