A SOAP call for directory information
by Thomas Cramer
Here is a SOAP call that will provide phone directory information for a person:
my $client = SOAP::Lite
->uri('https://appserve.musc.edu/phoneSoap')
->proxy('https://appserve.musc.edu/phoneSoap/phoneInfo.cgi');
my $result= $client ->getUserInfo("cramert");
# For faster response, but which is only updated
# a couple times a day, which may be still sufficient
my $result= $client ->getQuickUserInfo("cramert");
Also, I am keeping the gabSoap interface as it will provide user information for those that have opted out of wanting their phone information published (like for FERPA reasons).


