Reputation: 93
application.xml
<?xml version="1.0" encoding="UTF-8"?>
<application xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/application_6.xsd" version="6">
<display-name>business-ear</display-name>
<module>
<web>
<web-uri>business-web-1.0-SNAPSHOT.war</web-uri>
<context-root>business</context-root>
</web>
</module>
</application>
filepath c:\glassfish3\glassfish\domains\domain1\autodeploy\business.ear\
structure business.ear ->
META-INF business-web-1.0-SNAPSHOT.war
please, help me!
Upvotes: 8
Views: 9263
Reputation: 9010
I'm having this issue also I start getting it after I upgraded to the version 3.1.2.2. I have a solution but it sometimes happens that this error appears again, I believe it's related to Glassfish holding stale app data.
Go to your glassfish domain folder -> glassfish3\glassfish\domains\domain1\applications\
Check inside your applications folder and inside your app folder you will find a file called ".glassfishStaleFiles"
Open this file with a text editor, see which jar library Glassfish has listed on the last line of the file.
Update this dependency (using maven or other tool)
clean the applications folder.
Build everything again.
Hope this helps
Upvotes: 16