• 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

problems in ANT script for generating ejb for jboss 5.1.0

 
Greenhorn
Posts: 14
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am trying to generate my EJBs jboss.xml for JBoss 5.1.0.GA automatically using EJBDoclet and ANT.I am using the following ant script to generate the jboss.xml.



but generated jboss.xml is not supporting jboss 5.1.0GA as I am mentioning version as 4.0.
I tried given version=5.1.0 or version=5.1.But either way it did not work.Please help me how to automatically generate jboss.xml which will be compatible with jboss5.1.0GA

Thanks
Prabuddha
 
author
Posts: 5856
7
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Looking at the documentation for the jboss options for the ejbdoclet task, the latest it supports is 4.0:
http://xdoclet.sourceforge.net/xdoclet/ant/xdoclet/modules/jboss/ejb/JBossSubTask.html

You will either have to modify ejbdoclet to support 5.0, or come up with some other means to generate that file.
 
Kuts Aryan
Greenhorn
Posts: 14
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Peter.I got my solution from your reply.
 
reply
    Bookmark Topic Watch Topic
  • New Topic