Re: FW: when to use Bean !!!

1999-10-29 Thread Michael Nash
From: A mailing list about Java Server Pages specification and reference [mailto:[EMAIL PROTECTED]]On Behalf Of Rajendra Mishra Sent: Thursday, October 28, 1999 9:58 PM To: [EMAIL PROTECTED] Subject: Re: FW: when to use Bean !!! Dan, I hv a few servlets which basically form a part

(general thank you) was Re: Re: when to use Bean !!!

1999-10-28 Thread Brien Voorhees
- Original Message - From: Craig McClanahan [EMAIL PROTECTED] ** [Long, excellent description of JSP/Servlet architecture deleted] ** Craig McClanahan Very well written explanation, Craig! Considering how many times this issue has been addressed on this list, I must say I'm impressed

Re: FW: when to use Bean !!!

1999-10-28 Thread Rajendra Mishra
University --- Chris Macias wrote: ...and this could probably be expanded to "When to use a servlet and when to use a Bean and when to use an EJB", but now we're asking for a white paper! :-) But, seriously, can any of the gurus out there help out us newbie

FW: when to use Bean !!!

1999-10-27 Thread Chris Macias
:Re: when to use Bean !!! Hi, Let me add my 2c, as Craig "suggested" that's quite a question and it's better to learn about the technologies and then decide by yourself, but you asked for some opinions so... In my case I'm using all of them at the same time. .- I use a servlet

Re: [Re: when to use Bean !!!]

1999-10-27 Thread Dmitri Namiot
yes, yes Craig ! That is exactly what we are doing (or trying to do :-) What we need from servers dynamic (in my opinion of course) is just ability to load classes/run methods. The product we are using (alaJSP) is all about that. But in my opinion this approach is hided by JSP specs/documents

Re: [Re: when to use Bean !!!]

1999-10-27 Thread Craig McClanahan
Dmitri Namiot wrote: yes, yes Craig ! That is exactly what we are doing (or trying to do :-) What we need from servers dynamic (in my opinion of course) is just ability to load classes/run methods. The product we are using (alaJSP) is all about that. And of course, JSP and servlets both

custom tags, xmlc, scalability (was: when to use bean..)

1999-10-26 Thread Eduardo Pelegri-Llopart
..and this could probably be expanded to "When to use a servlet and when to use a Bean and when to use an EJB", but now we're asking for a white paper! :-) Actually, you are missing one :-) "when to use a custom action", and that is a very important one, although you have

Re: when to use Bean !!!

1999-10-26 Thread ACI Team (Chennai)
:20 PM To: [EMAIL PROTECTED] Subject: Re: when to use Bean !!! Craig, A polite way of saying "RTFM", huh? :-) What you didn't say (but could have) is that this is a JSP-specific interest list, and the questions we're asking are really drifting across the line from &qu

Re: when to use Bean !!!

1999-10-26 Thread DEEPAK_EXTROSS
Well, actually, you *can* put all your business logic into your servlet. But then you'd be passing up the niceties of EJB. Business logic encapsulation container-managed transactions, to name a few. I think Craig was looking at single entry point servlet,

Re: when to use Bean !!!

1999-10-26 Thread Anirban Sharma
EJBs provide a nice architecture for writing server side components. If reusability is one of your design goals, then this is a very attractive option. EJB uses the concept of container and component. The container provides the basic infrastructure for developing large scale applications -

Re: when to use Bean !!!

1999-10-26 Thread Craig R. McClanahan
"ACI Team (Chennai)" wrote: hello all, someone was mentioning about keeping the business logic in EJB or SERVLET , could someone explain more about where to keep the logic to be efficient enough. i think craig was saying something about having a single servlet for the

Re: custom tags, xmlc, scalability (was: when to use bean..)

1999-10-26 Thread Brien Voorhees
- Original Message - From: Eduardo Pelegri-Llopart [EMAIL PROTECTED] Subject: custom tags, xmlc, scalability (was: when to use bean..) Custom tags are very flexible; most of the standard tags of JSP 1.0 can be described as custom tags, and many JSP vendors are providing their own tag

Re: custom tags, xmlc, scalability (was: when to use bean..)

1999-10-26 Thread Paul Allton
- Original Message - From: Brien Voorhees [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 26, 1999 6:27 PM Subject: Re: custom tags, xmlc, scalability (was: when to use bean..) - Original Message - From: Eduardo Pelegri-Llopart [EMAIL PROTECTED] Subject: custom

Re: when to use Bean !!!

1999-10-26 Thread S.Ramaswamy
There are actually some pretty nice object oriented approaches to doing HTML output in servlets. This is one of the things you can use implementations of the HTML Document Object Model (DOM) for (see http://www.w3.org). See also things like the htmlKona library that is (or was?) part of

Re: when to use Bean !!!

1999-10-26 Thread Dmitri Namiot
looks like very logical and clear model, but see: you submit your forms to servelt. (I also like one servlet per application, just more easy to maintain). So your logic (application logic) is supported by servlet. What in that case the added value from JSP-beans to web-application ? Yes, we have

Re: when to use Bean !!!

1999-10-26 Thread Craig McClanahan
Dmitri Namiot wrote: looks like very logical and clear model, but see: you submit your forms to servelt. (I also like one servlet per application, just more easy to maintain). So your logic (application logic) is supported by servlet. What in that case the added value from JSP-beans to

Re: when to use Bean !!!

1999-10-26 Thread Brien Voorhees
- Original Message - From: Dmitri Namiot [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 26, 1999 5:43 PM Subject: Re: when to use Bean !!! looks like very logical and clear model, but see: you submit your forms to servelt. (I also like one servlet per application

when to use Bean !!!

1999-10-25 Thread ACI Team (Chennai)
Hi Does any one has clear picture of when to use bean in Jsp Help of any sort appreciated.. Aciteam === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". FAQs on JSP ca

Re: when to use Bean !!!

1999-10-25 Thread Carlos H. López
I want to add to this question, When use a Bean and When to use a Servlet? Thanks, Carlos. "The successful man make their own opportunities." "ACI Team (Chennai)" wrote: Hi Does any one has clear picture of when to use bean in Jsp Help of any sort app

Re: when to use Bean !!!

1999-10-25 Thread Craig McClanahan
Chris Macias wrote: ...and this could probably be expanded to "When to use a servlet and when to use a Bean and when to use an EJB", but now we're asking for a white paper! :-) But, seriously, can any of the gurus out there help out us newbies with some 'rules of thumb' for w

Re: when to use Bean !!!

1999-10-25 Thread Hu, Jeffery X (Jeff)
Title: RE: when to use Bean !!! This is what I think . First, let me explain the design model I implement (say, a DB query application) 1. Client sends (HTML) request to servlet asking for data from db. Client submit userid password. 2. Servlet conducts db access authentication

Re: when to use Bean !!!

1999-10-25 Thread Tom Glover
http://www.netdelivery.com http://www.netdelivery.com/ mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] -Original Message- From: Hu, Jeffery X (Jeff) [mailto:[EMAIL PROTECTED]] Sent: Monday, October 25, 1999 10:00 AM To: [EMAIL PROTECTED] Subject: Re: when to use Bean !!! This is what I

Re: when to use Bean !!!

1999-10-25 Thread Chris Macias
ent: Monday, October 25, 1999 11:05 AM To: [EMAIL PROTECTED] Subject:Re: when to use Bean !!! Chris Macias wrote: ...and this could probably be expanded to "When to use a servlet and when to use a Bean and when to use an EJB", but now we're asking for a white paper! :-) But, ser

Re: when to use Bean !!!

1999-10-25 Thread Luc Saint-Elie
avez écrit le (you wrote on) 09:05 25/10/99 -0700 : Chris Macias wrote: ...and this could probably be expanded to "When to use a servlet and when to use a Bean and when to use an EJB", but now we're asking for a white paper! :-) But, seriously, can any of the gurus out there h

Re: when to use Bean !!!

1999-10-25 Thread Craig McClanahan
Chris Macias wrote: Craig, A polite way of saying "RTFM", huh? :-) Not really ... I imagine that many people don't know where to even find the "FM" so they can read it. :-). This stuff is all so new that there is not a lot of explanatory material that is readily available in well known

Re: when to use Bean !!!

1999-10-25 Thread Shah, Suneet
: Monday, October 25, 1999 1:46 PM To: [EMAIL PROTECTED] Subject: Re: when to use Bean !!! Chris, I come to this news group only and I found it is good enough. In fact, I picked up a lot tips from Craig. (salute Craig, :-) @_@! Sybase's Jaguar CTS (Component Transaction Server 3.0

Re: when to use Bean !!!

1999-10-25 Thread Chris Macias
Jeff, I come to this news group only and I found it is good enough. In fact, I picked up a lot tips from Craig. (salute Craig, :-) @_@! Agreed! I'm learning so much from Craig's postings (and several other's) that I feel like I ought to be sending him a monthly check! But money's a little

Re: when to use Bean !!!

1999-10-25 Thread Craig McClanahan
Luc Saint-Elie wrote: Craig, I usually really love your answers that are by far the must useful and comprehensives ones. But in this case I really don't agree. I read the J2EE docs and I'm still unable to answer to simple questions like - in this case use JSP - in this case use JSP +

Re: when to use Bean !!!

1999-10-25 Thread Anirban Sharma
Craig, A few questions/comments below: Craig McClanahan wrote: If you look inside my apps, you'll see the following design pattern all over the place: * JSP page contains an input form. The values are pre-filled-in from a session bean that contains application default values the

Re: when to use Bean !!!

1999-10-25 Thread Craig McClanahan
Anirban Sharma wrote: Craig, A few questions/comments below: Craig McClanahan wrote: If you look inside my apps, you'll see the following design pattern all over the place: * JSP page contains an input form. The values are pre-filled-in from a session bean that contains

Re: when to use Bean !!!

1999-10-25 Thread David Wall
Question: Do you extract this information from the HttpSession? I was reading an article where they were saying that stuffing too much information to Sessions may adversely effect the scalability of a high traffic site. Is that true? This is a very good point. Using session beans is

the answer: when to use Bean !!!

1999-10-25 Thread BeeUm King
EMAIL PROTECTED] Hi Does any one has clear picture of when to use bean in Jsp Help of any sort appreciated.. Aciteam === When i bee-um, the toile

Re: the answer: when to use Bean !!!

1999-10-25 Thread BeeUm King
ubject: RE: the answer: when to use Bean !!! Date: Tue, 26 Oct 1999 11:13:56 +1000 Please unsubscribe me as I have had enough. It's bad enough having to trawl through 50 emails every morning, but the fact that the list organiser refuses to filter out the immature teenage boys that are obsessed w