ID:               31948
 Updated by:       [EMAIL PROTECTED]
 Reported By:      wico at cnh dot nl
-Status:           Open
+Status:           Feedback
 Bug Type:         SOAP related
 Operating System: debian (dotdeb php5)
 PHP Version:      5.0.3
 New Comment:

Thank you for this bug report. To properly diagnose the problem, we
need a short but complete example script to be able to reproduce
this bug ourselves. 

A proper reproducing script starts with <?php and ends with ?>,
is max. 10-20 lines long and does not require any external 
resources such as databases, etc.

If possible, make the script source available online and provide
an URL to it here. Try to avoid embedding huge scripts into the report.

Please supply *complete* reproduce code and don't forget about expected
& actual results.


Previous Comments:
------------------------------------------------------------------------

[2005-02-13 02:41:32] wico at cnh dot nl

Description:
------------
$data = new soapParam('test1', 'data1');
$data = new soapParam('test2', 'data2');
$data = new soapParam('test3', 'data3');

// works correctly:
$soap->function($data); 

// outputs:
<function>
        <test1>data</test1>
        <test2>data</test2>
        <test3>data</test3>             
</function>


// produces wrong output
$soap->__call('function', $data); 
$soap->__soapCall('function', $data); 

// outputs:
<function />
<test2>data</test2>
<test3>data</test3>             

in short it closes the function tag right away but continues with
putting the arguments in the xml (after removing the first argument)




------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=31948&edit=1

Reply via email to