Error opening zip file or JAR manifest: ../ modules / org.eclipse.persistence_1.1.0.0_2-1.jar

I am creating a project in jdeveloper 11.1.2, but when I want to deploy it to weblogic, the following message appears

Error opening zip file or JAR manifest: ../ modules / org.eclipse.persistence_1.1.0.0_2-1.jar

There is a file, so I do not know what is happening.

+4
source share
4 answers

The solution to this problem is to delete the hash area named "RunConfigurations" in the project file. (Model.jpr)

+2
source

I have solved this problem in different ways.
First of all, it was an integrated weblog server, and the error occurred precisely after the security fixes were installed on my computer running Windows XP.

Recovery:

In JDeverloper, go to β€œView” β†’ β€œNavigotor Application Server”; select IntegratedWeblogicServer and open the properties. We need a domain directory. The domain directory for IntegratedWeblogicServer is not under "..:\Oracle\Middleware" . By default, it was placed (at least on my computer) under "C:\Documents and Settings\user name\Application Data\JDeveloper\system11.1.2.1.38.60.81\DefaultDomain\" .

So copy the entire folder of modules from Fusion Middleware home "..:\Oracle\Middleware\" to "C:\Documents and Settings\user name\Application Data\JDeveloper\system11.1.2.1.38.60.81" .

Restart the integrated web server.

This works for me ...
Good luck.

+2
source

The answer to this question is for JDeveloper version: 11.1.2.1.0:

Right-click Model.jpr β†’ Project Properties β†’ Run / Debug / Profile β†’ Run Configurations. Choose EclipseLink JPA Client β†’ Change β†’ Startup Settings β†’ Java Settings β†’
-javaagent:D:/JDeveloper/modules/org.eclipse.persistence_1.1.0.0_2-1.jar

D: / JDeveloper / modules is the path where my org.eclipse.persistence_1.1.0.0_2-1.jar file is located. So let your org.eclipse.persistence_1.1.0.0_2-1.jar path not be after -javaagent:

+1
source

I had the same problem with JDeveloper 11g 11.1.2.1.0 (R2) on Windows 7, and I solved it by uninstalling the following automatic window updates, this is not a project or application-specific problem in JDeveloper, because this happens when I try to run the integrated WebServer These are uninstalled updates:

  • KB2647518
  • KB2665364
  • KB2641653
  • KB2639308
  • KB2621440
0
source

Source: https://habr.com/ru/post/1369679/


All Articles