This example is exactly the same as the generic request, but done as a specific request; note the following differences:
1 <soapenv:Envelope
2 xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
3 xmlns:typ="http://haley.com/determinations/server/9.3/testrb3/types">4 <soapenv:Body>
5 <typ:assess-request>
67 <typ:config>
8 <typ:show-events>true</typ:show-events>
9 </typ:config>
1011 <typ:testrb3>
12 <typ:global id="global">
13 <typ:parentsSatisfy outcome-style="decision-report" />
14
</typ:global>
15
16 <typ:list-person>
17 <typ:person id="bobjr">
18 <typ:relationships>
19 <typ:plays-with>
20 <typ:target entity-id="plane" />
21 <typ:target entity-id="tip-truck" />
22 <typ:target entity-id="scooter" />
23 </typ:plays-with>
24 </typ:relationships>
25 </typ:person>
26
27<typ:person id="sue" />
2836 </typ:list-person>
29 <typ:entity id="bob">
30 <typ:relationships>
31 <typ:children>
32 <typ:target entity-id="bobjr" />
33 </typ:children>
34 </typ:relationships>
35 </typ:person>
3738 <typ:list-toy>
39 <typ:toy id="plane">
40 <typ:wings>
41 <typ:boolean-val>true</typ:boolean-val>
42 </typ:wings>
43 </typ:toy>
4445 <typ:toy id="tip-truck">
46 <typ:wings>
47 <typ:boolean-val>true</typ:boolean-val>
48 </typ:wings>
49 </typ:toy>
5051 <typ:toy label="scooter">
52 <typ:wings>
53 <typ:boolean-val>false</typ:boolean-val>
54 </typ:wings>
55 </typ:toy>
56 </typ:list-toy>
57 </typ:testrb3>
58 </typ:assess-request>
59 </soapenv:Body>
60 </soapenv:Envelope>
See also: