XZ5+*lN_Fy-} tLTWh*CONTAINSTHECODEFORA#oYZ-~RANSPORTLAYER-iAYh*NO3==ET9*AND-* -* licens'HE5R~*~eURCEFILEISSUBU{oRSIONOFTHEphL D -dO^HL DH N lmEINTHEFILElicens'^E_-cSAVAILABLEAT-*]'*THROUGHTHEWORL_^ }hhATHTTPW]H#m& 9n3>0!"Ih%TXTiFYOZ"*xrxDR   A  A -~HEphpLICENSEAAKNLEUTNT--WYDOR S EzeRLD WIDE WEB PLJNS TDPS ETA 3PMESM C yz EGLFUA TT M t$-* -* `CATEGOITC?EJ"  N[lgE;}kCKAGEsoap-*IA3USRATIO=O[cocARAVEOsHANE`cARAYJO] ?$'*`COPYRIGHT tDA! D8U~o-* `LINKBR K7%"zEARPHPNETPACKJsh.%yzU^7* -* httptROUNTI -* `PACKAGEC2<$p*lA_L4D[yoGORYwEBsERVICES-*-yhi[ #?- nEEDEDcLASSES-* "%RH 1EAS'=(2Z6_ B6*-* -* httptRAJY !T2;4#-7|dAGEm_ H-zUBLIC-* `PACKAGEs-35la'*MkUTHORsHANEcARAET  -O P*0- -*CLASSsoaptRANSP >#oYZ-oXTENDSsoapbASEiola~-* -* bASICa AOcNG-* -*]- `VARARRAY-*BREKD6*-*VARHEADERANEA!1)@t`*ePERATIONWS52WYVAN'AIU3-lxSEURLURL -*THIS URLURL-*THISv IW ROEJ! TcW{UR*W-7URCxO}fACEMEDTt^cnSANDRECEIVESsoapE6*-* -* `PAR STU UM* jBYtDATA-* `PAREIls-*oPTIONS-*NhlAULT'*`RETURNSTRING\soapiNU eR-* `ACCESSPUBLIC-*BREAK"*FUNCTIONSEi")gSG OPTIONSC\S U?/aHGami6H0-*IFTHISDTyouRL [-*ALLRNPESLLAWixENOFWSa0ddPUT WSD\O]XAZdeNS{TIMEOUT} T"*UNSUPORTEDAWTST[dgEOUTINT OPT8OTAIBpckME [-*]-*-*IFCIRD \NecS URLPARTS{SCHEMErT-7 pPI]LbdTENT-*RETURNTHIS p\ER !91jKKBTRLDObaENTYPGG L[LnkSECMPTHIS URLPART\tMS)^IE= 1pMIMEM5 R&E@xyERNAMEuSERNAMO~oPAR^z}kRAMSTRINGPASSM;(T_-nATA MINUShttpHEADJ]S]hiT `cMEMIGE noSSPUBLIC-* -* NE+cSV CAQZ]PlgE PASSWORD -*["%-*THIS HEA{%g-7bASICBASEE  )~oRNAMEP6*]-*-* -*EXR.iyACOOKIE-* -*BREAK-JACCESSPUBLIC-*]-*- `PARAMSTRI Header extends SOAP_Value { /** * Constructor * * @param string $name Name of the SOAP value {namespace}name. * @param mixed $type SOAP value {namespace}type. Determined * automatically if not set. * @param mixed $value Value to set * @param integer $mustunderstand Zero or one. * @param mixed $attributes Attributes. */ function SOAP_Header($name = '', $type, $value, $mustunderstand = 0, $attributes = array()) { if (!is_array($attributes)) { $actor = $attributes; $attributes = array(); } parent::SOAP_Value($name, $type, $value, $attributes); if (isset($actor)) { $this->attributes['SOAP-ENV:actor'] = $actor; } elseif (!isset($this->attributes['SOAP-ENV:actor'])) { $this->attributes['SOAP-ENV:actor'] = 'http://schemas.xmlsoap.org/soap/actor/next'; } $this->attributes['SOAP-ENV:mustUnderstand'] = (int)$mustunderstand; } } /** * This class handles MIME attachements per W3C's Note on Soap Attachements at * http://www.w3.org/TR/SOAP-attachments * * @access public * @package SOAP * @author Shane Caraveo Conversion to PEAR and updates */ class SOAP_Attachment extends SOAP_Value { /** * Constructor. * * @param string $name Name of the SOAP value * @param string $type The attachment's MIME type. * @param string $filename The attachment's file name. Ignored if $file * is provide. * @param string $file The attachment data. */ function SOAP_Attachment($name = '', $type = 'application/octet-stream', $filename, $file = null) { parent::SOAP_Value($name, null, null); if (!isset($GLOBALS['SOAP_options']['Mime'])) { $this->options['attachment'] = PEAR::raiseError('Mail_mime is not installed, unable to support SOAP Attachements'); return; } $filedata = ($file === null) ? $this->_file2str($filename) : $file; $filename = basename($filename); if (PEAR::isError($filedata)) { $this->options['attachment'] = $filedata; return; } $cid = md5(uniqid(time())); $this->attributes['href'] = 'cid:' . $cid; $this->options['attachment'] = array('body' => $filedata, 'disposition' => $filename, 'content_type' => $type, 'encoding' => 'base64', 'cid' => $cid); } /** * Returns the contents of the given file name as string. * * @access private * * @param string $file_name The file location. * * @return string The file data or a PEAR_Error. */ function _file2str($file_name) { if (!is_readable($file_name)) { return PEAR::raiseError('File is not readable: ' . $file_name); } if (function_exists('file_get_contents')) { return file_get_contents($file_name); } if (!$fd = fopen($file_name, 'rb')) { return PEAR::raiseError('Could not open ' . $file_name); } $cont = fread($fd, filesize($file_name)); fclose($fd); return $cont; } }
Warning: Unexpected character in input: '' (ASCII=26) state=0 in /var/www/houghten.com/public_html/phpgedview/SOAP/Base.php on line 940

Warning: Unexpected character in input: '' (ASCII=3) state=0 in /var/www/houghten.com/public_html/phpgedview/SOAP/Base.php on line 940

Parse error: syntax error, unexpected 'R' (T_STRING) in /var/www/houghten.com/public_html/phpgedview/SOAP/Base.php on line 940