Sample Specific Request

Description

This example is exactly the same as the generic request, but done as a specific request; note the following differences:

Sample Request

1    <soapenv:Envelope
2     xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
3     xmlns:typ=
"http://oracle.com/determinations/server/10.0/testrb3/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: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" />
28
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>
36           </typ:list-person>
37

38           <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>
44
45             <typ:toy id="tip-truck">
46               <typ:wings>
47                 <typ:boolean-val>true</typ:boolean-val>
48               </typ:wings>
49             </typ:toy>
50
51             <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:

Sample Generic Request