Re: Comments on draft-ietf-trade-iotp-v1.0-protocol-05.txt

"Donald E. Eastlake 3rd" <dee3@torque.pothole.com> Tue, 07 September 1999 12:22 UTC

Received: from one.eListX.com (one.elistx.com [209.116.252.130]) by ietf.org (8.9.1a/8.9.1a) with SMTP id IAA04145 for <trade-archive@odin.ietf.org>; Tue, 7 Sep 1999 08:22:06 -0400 (EDT)
Received: from one.elistx.com by one.eListX.com id aa18046; 7 Sep 99 08:07 EDT
Received: from [209.94.126.195] by one.eListX.com id aa18034; 7 Sep 99 08:07 EDT
Received: from localhost (localhost [127.0.0.1]) by torque.pothole.com (8.8.2/8.8.8) with SMTP id IAA07566 for ietf-trade@lists.eListX.com; Tue, 7 Sep 1999 08:09:12 -0400 (EDT)
Message-Id: <199909071209.IAA07566@torque.pothole.com>
X-Authentication-Warning: torque.pothole.com: localhost [127.0.0.1] didn't use HELO protocol
To: ietf-trade@lists.eListX.com
Subject: Re: Comments on draft-ietf-trade-iotp-v1.0-protocol-05.txt
In-reply-to: Your message of "Mon, 06 Sep 1999 13:41:32 +0200." <000101bef85c$c4be7b50$0a00000a@rudolf>
Date: Tue, 07 Sep 1999 08:09:12 -0400
From: "Donald E. Eastlake 3rd" <dee3@torque.pothole.com>
X-Mts: smtp
Sender: ietf-trade-owner@lists.eListX.com
Precedence: bulk
X-elistx: ietf-trade
Source-Info: From (or Sender) name not authenticated.

From:  Rudolf Hornig <rudolf@metechnology.com>
To:  "'David Burdett'" <david.burdett@commerceone.com>,
            "'Yoshiaki KAWATSURA'" <kawatura@bisd.hitachi.co.jp>
Cc:  ietf-trade@lists.eListX.com
Date:  Mon, 6 Sep 1999 13:41:32 +0200
Message-ID:  <000101bef85c$c4be7b50$0a00000a@rudolf>
In-Reply-To:  <123B7EB05559D311B0D900A0C9EA3D7604F205@NEPTUNE>

>David and Yoshiakia,
>
>> ========================================================================
>> 4.5.2.3 Processing Non-Duplicate Message
>> ...
>... [Content deleted] ...
>
>I believe that idempotency is not required for Ping and Inquiry
>transaction. Additionaly I believe we do not need to use new
>IotpTransId , we use the same as the IotpTransId of a Purchase
>Transaction whenever Inquiry transaction is used.
>
>##The part of the spec that says in the Note ...
>>             ... then an IOTP transaction with a new IotpTransId must be
>used.
>... is wrong. It should read ...
>>             ... then an IOTP transaction with a new value for the ID
>attribute of the MsgId component must be used.
>
>I also agree that idempotency is not really required for inquiry and ping
>transactions. To my mind the question is, what is going to be simpler to
>implement? I think we have three possible approaches:
>1. Cache every transaction and have have the same approach to every
>transaction (this is what the spec says now), or
>2. Cache the messages we want to and not the others (i.e. don't cache ping &
>inquiry), or
>3. Leave to an implementation decision, i.e. if you do send the identical
>message you might get the identical response back but then you might get an
>updated one.
>
>Option 1 could be simpler to implement in that you have a standard message
>content unware process that says "Have I received this before ... yes ... so
>I'll resend the last message if its available". As long as inquiries and
>pings are relatively infrequent then the overhead in storage and processing
>should be relatively small.
>
>Option 2 would allow people to re-use inquiry requests (but why would you
>want to?) and would save on what you had to cache but would require that the
>content of the message would have to be understood before idempotency
>processing could occu. FOr example it would require processing along the
>lines of "What kind of message is it? If it's a Ping or an Inquiry then I'll
>process it afresh otherwise I'll resend the last message I sent if one is
>available."
>
>Option 3 would mean that if you really always wanted to be sure of getting
>up-to-date information then you would have to adopt approach 1 since
>behaviour of systems/servers in this area would not be predictable.
>
>Which approach do people prefer (or is there another one!) ?
>##
><RH>
>I would opt on #3, because:

