Gets all data set by the user into the specified the interview session. Data is returned in the same format used by the Assess service.
Can be found at examples\rulebases\compiled\InterviewServiceTest.zip in the Oracle Policy Automation Runtime package.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:typ="http://oracle.com/determinations/server/interview/10.4/InterviewServiceTest/types">
<soapenv:Header/>
<soapenv:Body>
<typ:get-user-set-data-request>
<typ:interview-session-id>932c2e97-73ed-4ca6-bee2-62c654d7e316</typ:interview-session-id>
</typ:get-user-set-data-request>
</soapenv:Body>
</soapenv:Envelope>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:i18n="http://www.w3.org/2005/09/ws-i18n" xmlns:typ="http://oracle.com/determinations/server/interview/10.4/InterviewServiceTest/types">
<SOAP-ENV:Header>
<i18n:international>
<i18n:locale>en_US</i18n:locale>
<i18n:tz>GMT+08:00</i18n:tz>
</i18n:international>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<typ:get-user-set-data-response>
<typ:interview-session-id>932c2e97-73ed-4ca6-bee2-62c654d7e316</typ:interview-session-id>
<typ:global-instance>
<typ:attribute id="person_salary" type="currency">
<typ:number-val>50000.0</typ:number-val>
</typ:attribute>
<typ:attribute id="person_nickname" type="text">
<typ:text-val>JohnB</typ:text-val>
</typ:attribute>
<typ:entity id="child">
<typ:instance id="child1">
<typ:attribute id="child_dob" type="date">
<typ:date-val>1996-07-25</typ:date-val>
</typ:attribute>
<typ:relationship id="childsschool" state="known">
<typ:target instance-id="school1"/>
</typ:relationship>
</typ:instance>
</typ:entity>
<typ:entity id="school">
<typ:instance id="school1">
<typ:attribute id="school_type" type="text">
<typ:text-val>SECONDARY</typ:text-val>
</typ:attribute>
<typ:attribute id="school_num_students" type="number">
<typ:number-val>1000.0</typ:number-val>
</typ:attribute>
<typ:relationship id="schoolsstudents" state="known">
<typ:target instance-id="child1"/>
</typ:relationship>
</typ:instance>
</typ:entity>
</typ:global-instance>
</typ:get-user-set-data-response>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>