Mozilla-izing was: Post Method versus Get Method

2003-01-08 Thread drieux
On Wednesday, Jan 8, 2003, at 10:19 US/Pacific, [EMAIL PROTECTED] wrote: [..] Good point, this for a *very* long time (and may still be) caused major headaches for the Mozilla development squad as it render most of their original implementation of caching completely unusable, as it related to

Re: Post Method versus Get Method

2003-01-08 Thread drieux
On Wednesday, Jan 8, 2003, at 12:09 US/Pacific, Susan Aurand wrote: thanks. the simplest rule of thumb is start with GET until you have a good excuse for POST When you shift towards the 'all POST' approach, then you also want to be effectively using JavaScripting for the stuff that needs to

Re: Post Method versus Get Method

2003-01-08 Thread wiggins
On Wed, 8 Jan 2003 10:02:20 -0800, drieux <[EMAIL PROTECTED]> wrote: > > On Wednesday, Jan 8, 2003, at 01:21 US/Pacific, Gary Stainburn wrote: > [..] > > The only benefits of using GET that I can think of is that you can > > emulate a > > form by

Re: Post Method versus Get Method

2003-01-08 Thread drieux
On Wednesday, Jan 8, 2003, at 01:21 US/Pacific, Gary Stainburn wrote: [..] The only benefits of using GET that I can think of is that you can emulate a form by manually keying the data in the URL, and you can even create a bookmark containing the completed form details. I personally use this t

Re: Post Method versus Get Method

2003-01-08 Thread Gary Stainburn
On Tuesday 07 January 2003 9:17 pm, Susan Aurand wrote: > I know the POST Method the data is sent to STDIN, and GET method the data > is attached to the URL and then submitted. When and why would you want to > use the GET method versus the POST method. Is is because of firewalls? or > what? I wou

RE: Post Method versus Get Method

2003-01-07 Thread Bob Showalter
Susan Aurand wrote: > I know the POST Method the data is sent to STDIN, and GET > method the data is attached to the URL and > then submitted. When and why would you want to use the GET > method versus the POST method. Is is > because of firewalls? or what? I would appreciate any input on this >

RE: Post Method versus Get Method

2003-01-07 Thread wiggins
There are many reasons to choose one or the other. A good one for POST is file uploads, where the input values could be very very large (think mega or giga bytes of data) or binary which would have to be encoded and then unencoded in some manner, whereas this is less of a problem over a stream.

Post Method versus Get Method

2003-01-07 Thread Susan Aurand
I know the POST Method the data is sent to STDIN, and GET method the data is attached to the URL and then submitted. When and why would you want to use the GET method versus the POST method. Is is because of firewalls? or what? I would appreciate any input on this subject. Thank You. Susan Evan