[geeklog-cvs] Auth_Enterprise/Enterprise/Client SOAP.php,1.1,1.2

tony at iowaoutdoors.org tony at iowaoutdoors.org
Mon Jul 26 14:50:12 EDT 2004


Update of /var/cvs/Auth_Enterprise/Enterprise/Client
In directory www:/tmp/cvs-serv7875

Modified Files:
	SOAP.php 
Log Message:
now uses authenticate instead of doAuthenticate

Index: SOAP.php
===================================================================
RCS file: /var/cvs/Auth_Enterprise/Enterprise/Client/SOAP.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** SOAP.php	22 Jul 2004 18:07:12 -0000	1.1
--- SOAP.php	26 Jul 2004 18:50:10 -0000	1.2
***************
*** 90,95 ****
      public function authenticate($userName, $password)
      {
!         //print_r($this->SOAPClient->__getFunctions()); exit;
!         $result = $this->SOAPClient->doAuthenticate($this->getAppId(), $username, $password);
          
          if (is_soap_fault($result)) {
--- 90,99 ----
      public function authenticate($userName, $password)
      {
!         try {
!             $result = $this->SOAPClient->authenticate($this->getAppId(), $userName, $password);
!         } catch (SoapFault $e) {
!             print_r($e);
!             exit;
!         }
          
          if (is_soap_fault($result)) {




More information about the geeklog-cvs mailing list