Re: Rework on SOAP 1.2 Part 2: Section 2 and 3

Hi Stuart,

Williams, Stuart wrote:
 >>>Consider this graph:
 >>>
 >>>          edgeB       +-------------+
 >>>      +-------------->+ "terminalB" |
 >>>      |               +-------------+
 >>>      |
 >>> +----+----+  edgeA   +-------------+
 >>> | structA +--------->+ "terminalA" |
 >>> +----+----+          +-------------+
 >>>      |
 >>>      |    edgeC      +---------+ edgeD  +-------------+
 >>>      +-------------->+ structB +------->+ "terminalD" |
 >>>                      +----+----+        +-------------+
 >>>                           |
 >>>                           |   edgeF     +-------------+
 >>>                           +-------------+ "terminalE" |
 >>>                                         +-------------+
I would encode this graph like this:

   <myGraph>
     <edgeA>terminalA</edgeA>
     <edgeB>terminalB</edgeB>
     <edgeC>
       <edgeD>terminalD</edgeD>
       <edgeF>terminalF</edgeF>
     </edgeC>
   </myGraph>

The "myGraph" element representing the context in which you want to pass 
your graph (it might be the element corresponding to an argument of a 
RPC for exemple).

Hope this helps,

Hervé.

Received on Friday, 15 March 2002 10:27:05 UTC