• 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

Deployment Error in JBoss 5.1

 
Greenhorn
Posts: 21
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I'm trying to deploy my ejb3 application which was developed in JBoss 4.3 to JBoss 5.1. After resolving all the build issues, I'm getting the below error everytime I start the deployment in JBoss 5.1. I have checked all my manifest files and everything looks good. Is this error related to any EJB3 annotations? Any help on this would be appreciated.



Thanks
 
Sheriff
Posts: 10445
227
IntelliJ IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What's the contents of your MANIFEST.MF file(s) of the jar/ear?

P.S: If you are thinking of migrating to a new JBoss AS version then I would recommend JBoss AS 7.1.x instead of JBoss AS 5.x
 
Prasanna Kannan
Greenhorn
Posts: 21
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I was able to resolve this issue after I deleted everything from my ear manifest file. There was a manual entry for a custom framework like FrameX_Version: 3.4, which was giving this error. Hope this helps someone.
 
Prasanna Kannan
Greenhorn
Posts: 21
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
After a closer look, I saw that the colon( was missing the custom framework line and a space was missing at the end of the manifest file after the 'Class-Path'. After I made these changes, I'm able to deploy to JBoss 5.1 successfully.
reply
    Bookmark Topic Watch Topic
  • New Topic