...
Code Block |
---|
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:adc="http://www.adcom.uci.edu"> <soapenv:Header/> <soapenv:Body> <adc:isValidFSAAccounts> <kfsAccountList> <item>IR</item> <item>1000766</item> </kfsAccountList> <kfsAccountList> <item>IR</item> <item>1000767</item> </kfsAccountList> <kfsAccountList> <item>IR</item> <item>1000768</item> <item>20010701</item> </kfsAccountList> <kfsAccountList> <item>XX</item> <item>1234</item> <item>20080101</item> </kfsAccountList> </adc:isValidFSAAccounts> </soapenv:Body> </soapenv:Envelope> |
Response
...
Code Block |
---|
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<ns2:isValidFSAAccountsResponse xmlns:ns2="http://www.adcom.uci.edu">
<return>
<kfsAcctNumber>1000767</kfsAcctNumber>
<kfsChartCode>IR</kfsChartCode>
<valid>true</valid>
</return>
<return>
<kfsAcctNumber>1000768</kfsAcctNumber>
<kfsChartCode>IR</kfsChartCode>
<valid>false</valid>
</return>
<return>
<kfsAcctNumber>1234</kfsAcctNumber>
<kfsChartCode>XX</kfsChartCode>
<valid>false</valid>
</return>
<return>
<kfsAcctNumber>1000766</kfsAcctNumber>
<kfsChartCode>IR</kfsChartCode>
<valid>true</valid>
</return>
</ns2:isValidFSAAccountsResponse>
</soap:Body>
</soap:Envelope> |
Java Client Example
...
isValidKFSExpenseAccounts(List of (kfsChartCode, kfsAccountCode, effectiveDate))
...