• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

org.jboss.deployers.spi.DeploymentException: Exception determining structure:

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am receiving the error below when trying to deploy an .ear file. Everything is compiling fine however when I try to deploy it fails. I am running jboss-5.1.0.GA and jdk1.6.0_20. My application xml is as follows

error message


application.xml


jboss-app.xml


jboss-web.xml


web.xml





 
Ranch Hand
Posts: 98
Oracle Redhat
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

From the error log:

Caused by: org.jboss.xb.binding.JBossXBException: Failed to parse source: Element {http://java.sun.com/xml/ns/j2ee}application is not bound as a global element.

Try to remove the xmlns="http://java.sun.com/xml/ns/j2ee" entry from your application.xml and re-deploy the application.

Cheers,
Anandraj
http://weblogic-wonders.com
 
clint morrison
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I removed to xmlns reference and deployed and also removed all the attributes of the application tag however I am still seeing the following error. Is there different information I should be using here for these files?

 
anandraj tadkal
Ranch Hand
Posts: 98
Oracle Redhat
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
From the error, it is still evident that we have a reference for "http://java.sun.com/xml/ns/j2ee" in application.xml.

Try removing all the references of the xmlns element from the application.xml.

It should look like below.

<application>
<display-name>TechConf</display-name>
<description>TechConf J2EE Application</description>
........

Regards,
Anadraj
http://weblogic-wonders.com

 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic