doPost versus doGet

1999-10-12 Thread Dalveer
, October 13, 1999 9:38 AM Subject: Re: doPost versus doGet - DESIGN DECISION??? > Yes, indeed. > > Pramod Gurshaney wrote: > > > Some servers limit the length of URLS to 240 chars. For these cases, POST is > > recommended. > > > > - Original Message - >

Re: doPost versus doGet - DESIGN DECISION???

1999-10-12 Thread Uddipan Bagchi
er 12, 1999 1:50 AM > Subject: Re: doPost versus doGet - DESIGN DECISION??? > > > Hi, > > > > Let me confuse u a bit with the following : > > > > a) It does not matter which of these u put u'r code in. > > b) To maintain consistency across the project, cho

Re: doPost versus doGet - DESIGN DECISION???

1999-10-12 Thread Taylor Gautier
) -tg - Original Message - From: Kirkdorffer, Daniel <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, October 12, 1999 11:37 AM Subject: Re: doPost versus doGet - DESIGN DECISION??? > And based on that information I would say don't override service(). There

Re: doPost versus doGet - DESIGN DECISION???

1999-10-12 Thread Kirkdorffer, Daniel
d you. Dan > -- > From: Craig McClanahan[SMTP:[EMAIL PROTECTED]] > Reply To: Craig McClanahan > Sent: Tuesday, October 12, 1999 10:21 AM > To: [EMAIL PROTECTED] > Subject: Re: doPost versus doGet - DESIGN DECISION??? > > Nanduri

Re: doPost versus doGet - DESIGN DECISION???

1999-10-12 Thread Craig McClanahan
Nanduri Amarnath wrote: > Hi Guys, > I recently had WebLogic training and this Instructor said that instead of > using the > doGet() (or) the doPost() method, over-write the service() method. He says that > if you use either a > doGet() (or) doPost() method, the WebServer has to do a POLYM

Re: doPost versus doGet - DESIGN DECISION???

1999-10-12 Thread Taylor Gautier
m: Rupesh Choubey[SMTP:[EMAIL PROTECTED]] > > Reply To: Rupesh Choubey > > Sent: Monday, October 11, 1999 7:56 PM > > To: [EMAIL PROTECTED] > > Subject: doPost versus doGet - DESIGN DECISION??? > > > > quick question for the DES

Re: doPost versus doGet - DESIGN DECISION???

1999-10-12 Thread Nanduri Amarnath
ments welcome. Cheers, Amar.. "Kirkdorffer, Daniel" <[EMAIL PROTECTED]> on 10/12/99 11:46:13 AM Please respond to "Kirkdorffer, Daniel" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] cc:(bcc: Amarnath Nanduri/IT/VANCPOWER) Subject: Re: doPost versus doGet

Re: doPost versus doGet - DESIGN DECISION???

1999-10-12 Thread Pramod Gurshaney
Some servers limit the length of URLS to 240 chars. For these cases, POST is recommended. - Original Message - From: Uddipan Bagchi <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, October 12, 1999 1:50 AM Subject: Re: doPost versus doGet - DESIGN DECISION??? >

Re: doPost versus doGet - DESIGN DECISION???

1999-10-12 Thread Kirkdorffer, Daniel
ey > Sent: Monday, October 11, 1999 7:56 PM > To: [EMAIL PROTECTED] > Subject: doPost versus doGet - DESIGN DECISION??? > > quick question for the DESIGN gurus... > > we have a html+servlet+EJB+jsp application we are building. > > the servlets we use have

Re: doPost versus doGet - DESIGN DECISION???

1999-10-11 Thread Uddipan Bagchi
Hi, Let me confuse u a bit with the following : a) It does not matter which of these u put u'r code in. b) To maintain consistency across the project, choose that method which serves the majority of the ACTION parameter across all your forms i.e if u have more GET's use doGet(...) in your servle

doPost versus doGet - DESIGN DECISION???

1999-10-11 Thread Rupesh Choubey
quick question for the DESIGN gurus... we have a html+servlet+EJB+jsp application we are building. the servlets we use have the primary function of determining where we come from and what actions were taken on the pages, etc some of our servlets serve MULTIPLE pages..hence in ce