> I'm familiar with Java programming. I've an idea of servlets and JSP,
> but I'm completely new to J2EE.
If I knew what "J2EE" was, I'd tell you. J2EE is potentially a very
large bag, but really only a small fraction of this (Servlets & JSP)
is used most of the time, on most projects. EJB is far, far behind in
terms of common occurence, lines of code written, or number of people
needing to know it.
I strongly recommend the book "Head First Servlets & JSP" as a
tutorial on good techniques for the portion of J2EE that's actually
useful to learn first. Gain good skills and experience with this
first, worry about EJB later.
Lew - 20 Jun 2007 13:01 GMT
Shakti wrote:
>> I'm familiar with Java programming. I've an idea of servlets and JSP,
>> but I'm completely new to J2EE.
"J2EE" (now "JEE") is a catch-all term for a number of different APIs.
Servlets and JSPs are part of J(2)EE. So you are not "completely new to J2EE"
if you've been working with servlets and JSPs.
JEE refers to APIs used for server-centric (mostly web-based) applications
accessed via remote clients.
JEE includes servlets, JSPs, JSF and JSTL, EJB, JMX, SOAP libraries, and a
bunch of other stuff.
Have you tried the Sun tutorial on JEE on their website? That would seem to
me to be the logical first step. Surely you've taken it by now.

Signature
Lew
Shakti - 21 Jun 2007 06:00 GMT
> Shakti wrote:
> >> I'm familiar with Java programming. I've an idea of servlets and JSP,
[quoted text clipped - 15 lines]
> --
> Lew
Thanks to both Andy and Lew for your suggestions. Now I understand
what J(2)EE really is.