Ignore:
Timestamp:
2011/10/31 13:54:41 (12 years ago)
Author:
kotani
Message:

#1521 (PEAR::SOAP 配布と異なる部分がある)

  • 新しいバージョンの配布ファイルを上書きすることで解決
  • →2.11.4には含めないため一旦コミットキャンセル

#1522 (PEAR::SOAP をバージョンアップ)

  • 0.11.0 -> 0.12.0
  • →2.11.4には含めないため一旦コミットキャンセル
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_11-dev/data/module/SOAP/Disco.php

    r21299 r21304  
    2323 */ 
    2424 
    25 /** SOAP_Base */ 
    2625require_once 'SOAP/Base.php'; 
    2726 
    28 /** 
    29  * @package SOAP 
    30  */ 
    3127class SOAP_DISCO_Server extends SOAP_Base_Object { 
    3228 
     
    9591            $this->namespaces[$this->_service_ns] = 'tns'; 
    9692            $this->namespaces[$flipped['xsd']] = 'xsd'; 
    97             $this->namespaces[$flipped[SOAP_BASE::SOAPENCPrefix()]] = SOAP_BASE::SOAPENCPrefix(); 
     93            $this->namespaces[$flipped['SOAP-ENC']] = 'SOAP-ENC'; 
    9894        } 
    9995 
     
    213209                    } else { 
    214210                        $ctype['complexContent']['attr'] = ''; 
    215                         $ctype['complexContent']['restriction']['attr']['base'] = SOAP_BASE::SOAPENCPrefix().':Array'; 
     211                        $ctype['complexContent']['restriction']['attr']['base'] = 'SOAP-ENC:Array'; 
    216212                        foreach ($_vartype as $array_type) { 
    217213                            list($_vartypens, $_vartype) = $this->_getTypeNs($array_type); 
    218                             $ctype['complexContent']['restriction']['attribute']['attr']['ref'] = SOAP_BASE::SOAPENCPrefix().':arrayType'; 
     214                            $ctype['complexContent']['restriction']['attribute']['attr']['ref'] = 'SOAP-ENC:arrayType'; 
    219215                            $ctype['complexContent']['restriction']['attribute']['attr']['wsdl:arrayType'] = $_vartypens . ':' . $_vartype . '[]'; 
    220216                        } 
Note: See TracChangeset for help on using the changeset viewer.