WWW-Salesforce ============== # # Salesforce dot com Perl Module # Author: Byrne Reese # Chase Whitener # Last Updated - Feb 12, 2007 # The following Perl module is to facilitate communication with the Saleforce Web service APIs. Note - This module is based off of Salesforce's Partner WSDL. Enterprise WSDLs are a little more tricky since code stubs must be generated on the fly. Stay tuned to SOAP::Lite's wsdl2perl project which will make Enterprise WSDL's easier to deal with. HISTORY This Perl module was originally provided and presented as part of the first Salesforce.com dreamForce conference on Nov. 11, 2003 in San Francisco. It is now being maintained by Chase Whitener. INSTALLATION To install this module type the following: perl Makefile.PL make make test make install - To use the module afterwards, you'll need to do this: use WWW::Salesforce INSTALLATION - alternate To install this module to a different path: perl Makefile.PL PREFIX=/path/to/some/dir make make test make install - To use the module afterwards, you'll need to to this: use lib '/path/to/some/dir'; use WWW::Salesforce; DEPENDENCIES This module requires these other modules and libraries: SOAP::Lite Crypt::SSLeay WHAT WORKS Almost all 8.0 API calls now work. WHAT DOESN'T WORK (a.k.a. TO DO) * describeSObjects API call. - array version of describeSObject * need to add more tests ABOUT THE AUTHOR Chase Whitener took on making a few changes to the Module because he now has to work with Salesforce.com at his current position.