Michael Jouravlev wrote the following on 7/7/2005 5:26 PM:
On 7/7/05, Rick Reumann <[EMAIL PROTECTED]> wrote:

klute wrote the following on 7/7/2005 3:07 PM:


It seems like it would make sense to have both so that
you can use GET to set up a particular form and POST
to process that form. Instead, I'd have to look at the
request to see what was invoked and then conditionally
do some processing.

No need for conditional process based on GET or POST, you should be
either directing control based on either...

A) Separate mappings that point to different Action classes

   /setUpEdit.do
   /edit.do

or

B) pass in a dispatch parameter if using a DispatchAction (You can still
use separate mappings also if you want also).

--
Rick


Not quite. POST is generally for data input (form processing). GET is
generally for pulling static pages or semi-static result pages or at
least for performing idemponent actions. These methods have different
semantics. This difference is the cornerstone of approach that I use
now [plug skipped].

My only point is that klute doesn't really need to worry about whether it's a GET or POST in order to process what he needs if he does things in a conventionaly way. He shouldn't be using the same entry semantics for going to a 'setup' vs 'a true edit' - that's just silly and would make it extremely difficult for someone working on the code to even firgure out what's going on. Just create some meaninful action mapping names and/or dispatch method names and all is well and he won't have to worry about GET vs POST.

--
Rick

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to