The table below describes web services, parameters and code snippets to generate the data in given urls.
Columns | url | Web Service | parameters | code snippet |
Project Number,
Project Description, Project Status, Date Created, Board of Trustees Budget, Budget Revision, Latest Budget, Actuals, Committed, Allocated, Remaining |
http://famis.prod.uconn.edu/customer/capitalProjects | getShellList(..) | shortname = ‘UConn’
authcode = ‘PGBUUConn’ shellType=’Projects’ filtercondition = ‘uuu_shell_status=Active’ |
$xml_array[‘shortname’] = ‘UConn’; $xml_array[‘authcode’] = ‘PGBUUConn’;$xml_array[‘shellType’] = ‘Projects’; $xml_array[‘filtercondition’] = ‘uuu_shell_status=Active’; $response = $client->getShellList($xml_array); |