• 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

problem running client (ejb deployed on J2EE server)

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello friends;
I am new to EJB.
I have coded and deployed my ejb on J2EE server
but when i run the client i get following error.
"No application client descriptors defined for: AccountClient"
Please help!!!
 
sharp shooter, and author
Posts: 1913
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
"sidharath",
Thanks for joining JavaRanch, but could you just take a quick look at the naming policy and edit your profile accordingly.
Also, only members with valid names will be eligible for the book giveaways.
Thanks,
Simon
Bartender (moderator) of "J2EE and EJB" forum
 
Ranch Hand
Posts: 196
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
How did you run the client?
Assuming you're using J2EE-RI.
When you use deploytool to create the jar, war or ear, you should be able to create the client jar.
(but you need to specifically check the option)
Then, you'd use this client.jar to run your client.
e.g.
java -classpath MyAppClient.jar:%CLASSPATH% MyAppClient
Cheers.

Han Ming
 
reply
    Bookmark Topic Watch Topic
  • New Topic