Exception java.util.zip.ZipFile.ensureOpenOrZipException with WAS 7

前端 未结 1 1396
无人及你
无人及你 2021-01-16 18:25

When I am deploying an application on WebSphere Application Server 7.0 , I am getting below exception and its taking too much time to deploy. After few deployme

相关标签:
1条回答
  • 2021-01-16 18:55

    Yeeh,

    Finally got the solution after a long R&D :)

    Below link contain useful information.

    http://www-01.ibm.com/support/docview.wss?uid=swg1PK85322

    What we did just change the module level of application to 2.4 and placed wsdl folder under WebContent. The main issue was due to annotation processing of the application at the time of deployment. The deployment process for the module metadata requires a new step to scan the Java annotations data from classes that are packaged in the module. As we are using JAX-WS as a client of WebServices it includes annotation processing. The processing of annotation of JAX-WS requires reading of wsdl files to generate update clients for each deployments. In this process of reading wsdl it was facing problem as its located in WEB-INF folder initially. I just change the location of wsdl and its working fine now.

    0 讨论(0)
提交回复
热议问题