I think consistency of behaviour is quite important.  Messages may get
duplicated not just because they are questions being asked again but
also because of tranmission path quirks.  Packets get duplicated,
messages that were queues can get re-sent, etc.  Even for long
messages where they won't fit into a packet, consider the SMTP
transport and email getting duplicated.  It is even possible for the
message to be duplicated and then the two responses, which could be
different due to a change in state, could be re-ordered...
	Since we need indempotency sometimes, I think #1 is simplest
behaviour by providing it all the time.

>- The resource requirement on doing inquiry and ping transactions
>  higly depends on the implementation and the actual usage of
>  the server. I can imagine scenarios where serving these transactions
>  cost a lot of resources: Using low quality network service (lots of 
>  retransmissions) with Pings requesting signature checking and Inquiries
>  not served locally rather routed to other Existing Payment Systems.
>  In this case Ping/Inquiry idempotency would be a benefit....
>  On the other hand if these transactions doesn't cost too much, but there
>  is a lot of them without too much retransmission, avoiding message 
>  idempotency on these transactions, could spare some computing time and a 
>  lot of database space.
>
>  I would let the implementor decide wheter or not to support msg 
>  idempotency, on this two transaction type. The role, which is sending the
>  ping/inquiry request should generate new msg id, if she wants up to date
>  information...
>
>  An additional question about the meaning of "identical":
><IOTP-DRAFT>
>4.5.2.2 Checking/Handling Duplicate Messages
>
> If the input message can be identified as potentially a valid input
> message then check to see if an "identical" input message has been
> received before. Identical means that all blocks, components, elements,
> attribute values and element content in the input message are the same.
></IOTP-DRAFT>
>
>  I could imagine 3 definitions for the term "identical"
>  1. The message's IotpTransId and MsgId is the same as the previous.
>  2. The message's content is exactly the same (doing a hash on it
>     produces the same hash value as for the previous message)
>  3. As stated above, all blocks, components, elements, etc are the same...

There should be no difference between 2 and 3.

>  It is quite hard to implement the #3 case as we have to parse the whole
>  message and also the previous msg from the idempotency and compare
>  them on an element/element base. The problem is that not all the elements
>  have an ID attribute, which means that the two message cannot be 
>  compared easyly. For example the two messages are the same except
>  two PackagedContenet element in the same Component where their order
>  has changed... Ok, this is not a real life example I admit...:)
>  So doing an element/element comparation is not easyly implementable
>  and also quite resource consuming, because you have to parse both the
>  original and the newly received message before comparing...

DOM HASH is explicitly designed to make comparison easy.

>  Doing a hash or full comparation on the messages is OK, however I would
>  suggest that a message, with the same IotpTransId and MsgIg should be
>  treated as the same message regardless of their content. It is the
>  senders responsibility, not to alter anything in the message if she
>  uses the same Trans and Msg ID...
>  
></RH>

While I think that is reasonable, doing a hash is a pretty cheap operation
and enables you to compare the entire message quite easily.

Thanks,
Donald

>Regards, Rudolf
>
>PS: David, could you check also my original
>"Comments on draft-ietf-trade-iotp-v1.0-protocol-05" mail
>as you acknoledged only some of the comments...
>(They are mostly tipos however:)
>-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
>Rudolf Hornig (Rudolf@MeTechnology.com), Project Manager 
>MeTechnology Ltd. Hungary - a Brokat Company
>-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
-----------------------------------------------------------------------
Message addressed to: ietf-trade@lists.elistx.com
Archive available at: http://www.elistx.com/archives/ietf-trade/
To (un)subscribe send a message with "subscribe" or "unsubscribe" in the
body to: ietf-trade-request@lists.elistx.com