Alex-Gramm / php-wsdl-creator

Automatically exported from code.google.com/p/php-wsdl-creator
GNU General Public License v3.0
0 stars 0 forks source link

Test case at https://code.google.com/p/php-wsdl-creator-test-cases/source/browse/ #11

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
Use Test cases from 
https://code.google.com/p/php-wsdl-creator-test-cases/source/browse/
1.SayHello OK
2.SayHellotoAll Missing input array
3.SayHellotoAllOnebyOne Missing input array

What is the expected output? What do you see instead?
<soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
xmlns:soap="http://bretterhofer.at/soaptest/">
   <soapenv:Header/>
   <soapenv:Body>
      <soap:SayHello soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
         <name xsi:type="xsd:string">?</name>
      </soap:SayHello>
   </soapenv:Body>
</soapenv:Envelope>

<soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
xmlns:soap="http://bretterhofer.at/soaptest/">
   <soapenv:Header/>
   <soapenv:Body>
      <soap:SayHelloToAll soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
   </soapenv:Body>
</soapenv:Envelope>
<soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
xmlns:soap="http://bretterhofer.at/soaptest/">
   <soapenv:Header/>
   <soapenv:Body>
      <soap:SayHelloToAllOnebyOne soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
   </soapenv:Body>
</soapenv:Envelope>

What version of the product are you using? On what operating system?
Tests with SoapUI 4.5/4.51 Windows or Allinkl PHP5.3

Please provide any additional information below.

You can call me skype:grzchr15

Original issue reported on code.google.com by christia...@gmail.com on 26 Aug 2012 at 11:33