php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #55503 Extend __getTypes to support enumerations
Submitted: 2011-08-25 04:07 UTC Modified: 2025-06-04 15:47 UTC
Votes:10
Avg. Score:4.7 ± 0.5
Reproduced:10 of 10 (100.0%)
Same Version:0 (0.0%)
Same OS:0 (0.0%)
From: datibbaw@php.net Assigned: nielsdos (profile)
Status: Closed Package: SOAP related
PHP Version: 5.4SVN-2011-08-25 (snap) OS: N/A
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: datibbaw@php.net
New email:
PHP Version: OS:

 

 [2011-08-25 04:07 UTC] datibbaw@php.net
Description:
------------
The __getTypes() method helps to serve as a reference when writing SOAP consumer 
code, which is very useful.

However, enumeration types in WSDL aren't supported properly; they're printed as 
only the enumeration base type (which is usually 'string' in my case).

Test script:
---------------
<xsd:simpleType name="PersonaMemberType"> 
<xsd:restriction base="xsd:string"> 
<xsd:enumeration value="NEW"/> 
<xsd:enumeration value="LIMITED"/> 
<xsd:enumeration value="FREE"/> 
<xsd:enumeration value="PAID_ACTIVE"/> 
<xsd:enumeration value="TRIAL_ACTIVE"/> 
<xsd:enumeration value="PAID_EXPIRED"/> 
<xsd:enumeration value="TRIAL_EXPIRED"/> 
</xsd:restriction> 
</xsd:simpleType>

Expected result:
----------------
string PersonaMemberType 
{NEW,LIMITED,FREE,PAID_ACTIVE,TRIAL_ACTIVE,PAID_EXPIRED,TRIAL_EXPIRED}

Actual result:
--------------
string PersonaMemberType

Patches

soap-gettypes-enumeration (last revision 2011-08-25 04:07 UTC by datibbaw)

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2025-06-04 15:47 UTC] nielsdos@php.net
The fix for this bug has been committed.
If you are still experiencing this bug, try to check out latest source from https://github.com/php/php-src and re-test.
Thank you for the report, and for helping us make PHP better.

Updated and committed the patch into 8.5-dev, thanks!
 [2025-06-04 15:47 UTC] nielsdos@php.net
-Status: Open +Status: Closed -Assigned To: +Assigned To: nielsdos
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Sat Jul 12 10:01:33 2025 UTC