diff --git a/pacotes/SOAP/Transport/cvs/Entries b/pacotes/SOAP/Transport/cvs/Entries deleted file mode 100644 index 91b1281..0000000 --- a/pacotes/SOAP/Transport/cvs/Entries +++ /dev/null @@ -1,4 +0,0 @@ -/HTTP.php/1.1.1.1/Thu Jun 8 16:21:39 2006// -/SMTP.php/1.1.1.1/Thu Jun 8 16:21:39 2006// -/WS_FTP.LOG/1.1.1.1/Tue May 30 19:09:37 2006// -D diff --git a/pacotes/SOAP/Transport/cvs/Entries.Extra b/pacotes/SOAP/Transport/cvs/Entries.Extra deleted file mode 100644 index 5a74bbd..0000000 --- a/pacotes/SOAP/Transport/cvs/Entries.Extra +++ /dev/null @@ -1,3 +0,0 @@ -/HTTP.php//// -/SMTP.php//// -/WS_FTP.LOG//// diff --git a/pacotes/SOAP/Transport/cvs/Entries.Extra.Old b/pacotes/SOAP/Transport/cvs/Entries.Extra.Old deleted file mode 100644 index e69de29..0000000 --- a/pacotes/SOAP/Transport/cvs/Entries.Extra.Old +++ /dev/null diff --git a/pacotes/SOAP/Transport/cvs/Entries.Old b/pacotes/SOAP/Transport/cvs/Entries.Old deleted file mode 100644 index d5bde8c..0000000 --- a/pacotes/SOAP/Transport/cvs/Entries.Old +++ /dev/null @@ -1,3 +0,0 @@ -/HTTP.php/1.1.1.1/Thu Jun 8 16:21:39 2006// -/SMTP.php/1.1.1.1/Thu Jun 8 16:21:39 2006// -/WS_FTP.LOG/1.1.1.1/Tue May 30 19:09:37 2006// diff --git a/pacotes/SOAP/Transport/cvs/Repository b/pacotes/SOAP/Transport/cvs/Repository deleted file mode 100644 index 64cbd55..0000000 --- a/pacotes/SOAP/Transport/cvs/Repository +++ /dev/null @@ -1 +0,0 @@ -apis/SOAP/Transport diff --git a/pacotes/SOAP/Transport/cvs/Root b/pacotes/SOAP/Transport/cvs/Root deleted file mode 100644 index 54459c3..0000000 --- a/pacotes/SOAP/Transport/cvs/Root +++ /dev/null @@ -1 +0,0 @@ -:ssh;username=06292871800;password=1304034;hostname=10.1.1.65:/repositorio/sistemas diff --git a/pacotes/SOAP/Transport/http.php b/pacotes/SOAP/Transport/http.php deleted file mode 100644 index 065748d..0000000 --- a/pacotes/SOAP/Transport/http.php +++ /dev/null @@ -1,298 +0,0 @@ - | -// +----------------------------------------------------------------------+ -// -// $Id: HTTP.php,v 1.1.1.2 2006/06/08 14:56:40 06292871800 Exp $ -// - -require_once 'SOAP/globals.php'; -require_once 'SOAP/Base.php'; - -/** -* HTTP Transport for SOAP -* -* @access public -* @version $Id: HTTP.php,v 1.1.1.2 2006/06/08 14:56:40 06292871800 Exp $ -* @package SOAP::Transport::HTTP -* @author Shane Caraveo -*/ -class SOAP_Transport_HTTP extends SOAP_Base -{ - - /** - * Basic Auth string - * - * @var string - */ - var $credentials = ''; - - /** - * - * @var int connection timeout in seconds - 0 = none - */ - var $timeout = 4; - - /** - * Error number - * - * @var int - */ - var $errno = 0; - - /** - * Error message - * - * @var string - */ - var $errmsg = ''; - - /** - * Array containing urlparts - parse_url() - * - * @var mixed - */ - var $urlparts = NULL; - - /** - * Connection endpoint - URL - * - * @var string - */ - var $url = ''; - - /** - * Incoming payload - * - * @var string - */ - var $incoming_payload = ''; - - /** - * HTTP-Request User-Agent - * - * @var string - */ - var $_userAgent = SOAP_LIBRARY_NAME; - - /** - * SOAP_Transport_HTTP Constructor - * - * @param string $URL http url to soap endpoint - * - * @access public - */ - function SOAP_Transport_HTTP($URL) - { - parent::SOAP_Base('HTTP'); - $this->urlparts = @parse_url($URL); - $this->url = $URL; - } - - /** - * send and receive soap data - * - * @param string &$msg outgoing post data - * @param string $action SOAP Action header data - * @param int $timeout socket timeout, default 0 or off - * - * @return string|fault response - * @access public - */ - function &send(&$msg, $action = '', $timeout = 0) - { - if (!$this->_validateUrl()) { - return $this->raiseSoapFault($this->errmsg); - } - - if ($timeout) - $this->timeout = $timeout; - - if (strcasecmp($this->urlparts['scheme'], 'HTTP') == 0) { - return $this->_sendHTTP($msg, $action); - } else if (strcasecmp($this->urlparts['scheme'], 'HTTPS') == 0) { - return $this->_sendHTTPS($msg, $action); - } - - return $this->raiseSoapFault('Invalid url scheme '.$this->url); - } - - /** - * set data for http authentication - * creates Authorization header - * - * @param string $username username - * @param string $password response data, minus http headers - * - * @return none - * @access public - */ - function setCredentials($username, $password) - { - $this->credentials = 'Authorization: Basic ' . base64_encode($username . ':' . $password) . "\r\n"; - } - - // private members - - /** - * validate url data passed to constructor - * - * @return boolean - * @access private - */ - function _validateUrl() - { - if ( ! is_array($this->urlparts) ) { - $this->errno = 2; - $this->errmsg = "Unable to parse URL $url"; - return FALSE; - } - if (!isset($this->urlparts['host'])) { - $this->errmsg = "No host in URL $url"; - return FALSE; - } - if (!isset($this->urlparts['port'])) { - - if (strcasecmp($this->urlparts['scheme'], 'HTTP') == 0) - $this->urlparts['port'] = 80; - else if (strcasecmp($this->urlparts['scheme'], 'HTTPS') == 0) - $this->urlparts['port'] = 443; - - } - if (isset($this->urlparts['user'])) { - $this->setCredentials($this->urlparts['user'], $this->urlparts['password']); - } - - return TRUE; - } - - /** - * remove http headers from response - * - * @return boolean - * @access private - */ - function _parseResponse() - { - if (preg_match("/^(.*?)\r?\n\r?\n(.*)/s", $this->incoming_payload, $match)) { - $this->response = preg_replace("/[\r|\n]/", '', $match[2]); - // if no content, return false - return strlen($this->response) > 0; - } - return FALSE; - } - - /** - * create http request, including headers, for outgoing request - * - * @return string outgoing_payload - * @access private - */ - function &_getRequest(&$msg, $action) - { - $this->outgoing_payload = - "POST {$this->urlparts['path']} HTTP/1.0\r\n". - "User-Agent: {$this->_userAgent}\r\n". - "Host: {$this->urlparts['host']}\r\n". - $this->credentials. - "Content-Type: text/xml\r\n". - "Content-Length: ".strlen($msg)."\r\n". - "SOAPAction: \"$action\"\r\n\r\n". - $msg; - return $this->outgoing_payload; - } - - /** - * send outgoing request, and read/parse response - * - * @param string &$msg outgoing SOAP package - * @param string $action SOAP Action - * - * @return string &$response response data, minus http headers - * @access private - */ - function &_sendHTTP(&$msg, $action = '') - { - $this->_getRequest($msg, $action); - - // send - if ($this->timeout > 0) { - $fp = fsockopen($this->urlparts['host'], $this->urlparts['port'], $this->errno, $this->errmsg, $this->timeout); - } else { - $fp = fsockopen($this->urlparts['host'], $this->urlparts['port'], $this->errno, $this->errmsg); - } - if (!$fp) { - $this->errmsg = "Unable to connect to {$this->urlparts['host']}:{$this->urlparts['port']}"; - return $this->raiseSoapFault($this->errmsg); - } - if (!fputs($fp, $this->outgoing_payload, strlen($this->outgoing_payload))) { - $this->errmsg = "Error POSTing Data to {$this->urlparts['host']}"; - return $this->raiseSoapFault($this->errmsg); - } - - // get reponse - while ($data = fread($fp, 32768)) { - $this->incoming_payload .= $data; - } - - fclose($fp); - - if (!$this->_parseResponse()) { - $this->errmsg = 'Invalid HTTP Response'; - return $this->raiseSoapFault($this->errmsg, $this->outgoing_payload."\n\n".$this->incoming_payload); - } - return $this->response; - } - - /** - * send outgoing request, and read/parse response, via HTTPS - * - * @param string &$msg outgoing SOAP package - * @param string $action SOAP Action - * - * @return string &$response response data, minus http headers - * @access private - */ - function &_sendHTTPS(&$msg, $action) - { - /* NOTE This function uses the CURL functions - * Your php must be compiled with CURL - */ - if (!extension_loaded('php_curl')) { - $this->errno = -1; - $this->errmsg = 'CURL Extension is required for HTTPS'; - return $this->raiseSoapFault($this->errmsg); - } - - $this->_getRequest($msg, $action); - - $ch = curl_init(); - if ($this->timeout) { - curl_setopt($ch, CURLOPT_TIMEOUT, $this->timeout); //times out after 4s - } - curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $this->outgoing_payload); - curl_setopt($ch, CURLOPT_URL, $this->url); - curl_setopt($ch, CURLOPT_FAILONERROR, 1); - curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); - curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); - curl_setopt($ch, CURLOPT_VERBOSE, 1); - $this->response = curl_exec($ch); - curl_close($ch); - - return $this->response; - } -} // end SOAP_Transport_HTTP -?> diff --git a/pacotes/SOAP/Transport/smtp.php b/pacotes/SOAP/Transport/smtp.php deleted file mode 100644 index a6ea776..0000000 --- a/pacotes/SOAP/Transport/smtp.php +++ /dev/null @@ -1,150 +0,0 @@ - | -// +----------------------------------------------------------------------+ -// -// $Id: SMTP.php,v 1.1.1.2 2006/06/08 14:56:40 06292871800 Exp $ -// -// Status: rough draft, untested -// -// TODO: -// switch to pear mail stuff -// smtp authentication -// smtp ssl support -// ability to define smtp options (encoding, from, etc.) -// - -require_once 'SOAP/globals.php'; -require_once 'SOAP/Message.php'; -require_once 'SOAP/Base.php'; - -/** -* SMTP Transport for SOAP -* -* @access public -* @version $Id: SMTP.php,v 1.1.1.2 2006/06/08 14:56:40 06292871800 Exp $ -* @package SOAP::Transport::SMTP -* @author Shane Caraveo -*/ -class SOAP_Transport_SMTP extends SOAP_Base -{ - var $credentials = ''; - var $timeout = 4; // connect timeout - var $errno = 0; - var $errmsg = ''; - var $urlparts = NULL; - var $url = ''; - var $incoming_payload = ''; - var $_userAgent = SOAP_LIBRARY_NAME; - - /** - * SOAP_Transport_SMTP Constructor - * - * @param string $URL mailto:address - * - * @access public - */ - function SOAP_Transport_SMTP($URL) - { - parent::SOAP_Base('SMTP'); - $this->urlparts = @parse_url($URL); - $this->url = $URL; - } - - /** - * send and receive soap data - * - * @param string &$msg outgoing post data - * @param string $action SOAP Action header data - * @param int $timeout socket timeout, default 0 or off - * - * @return string &$response response data, minus http headers - * @access public - */ - function send(&$msg, $action = '', $timeout = 0) - { - if (!$this->_validateUrl()) { - return $this->raiseSoapFault($this->errmsg); - } - - $headers = "From: $action\n". - "X-Mailer: $this->_userAgent\n". - "MIME-Version: 1.0\n". - "Content-Type: text/xml; charset=\"utf-8\"\n". - "Content-Transfer-Encoding: quoted-printable\n"; - $subject = 'SOAP Message'; - - # we want to return a proper XML message - $result = mail($this->urlparts['path'], $subject, $msg, $headers); - - if ($result) { - $val = new SOAP_Value('return','boolean',TRUE); - } else { - $val = new SOAP_Value('Fault','struct',array( - new SOAP_Value('faultcode','string','SOAP-ENV:Transport:SMTP'), - new SOAP_Value('faultstring','string',"couldn't send message to $action") - )); - } - - $return_msg = new SOAP_Message('Response',array($val),'smtp'); - $response = $return_msg->serialize(); - - return $result; - } - - /** - * set data for http authentication - * creates Authorization header - * - * @param string $username username - * @param string $password response data, minus http headers - * - * @return none - * @access public - */ - function setCredentials($username, $password) - { - $this->username = $username; - $this->password = $password; - } - - // private members - - /** - * validate url data passed to constructor - * - * @return boolean - * @access private - */ - function _validateUrl() - { - if ( ! is_array($this->urlparts) ) { - $this->errno = 2; - $this->errmsg = "Unable to parse URL $url"; - return FALSE; - } - if (!isset($this->urlparts['scheme']) || - strcasecmp($this->urlparts['scheme'], 'mailto') != 0) { - return FALSE; - } - if (!isset($this->urlparts['path'])) { - return FALSE; - } - return TRUE; - } - -} // end SOAP_Transport_HTTP -?> diff --git a/pacotes/SOAP/Transport/ws_ftp.log b/pacotes/SOAP/Transport/ws_ftp.log deleted file mode 100644 index 39070fd..0000000 --- a/pacotes/SOAP/Transport/ws_ftp.log +++ /dev/null @@ -1,2 +0,0 @@ -104.04.29 17:57 B R:\mma\webservice\SOAP\Transport\HTTP.php --> 200.175.128.131 /var/www/default/AppServer/Mauricio/ws_delphi/SOAP/Transport HTTP.php -104.04.29 17:57 B R:\mma\webservice\SOAP\Transport\SMTP.php --> 200.175.128.131 /var/www/default/AppServer/Mauricio/ws_delphi/SOAP/Transport SMTP.php diff --git a/pacotes/SOAP/Type/cvs/Entries b/pacotes/SOAP/Type/cvs/Entries deleted file mode 100644 index c6cf6bb..0000000 --- a/pacotes/SOAP/Type/cvs/Entries +++ /dev/null @@ -1,5 +0,0 @@ -/dateTime.php/1.1.1.1/Thu Jun 8 16:21:39 2006// -/WS_FTP.LOG/1.1.1.1/Tue May 30 19:09:37 2006// -/duration.php/1.1.1.1/Tue May 30 19:09:38 2006// -/hexBinary.php/1.1.1.1/Thu Jun 8 16:21:39 2006// -D diff --git a/pacotes/SOAP/Type/cvs/Entries.Extra b/pacotes/SOAP/Type/cvs/Entries.Extra deleted file mode 100644 index bd7fd1c..0000000 --- a/pacotes/SOAP/Type/cvs/Entries.Extra +++ /dev/null @@ -1,4 +0,0 @@ -/dateTime.php//// -/WS_FTP.LOG//// -/duration.php//// -/hexBinary.php//// diff --git a/pacotes/SOAP/Type/cvs/Entries.Extra.Old b/pacotes/SOAP/Type/cvs/Entries.Extra.Old deleted file mode 100644 index e69de29..0000000 --- a/pacotes/SOAP/Type/cvs/Entries.Extra.Old +++ /dev/null diff --git a/pacotes/SOAP/Type/cvs/Entries.Old b/pacotes/SOAP/Type/cvs/Entries.Old deleted file mode 100644 index b16fa0c..0000000 --- a/pacotes/SOAP/Type/cvs/Entries.Old +++ /dev/null @@ -1,4 +0,0 @@ -/dateTime.php/1.1.1.1/Thu Jun 8 16:21:39 2006// -/WS_FTP.LOG/1.1.1.1/Tue May 30 19:09:37 2006// -/duration.php/1.1.1.1/Tue May 30 19:09:38 2006// -/hexBinary.php/1.1.1.1/Thu Jun 8 16:21:39 2006// diff --git a/pacotes/SOAP/Type/cvs/Repository b/pacotes/SOAP/Type/cvs/Repository deleted file mode 100644 index 94f7b7b..0000000 --- a/pacotes/SOAP/Type/cvs/Repository +++ /dev/null @@ -1 +0,0 @@ -apis/SOAP/Type diff --git a/pacotes/SOAP/Type/cvs/Root b/pacotes/SOAP/Type/cvs/Root deleted file mode 100644 index 54459c3..0000000 --- a/pacotes/SOAP/Type/cvs/Root +++ /dev/null @@ -1 +0,0 @@ -:ssh;username=06292871800;password=1304034;hostname=10.1.1.65:/repositorio/sistemas diff --git a/pacotes/SOAP/Type/dateTime.php b/pacotes/SOAP/Type/dateTime.php deleted file mode 100644 index 4f64cbd..0000000 --- a/pacotes/SOAP/Type/dateTime.php +++ /dev/null @@ -1,154 +0,0 @@ - Port to PEAR and more | -// | Authors: Dietrich Ayala Original Author | -// +----------------------------------------------------------------------+ -// -// $Id: dateTime.php,v 1.1.1.2 2006/06/08 14:56:40 06292871800 Exp $ -// -class SOAP_Type_dateTime -{ - var $ereg_iso8601 = '(-?[0-9]{4})-([0-9]{2})-([0-9]{2})T([0-9]{2}):([0-9]{2}):([0-9]{2})(\.[0-9]*)?(Z|[+\-][0-9]{4}|[+\-][0-9]{2}:[0-9]{2})?'; - #"(-?[0-9]{4})-". // centuries & years CCYY- - #"([0-9]{2})-". // months MM- - #"([0-9]{2})". // days DD - #"T". // separator T - #"([0-9]{2}):". // hours hh: - #"([0-9]{2}):". // minutes mm: - #"([0-9]{2})(\.[0-9]*)?". // seconds ss.ss... - #"(Z|[+\-][0-9]{4}|[+\-][0-9]{2}:[0-9]{2})?"; // Z to indicate UTC, -/+HH:MM:SS.SS... for local tz's - # if no 8th reg (Z) assumes UTC - var $timestamp = -1; - - function SOAP_Type_dateTime($date = -1) - { - if ($date == -1) $date = time(); - - if (gettype($date) == 'integer') { - $this->timestamp = $date; - } else { - $this->timestamp = $this->toUnixtime($date); - } - } - - function toSOAP($date = NULL) - { - return $this->toUTC($date); - } - - function toString($timestamp = 0) - { - if (!$timestamp) $timestamp = $this->timestamp; - if ($timestamp < 0) return 0; - - return date('Y-m-d\TH:i:sO',$timestamp); - } - - function _split($datestr) - { - if (!$datestr) - $datestr = $this->toString(); - else if (gettype($datestr) == 'integer') - $datestr = $this->toString($datestr); - - if (ereg($this->ereg_iso8601,$datestr,$regs)) { - if ($regs[8] != '' && $regs[8] != 'Z') { - $op = substr($regs[8],0,1); - $h = substr($regs[8],1,2); - if (strstr($regs[8],':')) { - $m = substr($regs[8],4,2); - } else { - $m = substr($regs[8],3,2); - } - if ($op == '+') { - $regs[4] = $regs[4] - $h; - if ($regs[4] < 0) $regs[4] += 24; - $regs[5] = $regs[5] - $m; - if ($regs[5] < 0) $regs[5] += 60; - } else { - $regs[4] = $regs[4] + $h; - if ($regs[4] > 23) $regs[4] -= 24; - $regs[5] = $regs[5] + $m; - if ($regs[5] > 59) $regs[5] -= 60; - } - } - return $regs; - } - return FALSE; - } - - function toUTC($datestr = NULL) - { - $regs = $this->_split($datestr); - - if ($regs) { - return sprintf('%04d-%02d-%02dT%02d:%02d:%02dZ',$regs[1],$regs[2],$regs[3],$regs[4],$regs[5],$regs[6]); - } - - return ''; - } - - function toUnixtime($datestr = NULL) - { - $regs = $this->_split($datestr); - if ($regs) { - return strtotime("$regs[1]-$regs[2]-$regs[3] $regs[4]:$regs[5]:$regs[6]Z"); - } - return -1; - } - - function compare($date1, $date2 = NULL) - { - if ($date2 === null) { - $date2 = $date1; - $date1 = $this->timestamp; - } - if (!is_numeric($date1)) - $date1 = $this->toUnixtime($date1); - if (!is_numeric($date2)) - $date2 = $this->toUnixtime($date2); - if ($date1 != -1 && $date2 != -1) return $date1 - $date2; - return -1; - } - - function _test($orig = '2001-04-25T09:31:41-0700') - { - $utc = $this->toUTC($orig); - $ts1 = $this->toUnixtime($orig); - $ts2 = $this->toUnixtime($utc); - $b1 = $this->toString($ts1); - $b2 = $this->toString($ts2); - print "orig: $orig\n"; - print "orig toUTC: $utc\n"; - print "orig ts: $ts1\n"; - print "utc ts: $ts2\n"; - print "orig ts back: $b1\n"; - print "utc ts back: $b2\n"; - if ($b1 != $orig || $b2 != $orig) { - echo "Error in iso8601 conversions\n"; - } else { - echo "dateTime OK\n"; - } - } -} - -# these should all match -#$d = new SOAP_Type_dateTime(); -#echo $d->compare("2001-04-25T20:31:41Z","2001-04-25T20:31:41Z")."\n"; -#echo $d->compare("2001-04-25T20:31:41Z","2001-04-25T12:31:41-0800")."\n"; -#echo $d->compare("2001-04-25T20:31:41Z","2001-04-25T12:31:41-08:00")."\n"; - -?> \ No newline at end of file diff --git a/pacotes/SOAP/Type/duration.php b/pacotes/SOAP/Type/duration.php deleted file mode 100644 index 8c8e23a..0000000 --- a/pacotes/SOAP/Type/duration.php +++ /dev/null @@ -1,165 +0,0 @@ - \ No newline at end of file diff --git a/pacotes/SOAP/Type/hexBinary.php b/pacotes/SOAP/Type/hexBinary.php deleted file mode 100644 index 561ce8f..0000000 --- a/pacotes/SOAP/Type/hexBinary.php +++ /dev/null @@ -1,46 +0,0 @@ - Port to PEAR and more | -// | Authors: Dietrich Ayala Original Author | -// +----------------------------------------------------------------------+ -// -// $Id: hexBinary.php,v 1.1.1.2 2006/06/08 14:56:40 06292871800 Exp $ -// -class SOAP_Type_hexBinary -{ - function to_bin($value) - { - $len = strlen($value); - return pack('H' . $len, $value); - } - function to_hex($value) - { - return bin2hex($value); - } - function is_hexbin($value) - { - # first see if there are any invalid chars - $l = strlen($value); - - if ($l < 1 || strspn($value, '0123456789ABCDEFabcdef') != $l) return FALSE; - - $bin = SOAP_Type_hexBinary::to_bin($value); - $hex = SOAP_Type_hexBinary::to_hex($bin); - return strcasecmp($value, $hex) == 0; - } -} - -?> \ No newline at end of file diff --git a/pacotes/SOAP/Type/ws_ftp.log b/pacotes/SOAP/Type/ws_ftp.log deleted file mode 100644 index baa4cea..0000000 --- a/pacotes/SOAP/Type/ws_ftp.log +++ /dev/null @@ -1,3 +0,0 @@ -104.04.29 17:57 B R:\mma\webservice\SOAP\Type\dateTime.php --> 200.175.128.131 /var/www/default/AppServer/Mauricio/ws_delphi/SOAP/Type dateTime.php -104.04.29 17:57 B R:\mma\webservice\SOAP\Type\duration.php --> 200.175.128.131 /var/www/default/AppServer/Mauricio/ws_delphi/SOAP/Type duration.php -104.04.29 17:57 B R:\mma\webservice\SOAP\Type\hexBinary.php --> 200.175.128.131 /var/www/default/AppServer/Mauricio/ws_delphi/SOAP/Type hexBinary.php diff --git a/pacotes/SOAP/cvs/Entries b/pacotes/SOAP/cvs/Entries deleted file mode 100644 index 64d9265..0000000 --- a/pacotes/SOAP/cvs/Entries +++ /dev/null @@ -1,18 +0,0 @@ -D/example//// -D/Type//// -D/Transport//// -/Message.php/1.1.1.1/Thu Jun 8 16:21:38 2006// -/Base.php/1.1.1.1/Thu Jun 8 16:21:38 2006// -/Client.php/1.1.1.1/Thu Jun 8 16:21:38 2006// -/Fault.php/1.1.1.1/Thu Jun 8 16:21:38 2006// -/Transport.php/1.1.1.1/Thu Jun 8 16:21:38 2006// -/Parser.php/1.1.1.1/Thu Jun 8 16:21:38 2006// -/Server.php/1.1.1.1/Thu Jun 8 16:21:38 2006// -/easy_parser.inc/1.1.1.1/Tue May 30 19:09:37 2006// -/Value.php/1.1.1.1/Thu Jun 8 16:21:38 2006// -/WSDL.php/1.1.1.1/Thu Jun 8 16:21:38 2006// -/WS_FTP.LOG/1.1.1.1/Tue May 30 19:09:37 2006// -/globals.php/1.1.1.1/Thu Jun 8 16:21:38 2006// -/nusoap.php/1.1.1.1/Thu Jun 8 16:21:39 2006// -/readme.txt/1.1.1.1/Tue May 30 19:09:37 2006// -/xmlize_inc.php/1.1.1.1/Tue May 30 19:09:37 2006// diff --git a/pacotes/SOAP/cvs/Entries.Extra b/pacotes/SOAP/cvs/Entries.Extra deleted file mode 100644 index e69de29..0000000 --- a/pacotes/SOAP/cvs/Entries.Extra +++ /dev/null diff --git a/pacotes/SOAP/cvs/Entries.Extra.Old b/pacotes/SOAP/cvs/Entries.Extra.Old deleted file mode 100644 index eaa4d37..0000000 --- a/pacotes/SOAP/cvs/Entries.Extra.Old +++ /dev/null @@ -1,15 +0,0 @@ -/Base.php//// -/Client.php//// -/Fault.php//// -/Message.php//// -/Parser.php//// -/Server.php//// -/Transport.php//// -/Value.php//// -/WSDL.php//// -/WS_FTP.LOG//// -/easy_parser.inc//// -/globals.php//// -/nusoap.php//// -/readme.txt//// -/xmlize_inc.php//// diff --git a/pacotes/SOAP/cvs/Entries.Old b/pacotes/SOAP/cvs/Entries.Old deleted file mode 100644 index 8130a6f..0000000 --- a/pacotes/SOAP/cvs/Entries.Old +++ /dev/null @@ -1,16 +0,0 @@ -/Base.php/1.1.1.1/Tue May 30 19:09:37 2006// -/Client.php/1.1.1.1/Tue May 30 19:09:37 2006// -/Fault.php/1.1.1.1/Tue May 30 19:09:37 2006// -/Message.php/1.1.1.1/Tue May 30 19:09:37 2006// -/Parser.php/1.1.1.1/Tue May 30 19:09:37 2006// -/Server.php/1.1.1.1/Tue May 30 19:09:37 2006// -/Transport.php/1.1.1.1/Tue May 30 19:09:37 2006// -/Value.php/1.1.1.1/Tue May 30 19:09:37 2006// -/WSDL.php/1.1.1.1/Tue May 30 19:09:37 2006// -/WS_FTP.LOG/1.1.1.1/Tue May 30 19:09:37 2006// -/easy_parser.inc/1.1.1.1/Tue May 30 19:09:37 2006// -/globals.php/1.1.1.1/Tue May 30 19:09:37 2006// -/nusoap.php/1.1.1.1/Tue May 30 19:09:37 2006// -/readme.txt/1.1.1.1/Tue May 30 19:09:37 2006// -/xmlize_inc.php/1.1.1.1/Tue May 30 19:09:37 2006// -D diff --git a/pacotes/SOAP/cvs/Repository b/pacotes/SOAP/cvs/Repository deleted file mode 100644 index f8a49d8..0000000 --- a/pacotes/SOAP/cvs/Repository +++ /dev/null @@ -1 +0,0 @@ -apis/SOAP diff --git a/pacotes/SOAP/cvs/Root b/pacotes/SOAP/cvs/Root deleted file mode 100644 index 54459c3..0000000 --- a/pacotes/SOAP/cvs/Root +++ /dev/null @@ -1 +0,0 @@ -:ssh;username=06292871800;password=1304034;hostname=10.1.1.65:/repositorio/sistemas diff --git a/pacotes/SOAP/example/cvs/Entries b/pacotes/SOAP/example/cvs/Entries deleted file mode 100644 index e39a6d8..0000000 --- a/pacotes/SOAP/example/cvs/Entries +++ /dev/null @@ -1,3 +0,0 @@ -/stockquote.php/1.1.1.1/Thu Jun 8 16:21:39 2006// -/WS_FTP.LOG/1.1.1.1/Tue May 30 19:09:37 2006// -D diff --git a/pacotes/SOAP/example/cvs/Entries.Extra b/pacotes/SOAP/example/cvs/Entries.Extra deleted file mode 100644 index ed6eda7..0000000 --- a/pacotes/SOAP/example/cvs/Entries.Extra +++ /dev/null @@ -1,2 +0,0 @@ -/stockquote.php//// -/WS_FTP.LOG//// diff --git a/pacotes/SOAP/example/cvs/Entries.Extra.Old b/pacotes/SOAP/example/cvs/Entries.Extra.Old deleted file mode 100644 index e69de29..0000000 --- a/pacotes/SOAP/example/cvs/Entries.Extra.Old +++ /dev/null diff --git a/pacotes/SOAP/example/cvs/Entries.Old b/pacotes/SOAP/example/cvs/Entries.Old deleted file mode 100644 index db9c1af..0000000 --- a/pacotes/SOAP/example/cvs/Entries.Old +++ /dev/null @@ -1,2 +0,0 @@ -/stockquote.php/1.1.1.1/Thu Jun 8 16:21:39 2006// -/WS_FTP.LOG/1.1.1.1/Tue May 30 19:09:37 2006// diff --git a/pacotes/SOAP/example/cvs/Repository b/pacotes/SOAP/example/cvs/Repository deleted file mode 100644 index 18a0a08..0000000 --- a/pacotes/SOAP/example/cvs/Repository +++ /dev/null @@ -1 +0,0 @@ -apis/SOAP/example diff --git a/pacotes/SOAP/example/cvs/Root b/pacotes/SOAP/example/cvs/Root deleted file mode 100644 index 54459c3..0000000 --- a/pacotes/SOAP/example/cvs/Root +++ /dev/null @@ -1 +0,0 @@ -:ssh;username=06292871800;password=1304034;hostname=10.1.1.65:/repositorio/sistemas diff --git a/pacotes/SOAP/example/stockquote.php b/pacotes/SOAP/example/stockquote.php deleted file mode 100644 index 32b1ab0..0000000 --- a/pacotes/SOAP/example/stockquote.php +++ /dev/null @@ -1,49 +0,0 @@ - - Port to PEAR and more | -// | Authors: Dietrich Ayala Original Author | -// +----------------------------------------------------------------------+ -// -// $Id: stockquote.php,v 1.1.1.2 2006/06/08 14:56:40 06292871800 Exp $ -// -// include soap client class -include("SOAP/Client.php"); -//include("../Client.php"); - -print "
\nwsdl:"; -$soapclient = new SOAP_Client("http://services.xmethods.net/soap/urn:xmethods-delayed-quotes.wsdl","wsdl"); -print $soapclient; -print_r($soapclient->call("getQuote",array("symbol"=>"ibm"))); -print "\n\n"; - -if (extension_loaded('overload')) { - print "\n
overloaded:"; - $ret = $soapclient->getQuote("ibm"); - print_r($ret); - print "\n\n"; -} -unset($soapclient); - -print "\n
non wsdl:"; -$soapclient = new SOAP_Client("http://services.xmethods.net:80/soap"); -$ret = $soapclient->call("getQuote",array("symbol"=>"ibm","urn:xmethods-delayed-quotes","urn:xmethods-delayed-quotes#getQuote")); -print_r($ret); -print "\n\n"; -unset($soapclient); - -?> - diff --git a/pacotes/SOAP/example/ws_ftp.log b/pacotes/SOAP/example/ws_ftp.log deleted file mode 100644 index f32e9cf..0000000 --- a/pacotes/SOAP/example/ws_ftp.log +++ /dev/null @@ -1 +0,0 @@ -104.04.29 17:56 B R:\mma\webservice\SOAP\example\stockquote.php --> 200.175.128.131 /var/www/default/AppServer/Mauricio/ws_delphi/SOAP/example stockquote.php -- libgit2 0.21.2