php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Doc Bug #43338 SoapEnc Arrays and Single Element Arrays
Submitted: 2007-11-19 17:50 UTC Modified: 2021-03-25 11:19 UTC
Votes:23
Avg. Score:4.6 ± 0.7
Reproduced:21 of 21 (100.0%)
Same Version:15 (71.4%)
Same OS:10 (47.6%)
From: daniel dot seif at castex dot de Assigned:
Status: Open Package: SOAP related
PHP Version: 5.* OS: *
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
14 - 5 = ?
Subscribe to this entry?

 
 [2007-11-19 17:50 UTC] daniel dot seif at castex dot de
Description:
------------
If a SoapServer-Object is instantiated with the option SOAP_SINGLE_ELEMENT_ARRAYS (to automatically get an array if defined in the wsdl) together with SOAP_USE_XSI_ARRAY_TYPE (to allow array types instead of wsdl types), an request sent with an SOAPEnc:Array will be transformed to an array with a "deepness" of 2.

Reproduce code:
---------------
class SoapHandler {
	function getSomething($arguments) {
		print_r($arguments);
	}
}

/**
 * SoapServer
 */

$server = new SoapServer($wsdl,
	array(
		'uri' => $uri,
		'features' => SOAP_USE_XSI_ARRAY_TYPE + SOAP_SINGLE_ELEMENT_ARRAYS));
$server->setClass('SoapHandler');
$server->handle();

/**
 * request
 **/

<SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
	<SOAP-ENV:Body>
		<ns4848:getSomething>
			<arguments xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="xsd:string[2]">
				<item xsi:type="xsd:string">String 1</item>
				<item xsi:type="xsd:string">String 2</item>
			</arguments>
		</ns4848:getRouteMiles>
	</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Expected result:
----------------
Array
(
    [0] => String 1
    [1] => String 2
)


Actual result:
--------------
Array
(
    [0] => Array
        (
            [0] => String 1
            [1] => String 2
        )

)

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2009-04-25 10:34 UTC] daniel dot seif at castex dot de
It's still not working in 5.2.10-dev as of today. I tested it with the windows binary build from yesterday.

I provided you a test-package, you can download it here: http://castex.de/stuff/php-bug43338.zip
 [2010-07-22 02:47 UTC] daniel dot seif at castex dot de
Checked again against PHP 5.3.2, the issue is still unsolved.

I created two php tests for this. One for wsdl-mode on (works as expected) and one for wsdl-mode off (erroneous as described here)

You can download them here: http://castex.de/stuff/phpt-bug43338.zip

Please do me a favor and take care of this issue. If I had enough knowledge, I'd try to submit a patch, but obviously I don't ...
 [2010-07-22 03:01 UTC] daniel dot seif at castex dot de
-PHP Version: 5.2CVS-2009-04-25 +PHP Version: 5.*
 [2010-07-22 03:01 UTC] daniel dot seif at castex dot de
Since the problem exists in the 5.2 as well as in the 5.3 branch, I changed the affected PHP Version
 [2012-06-13 06:49 UTC] daniel dot seif at castex dot de
Not sure, if this is the right way to let this issue pop up, but the problem is still not solved. 

Will this be fixed any time soon?
 [2021-03-25 11:19 UTC] cmb@php.net
-Type: Bug +Type: Documentation Problem
 [2021-03-25 11:19 UTC] cmb@php.net
I can confirm the reported behavior with PHP-7.4.  And while I
agree that this doesn't look right, I'm afraid that changing this
long standing behavior might cause more harm than good.  Maybe the
best course of action is to document that.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Apr 20 07:01:29 2024 UTC