• 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

Need detailed steps to create EJB in websphere 6.1

 
Ranch Hand
Posts: 91
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I want to know the process of creating ejb components(session beans, entity beans, message driven beans) in websphere 6.1


Thanks in advance
 
Bartender
Posts: 10336
Hibernate Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This resource has all the information you are likely to need. One thing to note, WAS is really complex, if you have not already I would get a copy of a WAS IDE (e.g. Websphere application developer or the like).
 
Pawan Komaram
Ranch Hand
Posts: 91
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thnaks for the reply:)

But, I couldn't get anything from the link that you have specified.
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
"not anything"? It has everything there is w.r.t. WAS 6 documentation. What, exactly, are you looking that you're certain you can't get from that site?
 
Paul Sturrock
Bartender
Posts: 10336
Hibernate Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Where did you try? There are quite a few examples in there.
 
Pawan Komaram
Ranch Hand
Posts: 91
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Just please tell me the steps that are involved........no need of detailed description.
 
Ulf Dittmer
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
That's really not how JavaRanch works. We prefer that people learn something in the process, and are not just handed solutions.

Are you familiar with EJBs in general? It's a standard API, so there shouldn't be anything different on WAS compared to other servers (except the deployment, but that should be covered by the WAS documentation).
 
Paul Sturrock
Bartender
Posts: 10336
Hibernate Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

deva vv wrote:Just please tell me the steps that are involved........no need of detailed description.



If you are going to use WAS I'm afraid a you'll have to get used to detailed descriptions. WAS is complex; the documentation I pointed you to is vital to avoid many wasted hours trying to work things out on your own.
 
Pawan Komaram
Ranch Hand
Posts: 91
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I know how to create EJB's and deploy it in weblogic......here my question is how to deploy it in wesphere....ie. I am asking about the websphere specific deployment descriptor....okay??
 
Paul Sturrock
Bartender
Posts: 10336
Hibernate Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
As I've been trying to intimate, this is not a quick and simple task on WebSphere. Please take your time to go and read the linked documentation (especially the tutorial on deploying an EJB application). There is no shortcut.

What you would typically do (as the link explains) is create your application, then prepare it for deployment (either using an admin script written in Jython or TCL or in a WebSphere IDE, such as Rational Software Architect). This will do the stuff you cannot do by hand (e.g. create the WAS specific classes and add generated identifiers to your elements in your deployment descriptor). Then, assuming you have set up any container resources your application relies on, you should be able to deploy it.

Note: the web client admin console will do much of this, but in WAS 6.0 is is missing certain important parts that will prevent you from using it exclusively.
 
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
"Jjjj vv"

Please click on the "My Private Messages" link on top of this page, for a message from JavaRanch.
 
reply
    Bookmark Topic Watch Topic
  • New Topic