Sample Generic Request

Description

In the example that follows, note that:

Sample Request

1    <soapenv:Envelope
2     xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
3     xmlns:typ=
"http://haley.com/determinations/server/9.3/rulebase/types">

4      <soapenv:Body>
5        <typ:assess-request>
6
7          <typ:config>
8            <typ:show-events>true</typ:show-events>
9          </typ:config>
10
11          <typ:session-data>
12           <typ:list-entity entity-type="global">
13             <typ:entity id="global">
14               <typ:attribute-outcome id="parentsSatisfy"
15                 outcome-style="decision-report" />

16             </typ:entity>
17           </typ:list-entity>
18
19           <typ:list-entity entity-type="person">
20             <typ:entity id="bobjr">
21               <typ:relationships>
22                 <typ:relationship name="plays-with">
23                   <typ:target entity-id="plane" />
24                   <typ:target entity-id="tip-truck" />
25                   <typ:target entity-id="scooter" />
26                 </typ:relationship>
27               </typ:relationships>
28             </typ:entity>
29
30             <typ:entity entity-id="sue" />
31
32             <typ:entity entity-id="bob">
33               <typ:relationships>
34                 <typ:relationship name="children">
35                   <typ:target entity-id="bobjr" />
36                 </typ:relationship>
37               </typ:relationships>
38             </typ:entity>
39           </typ:list-entity>
40
41           <typ:list-entity entity-type="toy">
42             <typ:entity id="plane">
43               <typ:attribute id="wings">
44                 <typ:boolean-val>true</typ:boolean-val>
45               </typ:attribute>
46             </typ:entity>
47
48             <typ:entity id="tip-truck">
49               <typ:attribute id="wings">
50                 <typ:boolean-val>true</typ:boolean-val>
51               </typ:attribute>
52             </typ:entity>
53
54             <typ:entity id="scooter">
55               <typ:attribute id="wings">
56                 <typ:boolean-val>false</typ:boolean-val>
57               </typ:attribute>
58             </typ:entity>
59           </typ:list-entity>
60
61         </typ:session-data>
62       </typ:assess-request>
63     </soapenv:Body>
64   </soapenv:Envelope>

 

See also:

Sample Specific Request