Ignore:
Timestamp:
2012/01/17 16:32:25 (14 years ago)
Author:
Seasoft
Message:

2.12系へマイルストーン変更となったチケット分を差し戻し
r21326 #1536
r21325 #1528
r21324 #1547,#1546
r21323 #1546
r21322 #1543
r21321 #1536
r21320 #1536
r21319 #1544
r21318 #1521,#1522
r21317 #1431

File:
1 edited

Legend:

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

    r21318 r21410  
    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.